@charset "UTF-8";
/* ============================================================
   GLOBAL RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #1a1a2e;
  background-color: #f8f7f4;
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================================
       HEADER / NAVIGATION
    ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid #ececec;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
}

.upg-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.upg-logo {
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
  color: #0AB99D;
  flex-shrink: 0;
}

.upg-logo span {
  color: #1a1a2e;
}

/* ---- Nav link list ---- */
.upg-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.upg-nav-links > li {
  position: relative;
}

.upg-nav-links > li > a {
  font-weight: 500;
  font-size: 0.9rem;
  color: #333;
  padding: 8px 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.upg-nav-links > li > a:hover,
.upg-nav-links > li.upg-has-dropdown:hover > a {
  color: #0AB99D;
  background: rgba(255, 92, 53, 0.06);
}

/* Arrow */
.upg-arrow {
  font-size: 0.5rem;
  opacity: 0.45;
  transition: transform 0.22s, opacity 0.22s;
  display: inline-block;
}

.upg-nav-links > li.upg-has-dropdown:hover > a .upg-arrow {
  transform: rotate(180deg);
  opacity: 0.9;
}

/* ---- Dropdown panel ---- */
.upg-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
}

/* Mouse bridge */
.upg-dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.upg-nav-links > li.upg-has-dropdown:hover .upg-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* ---- Dropdown items ---- */
.upg-dropdown li a {
  display: block;
  padding: 9px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.16s, color 0.16s;
}

.upg-dropdown li a:hover {
  background: rgba(255, 92, 53, 0.07);
  color: #0AB99D;
}

/* Divider */
.upg-dropdown-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 6px 0;
}

/* ---- CTA buttons ---- */
.upg-nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.upg-btn-outline {
  border: 1.5px solid #0ab99d;
  color: #0ab99d;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
  white-space: nowrap;
}

.upg-btn-outline:hover {
  background: #0AB99D;
  color: #fff;
}

.upg-btn-primary {
  background: #0ab99d;
  color: #fff;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
  white-space: nowrap;
  border: 1.5px solid #0ab99d;
}

.upg-btn-primary:hover {
  background: #e04520;
  border-color: #e04520;
}

/* ---- Hamburger ---- */
.upg-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.upg-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a2e;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Hamburger → X animation */
.upg-hamburger.upg-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.upg-hamburger.upg-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.upg-hamburger.upg-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- MOBILE MENU ---- */
.upg-mobile-menu {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #ececec;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

.upg-mobile-menu.upg-open {
  display: block;
}

.upg-mob-item {
  border-bottom: 1px solid #f5f5f5;
}

.upg-mob-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  cursor: pointer;
}

.upg-mob-item-header a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a2e;
}

.upg-mob-toggle {
  background: none;
  border: none;
  font-size: 0.6rem;
  color: #aaa;
  cursor: pointer;
  padding: 4px 6px;
  transition: transform 0.22s, color 0.2s;
}

.upg-mob-toggle.upg-mob-open {
  transform: rotate(180deg);
  color: #0AB99D;
}

/* Mobile submenu */
.upg-mob-submenu {
  display: none;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  padding: 4px 0 8px;
}

.upg-mob-submenu.upg-mob-open {
  display: block;
}

.upg-mob-submenu li a {
  display: block;
  padding: 10px 24px 10px 36px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #555;
  transition: color 0.16s;
}

.upg-mob-submenu li a:hover {
  color: #0ab99d;
}

.upg-mob-submenu .upg-dropdown-divider {
  margin: 4px 24px;
}

/* Mobile CTA */
.upg-mobile-menu-cta {
  display: flex;
  gap: 12px;
  padding: 16px 24px 24px;
}

.upg-mobile-menu-cta .upg-btn-outline,
.upg-mobile-menu-cta .upg-btn-primary {
  flex: 1;
  text-align: center;
}

