/* ==========================================================================
   PREMIUM COSMETIC CONSULTING AD LANDING PAGE - COMPLETE REBUILD
   ========================================================================== */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* --- Design Tokens --- */
:root {
  --navy: #07193C;
  --navy-deep: #040F26;
  --navy-mid: #0B2A66;
  --gold: #C5A880;
  --gold-light: #E7D4B5;
  --gold-glow: rgba(197, 168, 128, 0.25);
  --white: #FFFFFF;
  --off-white: #F7F9FC;
  --text-dark: #101828;
  --text-muted: #667085;
  --red: #f97066;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 4px 12px rgba(7,25,60,0.04);
  --shadow-md: 0 12px 32px rgba(7,25,60,0.08);
  --shadow-lg: 0 20px 48px rgba(7,25,60,0.12);
  --shadow-gold: 0 12px 32px rgba(197,168,128,0.3);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.navbar.scrolled {
  background: rgba(4, 15, 38, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
}
.navbar-logo img {
  height: 44px;
  width: auto;
}
.navbar-links {
  display: flex;
  gap: 32px;
}
.navbar-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.3px;
  transition: color 0.3s;
}
.navbar-links a:hover {
  color: var(--gold);
}
.navbar-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}
.navbar-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(4,15,38,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 24px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .navbar-cta {
  margin-top: 12px;
  text-align: center;
  justify-content: center;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  mix-blend-mode: overlay;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-mid) 100%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.5;
}

/* Decorative Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}
.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(197,168,128,0.12);
  top: -8%;
  right: 10%;
  animation: orbFloat 20s infinite alternate ease-in-out;
}
.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(11,42,102,0.25);
  bottom: -5%;
  left: 5%;
  animation: orbFloat 25s infinite alternate-reverse ease-in-out;
}
.hero-orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(197,168,128,0.08);
  top: 50%;
  left: 40%;
  animation: orbFloat 18s infinite alternate ease-in-out;
}
@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
  100% { transform: translate(-30px, 40px) scale(0.95); }
}

/* Hero Grid - Two Columns */
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-text {
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(231, 212, 181, 0.08);
  border: 1px solid rgba(231, 212, 181, 0.2);
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 6px var(--gold); }
  50% { box-shadow: 0 0 16px var(--gold), 0 0 28px rgba(197,168,128,0.3); }
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.gold-gradient-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.75;
  color: rgba(255,255,255,0.68);
  margin-bottom: 28px;
}
.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: clamp(12.5px, 1.3vw, 14px);
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(197,168,128,0.12);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* --- Hero Visual (Right Column) --- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}
.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.35),
    0 0 80px rgba(197,168,128,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-main-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.hero-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4,15,38,0.7) 0%,
    rgba(4,15,38,0.1) 40%,
    transparent 60%
  );
  pointer-events: none;
}