/* Header responsive */
@media (max-width: 1100px) {
  .upg-nav-links {
    gap: 0;
  }
  .upg-nav-links > li > a {
    padding: 8px 9px;
    font-size: 0.82rem;
  }
}
@media (max-width: 900px) {
  .upg-nav-links {
    display: none;
  }
  .upg-nav-cta {
    display: none;
  }
  .upg-hamburger {
    display: flex;
  }
}
@media (max-width: 480px) {
  .upg-nav {
    padding: 0 20px;
  }
}
/* ============================================================
    HERO SECTION
 ============================================================ */
.upg-hero {
  background: url(../images/hero-bg-1.jpg) no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

/* Decorative background blob left */
.upg-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255, 92, 53, 0.07) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.upg-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ---- Left content ---- */
.upg-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #0ab99d;
  margin-bottom: 20px;
}

.upg-hero-eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #0ab99d;
  border-radius: 2px;
  flex-shrink: 0;
}

@keyframes upg-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.upg-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.upg-hero-heading {
  font-size: clamp(2.5rem, 3.8vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #0f0f1a;
  margin-bottom: 22px;
  letter-spacing: -1.5px;
}

.upg-hero-heading em {
  font-style: normal;
  color: #0ab99d;
}

.upg-hero-sub {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.upg-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.upg-hero-btn-counsel {
  background: #0ab99d;
  color: #fff;
  padding: 15px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid #0ab99d;
  transition: all 0.25s;
  letter-spacing: 0.2px;
}

.upg-hero-btn-counsel:hover {
  background: #e04520;
  border-color: #e04520;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 92, 53, 0.35);
}

.upg-hero-trust-note {
  font-size: 0.82rem;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 6px;
}

.upg-hero-trust-note::before {
  content: "✓";
  color: #22c55e;
  font-weight: 700;
  font-size: 0.78rem;
}

.upg-hero-pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.upg-hero-pill {
  background: #fff;
  border: 1.5px solid #e8e8e8;
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.upg-hero-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0AB99D;
  flex-shrink: 0;
}

/* ---- Right image ---- */
.upg-hero-image-wrap {
  position: relative;
}

.upg-hero-img-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/4.8;
  background: linear-gradient(160deg, #0AB99D 0%, #0f3460 100%);
}

.upg-hero-img-person {
  position: absolute;
  inset: 0;
}

/* The actual image fills the frame completely */
.upg-hero-img-silhouette {
  width: 100%;
  height: 100%;
  position: relative;
}

.upg-hero-img-silhouette img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  display: block;
  border-radius: 24px;
}

/* Floating info cards on image */
.upg-hero-badge-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
  z-index: 2;
  min-width: 160px;
}

.upg-hero-badge-card-1 {
  top: 32px;
  left: -24px;
}

.upg-hero-badge-card-2 {
  bottom: 48px;
  right: -24px;
}

.upg-hbc-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #aaa;
  margin-bottom: 4px;
}

.upg-hbc-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f0f1a;
  line-height: 1;
  margin-bottom: 3px;
}

.upg-hbc-sub {
  font-size: 0.72rem;
  color: #888;
}

.upg-hbc-bar {
  display: flex;
  gap: 3px;
  margin-top: 8px;
}

.upg-hbc-bar span {
  height: 4px;
  border-radius: 4px;
  background: #eee;
  flex: 1;
}

.upg-hbc-bar span.upg-filled {
  background: #0AB99D;
}

/* Dot grid decoration */
.upg-hero-dot-grid {
  position: absolute;
  bottom: -20px;
  left: -20px;
  display: grid;
  grid-template-columns: repeat(5, 12px);
  gap: 8px;
  z-index: 0;
}

.upg-hero-dot-grid span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d0d0d0;
  display: block;
}