/* Floating Glassmorphism Cards */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(7,25,60,0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 14px 20px;
  z-index: 5;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  animation: floatCard 6s infinite ease-in-out;
}
.float-card-icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(197,168,128,0.1);
  flex-shrink: 0;
}
.float-card-value {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}
.float-card-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Float card positions */
.float-card-1 {
  top: 10%;
  left: -12%;
  animation-delay: 0s;
}
.float-card-2 {
  bottom: 18%;
  right: -8%;
  animation-delay: -2s;
}
.float-card-3 {
  bottom: 2%;
  left: -5%;
  animation-delay: -4s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Category pills strip */
.hero-category-strip {
  position: absolute;
  top: 4%;
  right: -4%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 5;
}
.hero-category-strip span {
  background: rgba(197,168,128,0.12);
  border: 1px solid rgba(197,168,128,0.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.5px;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

/* --- Buttons --- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  background: linear-gradient(135deg, var(--gold) 0%, #a38965 100%);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  text-decoration: none;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(197,168,128,0.4);
}
.btn-gold.btn-lg { padding: 18px 44px; font-size: 15px; }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: var(--transition);
  text-decoration: none;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

/* Hero scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: float-bounce 2.5s infinite;
}
.hero-scroll-indicator span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.scroll-wheel {
  width: 3px;
  height: 7px;
  background: var(--gold);
  border-radius: 3px;
  animation: scroll-anim 2s infinite;
}
@keyframes scroll-anim {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}
@keyframes float-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

/* ===================== TRUST BAR ===================== */
.trust-bar {
  background: var(--off-white);
  border-bottom: 1px solid rgba(7,25,60,0.04);
  padding: 32px 0;
  text-align: center;
  overflow: hidden;
}
.trust-bar .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.trust-text {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}
.trust-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
  mask-image: linear-gradient(to right, transparent, var(--white) 15%, var(--white) 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, var(--white) 15%, var(--white) 85%, transparent);
}
.trust-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}
.trust-marquee:hover .trust-marquee-track {
  animation-play-state: paused;
}
.trust-logos-set {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 60px;
  padding-right: 60px;
}
.trust-logo {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 2.5px;
  user-select: none;
  white-space: nowrap;
  opacity: 0.65;
  transition: opacity 0.3s;
}
.trust-logo:hover {
  opacity: 1;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 100px 0;
  position: relative;
}
.section-white { background: var(--white); }
.section-soft { background: var(--off-white); }
.section-dark {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  color: var(--white);
}

/* Section Headers */
.section-header {
  margin-bottom: 56px;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197,168,128,0.08);
  border: 1px solid rgba(197,168,128,0.2);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.badge-dark {
  background: rgba(197,168,128,0.1);
  border-color: rgba(197,168,128,0.25);
}
.badge-danger {
  background: rgba(249,112,102,0.1);
  border-color: rgba(249,112,102,0.25);
  color: var(--red);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}
.section-title.text-white { color: var(--white); }
.section-subtitle {
  font-size: clamp(14.5px, 1.5vw, 17px);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
}
.text-white-muted { color: rgba(255,255,255,0.65) !important; }
.section-body-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ===================== FEATURE GRID (WHY EGC) ===================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--off-white);
  border: 1px solid rgba(7,25,60,0.03);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover {
  background: var(--white);
  border-color: rgba(197,168,128,0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(7,25,60,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 24px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(197,168,128,0.15), rgba(197,168,128,0.05));
  color: var(--gold);
}
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===================== SPLIT LAYOUT (CHALLENGES) ===================== */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 480px;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.split-image:hover img { transform: scale(1.04); }
.image-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,25,60,0.6) 0%, transparent 50%);
}
.image-float-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(7,25,60,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.image-float-badge strong {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
}
.image-float-badge span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.challenge-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.challenge-tag {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  border-left: 4px solid var(--navy-mid);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.challenge-tag:hover {
  transform: translateX(4px);
  border-left-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.tag-num {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--gold);
}

/* ===================== MID CTA BANNER ===================== */
.mid-cta-banner {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  padding: 0;
}
.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 56px 48px;
  background: linear-gradient(135deg, rgba(197,168,128,0.08), rgba(197,168,128,0.02));
  border: 1px solid rgba(197,168,128,0.12);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.mid-cta-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,168,128,0.15), transparent 70%);
}
.mid-cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.mid-cta-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
}

/* ===================== SERVICES GRID ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--off-white);
  border: 1px solid rgba(7,25,60,0.03);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--navy-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.service-card:hover {
  background: var(--white);
  border-color: rgba(197,168,128,0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card-top {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}
.service-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(7,25,60,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, rgba(197,168,128,0.18), rgba(197,168,128,0.06));
  color: var(--gold);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}
.service-card > p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}
.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.service-card li {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-card li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ===================== TIMELINE ===================== */
.timeline {
  position: relative;
  padding: 40px 0;
}
.timeline-line {
  position: absolute;
  top: 104px;
  left: 5%;
  right: 5%;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  z-index: 1;
}
.timeline-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 5%;
  background: linear-gradient(90deg, var(--gold), rgba(197,168,128,0.3));
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.timeline-items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
  z-index: 2;
}
.timeline-item {
  text-align: center;
  cursor: pointer;
  padding: 0 8px;
}
.timeline-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 3px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 48px auto 20px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
  position: relative;
}
.timeline-item.active .timeline-node {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  box-shadow: 0 0 20px var(--gold-glow), 0 0 40px rgba(197,168,128,0.15);
  transform: scale(1.15);
}
.timeline-item.active .timeline-node::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px dashed rgba(197,168,128,0.4);
  animation: spin-dashed 15s linear infinite;
}
@keyframes spin-dashed { to { transform: rotate(360deg); } }
.timeline-card h3 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.timeline-card p {
  font-size: 11.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}
.timeline-item.active .timeline-card h3 { opacity: 1; }
.timeline-item.active .timeline-card p {
  opacity: 1;
  max-height: 80px;
}

/* ===================== AUDIENCE GRID ===================== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.audience-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(7,25,60,0.03);
  transition: var(--transition);
}
.audience-card:hover {
  background: var(--white);
  border-color: rgba(197,168,128,0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.audience-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.audience-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.audience-card:hover .audience-img img { transform: scale(1.05); }
.audience-info {
  padding: 24px;
}
.audience-info h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.audience-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================== GLOBAL SECTION ===================== */
.section-global {
  overflow: hidden;
}
.global-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.global-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}
.global-map img {
  width: 100%;
  height: auto;
}
.global-info .section-subtitle {
  color: rgba(255,255,255,0.6);
  max-width: none;
  margin-bottom: 32px;
}
.global-counters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.counter-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 24px;
}
.counter-value {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}
.counter-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.4);
}
.region-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.region-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.region-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ===================== CATEGORY CHIPS ===================== */
.category-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.chip {
  background: var(--off-white);
  border: 1px solid rgba(7,25,60,0.04);
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  cursor: default;
  transition: var(--transition);
}
.chip:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ===================== MISTAKES ===================== */
.section-mistakes {
  overflow: hidden;
}
.mistakes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mistake-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 16px;
  transition: var(--transition);
}
.mistake-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(249,112,102,0.35);
  box-shadow: 0 8px 28px rgba(249,112,102,0.08);
  transform: translateY(-4px);
}
.mistake-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(249,112,102,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
}
.mistake-card h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.mistake-card p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ===================== CONSULTATION FORM ===================== */
.section-consultation {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  padding: 100px 0;
}
.consultation-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.consultation-info { padding-top: 20px; }
.consultation-info .section-title { margin-bottom: 16px; }
.consultation-info .text-white-muted { font-size: 15px; line-height: 1.7; margin-bottom: 40px; }
.consult-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.consult-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cf-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(197,168,128,0.1);
  border: 1px solid rgba(197,168,128,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.consult-feature strong {
  font-size: 14px;
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}
.consult-feature span {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
}
.consultation-form-card {
  background: rgba(7,25,60,0.6);
  border: 1px solid rgba(197,168,128,0.2);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}
.consultation-form-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,168,128,0.15), transparent 70%);
  pointer-events: none;
}
.form-card-header {
  text-align: center;
  margin-bottom: 28px;
}
.form-card-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.form-card-header p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.28);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 12px rgba(197,168,128,0.12);
}
.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C5A880' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
}
.form-group select option {
  background: var(--navy);
  color: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.error-msg {
  font-size: 11px;
  color: var(--red);
  margin-top: 4px;
  display: none;
  font-weight: 500;
}
.input-error { border-color: var(--red) !important; background: rgba(249,112,102,0.04) !important; }
.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), #a38965);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  margin-top: 8px;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(197,168,128,0.35);
}
.spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(7,25,60,0.2);
  border-radius: 50%;
  border-top-color: var(--navy);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 16px;
}
.success-check {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(90,138,107,0.15);
  border: 2px solid #5a8a6b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a8a6b;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 24px;
  animation: scale-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes scale-in { 0% { transform: scale(0); } 100% { transform: scale(1); } }
.form-success h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.form-success p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ===================== FAQ ===================== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--off-white);
  border: 1px solid rgba(7,25,60,0.03);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  border-color: rgba(197,168,128,0.3);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  gap: 12px;
}
.faq-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(7,25,60,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-arrow {
  background: var(--navy);
  color: var(--white);
  transform: rotate(180deg);
}
.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===================== FINAL CTA ===================== */
.section-final-cta {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy), var(--navy-mid));
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,168,128,0.12), transparent 65%);
  pointer-events: none;
}
.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--navy-deep);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo img {
  height: 40px;
  width: auto;
}
.footer-text {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  max-width: 600px;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
}