/* Hero responsive */
@media (max-width: 960px) {
  .upg-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px 32px;
  }
  /* .upg-hero-image-wrap {
    display: none;
  } */
  .upg-hero-sub {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .upg-hero-inner {
    padding: 52px 20px;
  }
  .upg-hero-heading {
    font-size: 2.2rem;
    letter-spacing: -1px;
  }
  .upg-hero-pill-row {
    gap: 8px;
  }
}
/* ============================================================
   STATS STRIP — Section 2
============================================================ */
.upg-stats-strip {
  background: #1a1a2e;
  padding: 0;
}

.upg-stats-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.upg-strip-item {
  padding: 40px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  transition: background 0.25s;
}

.upg-strip-item:last-child {
  border-right: none;
}

.upg-strip-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #0AB99D;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s;
}

.upg-strip-item:hover::before {
  transform: scaleX(1);
}

.upg-strip-item:hover {
  background: rgba(255, 92, 53, 0.05);
}

.upg-strip-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.upg-strip-value em {
  font-style: normal;
  color: #0AB99D;
}

.upg-strip-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  line-height: 1.4;
}

.upg-strip-note {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.22);
  margin-top: 4px;
}

/* Stats strip responsive */
@media (max-width: 900px) {
  .upg-stats-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
  .upg-strip-item:nth-child(2) {
    border-right: none;
  }
  .upg-strip-item:nth-child(1),
  .upg-strip-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
}
@media (max-width: 480px) {
  .upg-strip-item {
    padding: 28px 20px;
  }
  .upg-strip-value {
    font-size: 2rem;
  }
  .upg-strip-label {
    font-size: 0.8rem;
  }
}
/* Section3 */
.ugwcm-section {
  padding: 50px 20px;
  background: #f8fafc;
}

.ugwcm-container {
  max-width: 1000px;
  margin: 0 auto;
}

.ugwcm-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #1f2d3d;
}

/* Grid */
.ugwcm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Card */
.ugwcm-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
}

.ugwcm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Icon */
.ugwcm-icon {
  min-width: 40px;
  height: 40px;
  background: rgba(224, 69, 32, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ugwcm-icon svg {
  width: 20px;
  height: 20px;
}

/* Text */
.ugwcm-content {
  flex: 1;
}

.ugwcm-card-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #2c3e50;
}

.ugwcm-card-sub {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 900px) {
  .ugwcm-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .ugwcm-grid {
    grid-template-columns: 1fr;
  }
}
/* ─── Section Wrapper ──────────────────────────────── */
.ugtpd-section {
  background: #1a1a2e;
  padding: 72px 0 80px;
  overflow: hidden;
  position: relative;
}

/* Subtle background texture */
.ugtpd-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 10% 80%, rgba(180, 20, 20, 0.12) 0%, transparent 60%), radial-gradient(ellipse 50% 40% at 90% 20%, rgba(180, 20, 20, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

/* ─── Heading ──────────────────────────────────────── */
.ugtpd-heading-wrap {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 20px;
  position: relative;
}

.ugtpd-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0AB99D;
  margin-bottom: 14px;
  position: relative;
  padding: 0 18px;
}

.ugtpd-eyebrow::before,
.ugtpd-eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 36px;
  height: 1px;
  background: #0AB99D;
  opacity: 0.6;
}

.ugtpd-eyebrow::before {
  right: 100%;
  margin-right: -14px;
}

.ugtpd-eyebrow::after {
  left: 100%;
  margin-left: -14px;
}

.ugtpd-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  max-width: 660px;
  margin: 0 auto;
}

.ugtpd-title span {
  color: #0AB99D;
}

.ugtpd-subtitle {
  margin-top: 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* ─── Container ───────────────────────────────────── */
.ugtpd-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── Slider Container ─────────────────────────────── */
.ugtpd-slider-outer {
  position: relative;
  padding: 12px 0 20px;
}

.ugtpd-swiper {
  padding: 12px 0 40px !important;
  overflow: visible !important;
}

/* ─── Card ─────────────────────────────────────────── */
.ugtpd-card {
  border-radius: 18px;
  overflow: hidden;
  background: #181818;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.22, 0.68, 0, 1.2), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.ugtpd-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.7), 0 0 0 1.5px rgba(192, 57, 43, 0.35);
}

/* Image */
.ugtpd-card-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.ugtpd-card-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.92);
}

.ugtpd-card:hover .ugtpd-card-img-wrap img {
  transform: scale(1.07);
}

/* Gradient overlay on image */
.ugtpd-card-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(24, 24, 24, 0.75) 100%);
}

/* Badge */
.ugtpd-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: #0AB99D;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

/* Card Body */
.ugtpd-card-body {
  padding: 22px 22px 24px;
  background: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ugtpd-card-city {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}

.ugtpd-card-tag {
  font-size: 12px;
  font-weight: 700;
  color: #0AB99D;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.ugtpd-card-desc {
  font-size: 13.5px;
  color: #555;
  line-height: 1.55;
  margin-top: 2px;
}

.ugtpd-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #0AB99D;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: gap 0.2s ease;
}

.ugtpd-card-cta:hover {
  gap: 10px;
}

.ugtpd-card-cta svg {
  width: 16px;
  height: 16px;
  stroke: #0AB99D;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.ugtpd-card-cta:hover svg {
  transform: translateX(3px);
}

/* ─── Navigation Arrows ────────────────────────────── */
.ugtpd-btn-prev,
.ugtpd-btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-62%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.ugtpd-btn-prev:hover,
.ugtpd-btn-next:hover {
  background: #0AB99D;
  box-shadow: 0 6px 24px rgba(192, 57, 43, 0.45);
  transform: translateY(-62%) scale(1.08);
}

.ugtpd-btn-prev:hover svg,
.ugtpd-btn-next:hover svg {
  stroke: #fff;
}

.ugtpd-btn-prev {
  left: -22px;
}

.ugtpd-btn-next {
  right: -22px;
}

.ugtpd-btn-prev svg,
.ugtpd-btn-next svg {
  width: 18px;
  height: 18px;
  stroke: #1a1a1a;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}

.swiper-button-disabled.ugtpd-btn-prev,
.swiper-button-disabled.ugtpd-btn-next {
  opacity: 0.35;
  pointer-events: none;
}

/* ─── Pagination ───────────────────────────────────── */
.ugtpd-pagination {
  text-align: center;
  margin-top: 6px;
}

.ugtpd-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.25);
  opacity: 1;
  transition: background 0.3s, transform 0.3s;
  border-radius: 50%;
}

.ugtpd-pagination .swiper-pagination-bullet-active {
  background: #0AB99D;
  transform: scale(1.4);
}

/* ─── Responsive ───────────────────────────────────── */
@media (max-width: 600px) {
  .ugtpd-section {
    padding: 52px 0 60px;
  }
  .ugtpd-card-img-wrap {
    height: 185px;
  }
  .ugtpd-btn-prev {
    left: -14px;
  }
  .ugtpd-btn-next {
    right: -14px;
  }
}
/* Make all slides equal height */
.ugtpd-swiper .swiper-slide {
  height: auto;
  display: flex;
}

/* Make card fill full height */
.ugtpd-card {
  height: 100%;
}

.ugtpd-card-body {
  display: flex;
  flex-direction: column;
}

.ugtpd-card-desc {
  flex-grow: 1;
}

/* ─── Section 5 ────────────────────────────────────────── */
.upg-programs {
  background: #ffffff;
  padding: 80px 0 96px;
  position: relative;
}

.upg-programs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0AB99D 0%, #e67e22 100%);
}

/* ─── Container ──────────────────────────────────────── */
.upg-programs-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Header — Centered ──────────────────────────────── */
.upg-programs-header {
  text-align: center;
  margin-bottom: 40px;
}

.upg-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #0AB99D;
  margin-bottom: 14px;
}