/* ===================== SCROLL TO TOP ===================== */
.scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  box-shadow: var(--shadow-gold);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}
.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(197,168,128,0.4);
}

/* ===================== SCROLL ANIMATIONS ===================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-main-image { height: 440px; }
  .hero-visual { min-height: 440px; }
  .hero-category-strip { display: none; }
  .float-card-1 { left: -6%; }
  .float-card-2 { right: -4%; }
  .float-card-3 { left: 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .mistakes-grid { grid-template-columns: repeat(2, 1fr); }
  .split-layout { grid-template-columns: 1fr; gap: 40px; }
  .split-image { height: 360px; }
  .global-grid { grid-template-columns: 1fr; gap: 40px; }
  .consultation-layout { grid-template-columns: 1fr; gap: 40px; }
  .mid-cta-inner { flex-direction: column; text-align: center; padding: 40px 32px; }
  .mid-cta-content p { margin: 0 auto; }
  .timeline-items { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .timeline-line { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .navbar-links { display: none; }
  .navbar-cta.desktop-only { display: none; }
  .navbar-inner .navbar-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  
  .hero-badge {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    border-radius: 12px;
    padding: 8px 16px;
    max-width: 100%;
  }
  .hero-badge span:not(.badge-dot) {
    white-space: normal;
    line-height: 1.4;
  }
  
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
  }
  .hero-main-image { height: 380px; }
  .hero-image-frame { max-width: 100%; order: -1; }
  .float-card-1, .float-card-2, .float-card-3 {
    position: relative;
    top: auto; left: auto; right: auto; bottom: auto;
    width: 100%;
    box-sizing: border-box;
    animation: none;
  }
  .hero-category-strip { display: none; }
  .hero-scroll-indicator { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .mistakes-grid { grid-template-columns: 1fr; }
  .challenge-tags { grid-template-columns: 1fr; }
  .timeline-items { grid-template-columns: repeat(2, 1fr); }
  .trust-bar .container { flex-direction: column; text-align: center; }
  .footer-flex { flex-direction: column; text-align: center; }
  .consultation-form-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .navbar-inner { height: 60px; padding: 0 16px; }
  .navbar-logo img { height: 30px; }
  .mobile-menu { padding: 12px 16px 20px; }
  .hero-title { font-size: 24px; }
  .hero-subtitle { font-size: 14px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons a { width: 100%; text-align: center; justify-content: center; }
  .hero-main-image { height: 300px; }
  .hero-float-card { padding: 12px 16px; }
  .float-card-value { font-size: 18px; }
  .split-image { height: 250px; }
  .service-card { padding: 24px 20px; }
  .audience-info { padding: 20px 16px; }
  .timeline-items { grid-template-columns: 1fr; }
  .global-counters { grid-template-columns: 1fr; }
  .final-cta-buttons { flex-direction: column; align-items: center; }
  .final-cta-buttons a { width: 100%; text-align: center; justify-content: center; }
  .consultation-form-card { padding: 24px 16px; }
  .mid-cta-inner { padding: 32px 20px; }
  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 360px) {
  .navbar-inner { padding: 0 12px; }
  .navbar-logo img { height: 26px; }
  .hero-title { font-size: 20px; }
  .hero-badge { font-size: 9px; padding: 6px 12px; }
}