.upg-section-tag::before,
.upg-section-tag::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #0AB99D;
}

.upg-section-title {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.upg-section-title em {
  font-style: italic;
  color: #0AB99D;
}

.upg-section-sub {
  font-size: 15px;
  color: #777;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

/* ─── Tabs — Premium Highlight ───────────────────────── */
.upg-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding: 10px;
  background: #f6f6f6;
  border-radius: 50px;
}

.upg-tab {
  font-size: 16px;
  font-weight: 600;
  color: #666;
  background: transparent;
  border: none;
  border-radius: 40px;
  padding: 10px 22px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upg-tab:hover {
  background: #eaeaea;
  color: #111;
}

/* Active Tab Highlight */
.upg-tab.upg-active {
  background: #0AB99D;
  color: #fff;
  box-shadow: 0 6px 16px rgba(192, 57, 43, 0.3);
}

/* ─── Cards Grid ─────────────────────────────────────── */
.upg-courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ─── Card ───────────────────────────────────────────── */
.upg-course-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

.upg-course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* ─── Thumb ──────────────────────────────────────────── */
.upg-course-thumb {
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eee;
  padding: 30px;
  height: 120px;
}

.upg-course-thumb img {
  width: 85px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.3s ease;
}

.upg-course-card:hover .upg-course-thumb img {
  transform: scale(1.05);
}

/* ─── Card Body ──────────────────────────────────────── */
.upg-course-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.upg-course-university {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0AB99D;
  margin-bottom: 8px;
}

.upg-course-title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.upg-course-tagline {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Divider */
.upg-course-divider {
  height: 1px;
  background: #eee;
  margin-bottom: 18px;
}

/* ─── Button ─────────────────────────────────────────── */
.upg-course-enroll {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background: #0AB99D;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.upg-course-enroll:hover {
  background: #d8d8d8;
  color: #0AB99D;
}

/* ─── Animation ─────────────────────────────────────── */
.upg-course-card {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
  border: 2px solid #000000;
}

.upg-course-card.hide {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .upg-courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .upg-courses-grid {
    grid-template-columns: 1fr;
  }
}
/* ─── Contact us ───────────────────────────────────── */
.upctas-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #0AB99D 0%, #0e7c6b 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative Glow */
.upctas-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -120px;
  left: -120px;
}

.upctas-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  bottom: -100px;
  right: -80px;
}

/* ─── CONTAINER ───────────────────────────────────── */
.upctas-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ─── LEFT CONTENT ─────────────────────────────────── */
.upctas-left h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.upctas-left p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-bottom: 28px;
}

/* Feature Blocks */
.upctas-features {
  display: grid;
  gap: 14px;
}

.upctas-feature {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.upctas-feature:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(4px);
}

.upctas-feature-icon {
  width: 34px;
  height: 34px;
  background: #fff;
  color: #0AB99D;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
}

.upctas-feature-text {
  color: #fff;
  font-size: 14.5px;
}

/* ─── FORM CARD ───────────────────────────────────── */
.upctas-form-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* FORM TITLE */
.upctas-form-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #fff;
}

/* INPUT */
.upctas-input,
.upctas-select {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 10px;
  border: none;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.9);
}

/* BUTTON */
.upctas-btn {
  width: 100%;
  padding: 15px;
  background: #fff;
  color: #0AB99D;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.upctas-btn:hover {
  background: #0AB99D;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

/* ─── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
  .upctas-container {
    grid-template-columns: 1fr;
  }
}
.ugaps-admission-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f9fbff, #eef3ff);
  font-family: "Poppins", sans-serif;
}

.ugaps-container {
  max-width: 1200px;
  margin: auto;
}

.ugaps-header {
  text-align: center;
  margin-bottom: 50px;
}

.ugaps-title {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
}

.ugaps-subtitle {
  color: #6b7280;
  margin-top: 10px;
}

/* Timeline */
.ugaps-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.ugaps-timeline::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 5%;
  width: 90%;
  height: 3px;
  background: #e5e7eb;
  z-index: 0;
}

.ugaps-step {
  width: 22%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ugaps-circle {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border: 3px solid #0AB99D;
  color: #0AB99D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-weight: 600;
  transition: 0.3s;
}

.ugaps-step:hover .ugaps-circle {
  background: #0AB99D;
  color: #fff;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.ugaps-content {
  margin-top: 15px;
}

.ugaps-content h4 {
  font-size: 18px;
  color: #111827;
  margin-bottom: 5px;
}

.ugaps-content p {
  font-size: 14px;
  color: #6b7280;
}

/* Image */
.ugaps-image-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.ugaps-image {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* CTA */
.ugaps-cta {
  text-align: center;
}

.ugaps-btn {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(135deg, #0AB99D, #0AB99D);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

.ugaps-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .ugaps-step {
    width: 45%;
    margin-bottom: 30px;
  }
  .ugaps-timeline::before {
    display: none;
  }
}
@media (max-width: 576px) {
  .ugaps-title {
    font-size: 28px;
  }
  .ugaps-step {
    width: 100%;
  }
  .ugaps-circle {
    margin-bottom: 10px;
  }
}
/* ========================================================================
   SECTION 8: FAQ
   ======================================================================== */
.faq-section {
  background: #ffffff;
  padding: 80px 0;
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: #0B0B2E;
  margin-bottom: 12px;
}

.faq-highlight {
  color: #0AB99D;
}

.faq-subtitle {
  font-size: 15px;
  color: #6b7280;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  border-color: #9ca3af;
}

.faq-item.is-open {
  border-color: #0AB99D;
  box-shadow: 0 0 0 3px rgba(238, 44, 60, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: #0B0B2E;
  gap: 16px;
  transition: background 0.25s ease;
  border: 0;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-icon {
  font-size: 22px;
  color: #9ca3af;
  flex-shrink: 0;
  font-weight: 300;
  transition: transform 0.3s ease, color 0.25s ease;
  line-height: 1;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  color: #0AB99D;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
}

/***content section***/
.ugcrlc-section {
  padding: 56px 0;
  background: #f5f5f5;
}

.ugcrlc-container {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
}

.ugcrlc-intro,
.ugcrlc-block {
  margin-bottom: 32px;
}

.ugcrlc-main-title {
  margin: 0 0 14px;
  color: #0ab99d;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ugcrlc-title {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 800;
  padding-top: 30px;
}

.ugcrlc-subtitle {
  margin: 26px 0 12px;
  color: #0ab99d;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 800;
}

.ugcrlc-text {
  margin: 0 0 14px;
  color: #334155;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
}

.ugcrlc-label {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
}

.ugcrlc-note,
.ugcrlc-source,
.ugcrlc-muted {
  margin: 14px 0 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
}

.ugcrlc-muted {
  font-style: italic;
}

.ugcrlc-table-wrap {
  margin: 18px 0 0;
  overflow-x: auto;
  border: 1px solid #dbe3ea;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.ugcrlc-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #ffffff;
}

.ugcrlc-table thead th {
  padding: 16px 18px;
  background: rgba(10, 185, 157, 0.08);
  color: #0f172a;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 800;
  text-align: left;
  border-right: 1px solid #dbe3ea;
  border-bottom: 1px solid #dbe3ea;
}

.ugcrlc-table thead th:last-child {
  border-right: 0;
}

.ugcrlc-table tbody td {
  padding: 14px 18px;
  color: #334155;
  font-size: 14px;
  line-height: 1.6;
  vertical-align: top;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.ugcrlc-table tbody tr:last-child td {
  border-bottom: 0;
}

.ugcrlc-table tbody td:last-child {
  border-right: 0;
}

.ugcrlc-table tbody tr:nth-child(even) {
  background: #fcfefe;
}

@media (max-width: 991px) {
  .ugcrlc-section {
    padding: 44px 0;
  }
  .ugcrlc-main-title {
    font-size: 30px;
  }
  .ugcrlc-title {
    font-size: 24px;
  }
  .ugcrlc-subtitle {
    font-size: 20px;
  }
  .ugcrlc-text,
  .ugcrlc-note,
  .ugcrlc-source,
  .ugcrlc-muted,
  .ugcrlc-label {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .ugcrlc-container {
    width: min(100% - 24px, 100%);
  }
  .ugcrlc-section {
    padding: 36px 0;
  }
  .ugcrlc-main-title {
    font-size: 26px;
  }
  .ugcrlc-title {
    font-size: 22px;
  }
  .ugcrlc-subtitle {
    font-size: 18px;
  }
  .ugcrlc-intro,
  .ugcrlc-block {
    margin-bottom: 28px;
  }
  .ugcrlc-table-wrap {
    border-radius: 12px;
  }
  .ugcrlc-table {
    min-width: 560px;
  }
  .ugcrlc-table thead th,
  .ugcrlc-table tbody td {
    padding: 12px 14px;
    font-size: 13px;
  }
}
@media (max-width: 479px) {
  .ugcrlc-main-title {
    font-size: 22px;
  }
  .ugcrlc-title {
    font-size: 20px;
  }
  .ugcrlc-subtitle {
    font-size: 17px;
  }
  .ugcrlc-text,
  .ugcrlc-note,
  .ugcrlc-source,
  .ugcrlc-muted,
  .ugcrlc-label {
    font-size: 14px;
    line-height: 1.75;
  }
  .ugcrlc-table {
    min-width: 520px;
  }
}
/* ============================================================
       FOOTER
    ============================================================ */
footer {
  background: #0d0d1a;
  color: rgba(255, 255, 255, 0.6);
}

.upg-footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 32px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.upg-footer-brand .upg-logo {
  font-size: 1.4rem;
  margin-bottom: 16px;
  display: inline-block;
}

.upg-footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.upg-footer-socials {
  display: flex;
  gap: 12px;
}

.upg-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.upg-social-icon:hover {
  background: rgba(255, 92, 53, 0.15);
  border-color: rgba(255, 92, 53, 0.3);
  color: #0AB99D;
}

.upg-footer-col h4 {
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.upg-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.upg-footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.upg-footer-col ul li a:hover {
  color: #0AB99D;
}

.upg-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.upg-footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.upg-footer-bottom-inner p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

.upg-footer-bottom-links {
  display: flex;
  gap: 20px;
}

.upg-footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}

.upg-footer-bottom-links a:hover {
  color: #0AB99D;
}

/* Footer responsive */
@media (max-width: 1024px) {
  .upg-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 700px) {
  .upg-footer-main {
    grid-template-columns: 1fr;
    padding: 48px 20px 36px;
    gap: 28px;
  }
  .upg-footer-bottom-inner {
    padding: 16px 20px;
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .upg-footer-bottom-links {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}
/***popup css *****/
/* ── Trigger Button ── */
.ugcfp-trigger-btn {
  background: #0ab99d;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(10, 185, 157, 0.4);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.ugcfp-trigger-btn:hover {
  background: #089b83;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(10, 185, 157, 0.5);
}

/* ── Overlay ── */
.ugcfp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 25, 0.75);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.ugcfp-overlay.ugcfp-active {
  opacity: 1;
  pointer-events: all;
}

/* ── Modal ── */
.ugcfp-modal {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22), 0 8px 24px rgba(10, 185, 157, 0.1);
  width: 100%;
  max-width: 860px;
  display: flex;
  overflow: hidden;
  position: relative;
  transform: scale(0.93) translateY(24px);
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ugcfp-overlay.ugcfp-active .ugcfp-modal {
  transform: scale(1) translateY(0);
}

/* ── Close Button — top-right corner of modal ── */
.ugcfp-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.ugcfp-close:hover {
  background: #fff;
  color: #1a1a2e;
  transform: scale(1.1);
}

/* ── Left Panel — Full Image ── */
.ugcfp-panel-left {
  flex: 0 0 42%;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ugcfp-panel-left-img {
  width: 100%;
  inset: 0;
}

.ugcfp-panel-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 18, 30, 0.18) 0%, rgba(5, 18, 30, 0.05) 45%, rgba(5, 18, 30, 0.72) 100%);
  pointer-events: none;
}

.ugcfp-img-caption {
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.35;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  padding: 20px;
}

.ugcfp-img-caption span {
  color: #0ab99d;
}

/* ── Right Panel ── */
.ugcfp-panel-right {
  flex: 1;
  padding: 44px 38px 36px;
  display: flex;
  flex-direction: column;
}

.ugcfp-title {
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  color: #1a1a2e;
  line-height: 1.35;
  margin-bottom: 6px;
}

.ugcfp-subtitle {
  font-size: 0.84rem;
  color: #6b7280;
  margin-bottom: 26px;
}

/* ── Form ── */
.ugcfp-form {
  display: flex;
  flex-direction: column;
  gap: 17px;
  flex: 1;
}

.ugcfp-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ugcfp-label {
  font-size: 0.81rem;
  font-weight: 600;
  color: #1a1a2e;
  letter-spacing: 0.02em;
}

.ugcfp-input {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.91rem;
  color: #1a1a2e;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
}

.ugcfp-input:focus {
  border-color: #0ab99d;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(10, 185, 157, 0.13);
}

.ugcfp-input::-moz-placeholder {
  color: #c0c4cc;
}

.ugcfp-input::placeholder {
  color: #c0c4cc;
}

/* Phone row — always one line */
.ugcfp-phone-row {
  display: flex;
  gap: 10px;
}

.ugcfp-dial-select {
  flex: 0 0 112px;
  padding: 11px 10px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.87rem;
  color: #1a1a2e;
  background: #fafafa;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}

.ugcfp-dial-select:focus {
  border-color: #0ab99d;
}

.ugcfp-phone-input {
  flex: 1;
  min-width: 0;
}

/* Submit */
.ugcfp-submit {
  width: 100%;
  padding: 13px;
  background: #0ab99d;
  color: #fff;
  font-size: 0.96rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(10, 185, 157, 0.35);
  margin-top: 4px;
}

.ugcfp-submit:hover {
  background: #089b83;
  transform: translateY(-1px);
  box-shadow: 0 7px 20px rgba(10, 185, 157, 0.45);
}

.ugcfp-submit svg {
  transition: transform 0.2s;
}

.ugcfp-submit:hover svg {
  transform: translateX(3px);
}

.ugcfp-legal {
  font-size: 0.72rem;
  color: #6b7280;
  text-align: center;
  margin-top: 10px;
  line-height: 1.55;
}

.ugcfp-legal a {
  color: #0ab99d;
  text-decoration: none;
}

.ugcfp-legal a:hover {
  text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .ugcfp-overlay {
    padding: 0;
    align-items: stretch;
  }
  .ugcfp-modal {
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    min-height: 100dvh;
    transform: scale(1) translateY(30px);
  }
  .ugcfp-overlay.ugcfp-active .ugcfp-modal {
    transform: scale(1) translateY(0);
  }
  /* Hide left image panel on mobile */
  .ugcfp-panel-left {
    display: none;
  }
  /* Right panel fills full screen */
  .ugcfp-panel-right {
    flex: 1;
    padding: 52px 24px 32px;
    overflow-y: auto;
  }
}
@media (max-width: 420px) {
  .ugcfp-panel-right {
    padding: 52px 18px 28px;
  }
  .ugcfp-dial-select {
    flex: 0 0 100px;
  }
}/*# sourceMappingURL=style.css.map */