/* ================================================================
   BLIS NETWORK — Ultra Premium Design System v2.0
   Palette: Ivory / Obsidian Navy / Luxury Gold
   Fonts: Playfair Display + Outfit + Inter
   Animations: GSAP + Lenis Ready
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  /* Light Theme Backgrounds */
  --ivory:        #FAFAF7;
  --ivory-warm:   #F5EDE0;
  --linen:        #EDE8DF;

  /* Dark Theme Backgrounds */
  --obsidian:     #08121C;
  --obsidian-2:   #0D1B2A;
  --obsidian-3:   #122336;

  /* Gold Palette */
  --gold:         #C9A84C;
  --gold-light:   #E8C96C;
  --gold-pale:    #F5E4B0;
  --gold-dark:    #9E7B2A;
  --gold-glow:    rgba(201, 168, 76, 0.25);
  --gold-muted:   rgba(201, 168, 76, 0.12);
  --gold-border:  rgba(201, 168, 76, 0.35);

  /* Corporate Blue Accent */
  --blue:         #1A3A5C;
  --blue-light:   #2461A0;
  --blue-muted:   rgba(26, 58, 92, 0.1);

  /* Text Colours */
  --text-dark:    #0E1B2C;
  --text-mid:     #4A5568;
  --text-muted:   #8A99AB;
  --text-white:   #FFFFFF;
  --text-ivory:   #FAFAF7;

  /* Borders */
  --border-light: rgba(14, 27, 44, 0.08);
  --border-dark:  rgba(255, 255, 255, 0.08);

  /* Spacing */
  --section-pad:  130px;
  --container:    1260px;

  /* Fonts */
  --serif:        'Playfair Display', Georgia, serif;
  --sans:         'Outfit', sans-serif;
  --body:         'Inter', sans-serif;

  /* Transitions */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Border Radius */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;

  /* Shadows */
  --shadow-soft:  0 4px 24px rgba(14,27,44,0.06);
  --shadow-card:  0 12px 40px rgba(14,27,44,0.10);
  --shadow-deep:  0 24px 64px rgba(14,27,44,0.16);
  --shadow-gold:  0 12px 40px rgba(201,168,76,0.30);
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--body); background: var(--ivory); color: var(--text-dark); overflow-x: hidden; line-height: 1.7; }
img { max-width:100%; height:auto; display:block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── CUSTOM SCROLLBAR ──────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ─── CUSTOM CURSOR ─────────────────────────────────────────── */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  border-radius: 50%; pointer-events: none; z-index: 99999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid var(--gold);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
}
.cursor-ring.hover {
  width: 60px; height: 60px;
  border-color: var(--gold-light);
  background: var(--gold-muted);
}
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ─── SCROLL PROGRESS BAR ───────────────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 10000; transition: width 0.05s linear;
}

/* ─── WHATSAPP FLOAT ────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 9000;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform 0.3s var(--ease-spring);
}
.wa-float:hover { transform: scale(1.12); color: #fff; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 8px 32px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0.1); }
}

/* ─── CONTAINER ─────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-family: var(--sans); color: var(--text-dark); line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 800; letter-spacing: -1.5px; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); letter-spacing: -1px; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
p  { color: var(--text-mid); line-height: 1.8; }

.serif-title { font-family: var(--serif); }
.gold-text   { color: var(--gold); }
.gold-grad   { background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-ivory  { color: var(--text-ivory) !important; }
.text-muted-light { color: rgba(255,255,255,0.55) !important; }

/* ─── SECTION LABEL ─────────────────────────────────────────── */
.label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px;
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  color: var(--gold); font-family: var(--sans);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--gold-muted);
  margin-bottom: 22px;
}
.label.dark { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); color: var(--gold-light); }
.label.blue { background: var(--blue-muted); border-color: rgba(26,58,92,0.25); color: var(--blue); }

/* ─── SECTION HEADER ────────────────────────────────────────── */
.s-header { text-align: center; max-width: 760px; margin: 0 auto 70px; }
.s-header p { margin-top: 18px; font-size: 1.1rem; }
.s-header.left { text-align: left; margin: 0 0 60px; }

/* ─── DIVIDER LINE ──────────────────────────────────────────── */
.gold-rule { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; margin: 20px 0; }
.gold-rule.center { margin: 20px auto; }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 38px;
  font-family: var(--sans); font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.5px;
  border-radius: 50px; cursor: pointer;
  transition: all 0.4s var(--ease-out);
  text-transform: uppercase; position: relative; overflow: hidden;
  border: 2px solid transparent;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--obsidian); border-color: transparent;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); color: var(--obsidian); }
.btn-dark {
  background: var(--obsidian); color: var(--text-ivory);
  border-color: var(--obsidian);
}
.btn-dark:hover { background: var(--obsidian-3); transform: translateY(-3px); color: var(--gold-light); border-color: var(--gold-border); }
.btn-outline-gold {
  background: transparent; color: var(--gold);
  border-color: var(--gold-border);
}
.btn-outline-gold:hover { background: var(--gold-muted); transform: translateY(-3px); }
.btn-outline-light {
  background: transparent; color: var(--text-ivory);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); transform: translateY(-3px); }
.btn-wa {
  background: #25D366; color: #fff; border-color: transparent;
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,0.35); color: #fff; }
.btn-sm { padding: 12px 26px; font-size: 0.82rem; }
.btn i { transition: transform 0.3s var(--ease-spring); }
.btn:hover i.fa-arrow-right { transform: translateX(4px); }

/* ─── NAVBAR ────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 22px 0;
  transition: all 0.5s var(--ease);
  background: transparent;
}
.navbar.scrolled {
  padding: 14px 0;
  background: rgba(250,250,247,0.95);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
}
.navbar.dark-nav { background: transparent; }
.navbar.dark-nav.scrolled {
  background: rgba(8,18,28,0.95);
  border-bottom-color: var(--border-dark);
}
.nav-container {
  max-width: var(--container); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 44px; width: auto; border-radius: 8px; }
.nav-logo-text { font-family: var(--sans); font-weight: 800; font-size: 1.25rem; color: var(--text-dark); letter-spacing: -0.5px; }
.nav-logo-text span { color: var(--gold); }
.navbar.dark-nav .nav-logo-text { color: var(--text-ivory); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  color: var(--text-mid); font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.2px; transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0; width:0; height:2px;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--text-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.navbar.dark-nav .nav-links a { color: rgba(255,255,255,0.6); }
.navbar.dark-nav .nav-links a:hover, .navbar.dark-nav .nav-links a.active { color: #fff; }
.nav-cta {
  padding: 11px 26px !important; background: var(--gold) !important;
  color: var(--obsidian) !important; border-radius: 50px !important;
  font-weight: 700 !important; font-size: 0.83rem !important;
  transition: all 0.3s var(--ease) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); color: var(--obsidian) !important; background: var(--gold-light) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1002; }
.nav-toggle span { width: 26px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all 0.3s var(--ease); display: block; }
.navbar.dark-nav .nav-toggle span { background: #fff; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--obsidian);
  z-index: 999; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a { color: var(--text-ivory); font-family: var(--sans); font-size: 1.8rem; font-weight: 700; transition: color 0.3s; }
.mobile-menu a:hover { color: var(--gold); }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--obsidian);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 160px 0 100px;
}
#hero-canvas {
  position: absolute; inset: 0; z-index: 0; opacity: 0.5;
}
.hero-bg-gradient {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,0.12) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 0% 80%, rgba(26,58,92,0.3) 0%, transparent 60%);
}
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 1;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 70px 70px;
}
.hero-content {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1fr 480px;
  gap: 80px; align-items: center;
}
.hero-label { margin-bottom: 28px; }
.hero-eyebrow {
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px; display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content:''; width: 36px; height: 2px; background: var(--gold); border-radius: 1px;
}
.hero-title {
  font-size: clamp(3rem, 5.5vw, 5.2rem); font-weight: 900;
  color: #fff; line-height: 1.04; letter-spacing: -2px;
  margin-bottom: 28px;
}
.hero-title em { font-style: normal; color: var(--gold); }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.5);
  line-height: 1.9; max-width: 500px; margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll-cue {
  margin-top: 64px; display: flex; align-items: center; gap: 14px;
  font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.25); font-family: var(--sans); font-weight: 500;
}
.hero-scroll-cue::before {
  content:''; display: block; width: 1px; height: 50px;
  background: linear-gradient(transparent, var(--gold-border));
  animation: scrollLineDown 2s ease-in-out infinite;
}
@keyframes scrollLineDown {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Hero Visual */
.hero-visual { position: relative; }
.hero-photo-frame {
  position: relative; border-radius: var(--r-xl);
  overflow: hidden; aspect-ratio: 3/4;
  border: 1px solid rgba(201,168,76,0.25);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.hero-photo-frame img { width:100%; height:100%; object-fit:cover; display:block; }
.hero-photo-frame::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,18,28,0.7) 100%);
}
.hero-photo-caption {
  position: absolute; bottom: 24px; left: 24px; right: 24px; z-index: 5;
  background: rgba(8,18,28,0.7); backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,0.2); border-radius: var(--r-md);
  padding: 18px 22px;
}
.hero-photo-caption h4 { color: #fff; font-size: 1rem; margin-bottom: 2px; }
.hero-photo-caption p { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin: 0; }

/* Floating Cards */
.hero-float {
  position: absolute; z-index: 10;
  background: rgba(8,18,28,0.85); backdrop-filter: blur(24px);
  border: 1px solid rgba(201,168,76,0.25); border-radius: var(--r-md);
  padding: 16px 20px; display: flex; align-items: center; gap: 14px;
  white-space: nowrap;
}
.hero-float-1 { top: 40px; left: -60px; animation: float1 5s ease-in-out infinite; }
.hero-float-2 { bottom: 100px; right: -50px; animation: float1 5s ease-in-out 2.5s infinite; }
@keyframes float1 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.hero-float .fi-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--gold-muted); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem; flex-shrink: 0;
}
.hero-float .fi-text h5 { color: #fff; font-size: 1.1rem; font-weight: 800; line-height: 1; }
.hero-float .fi-text span { color: rgba(255,255,255,0.4); font-size: 0.73rem; }

/* ─── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--ivory-warm);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 56px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item { text-align: center; padding: 0 20px; position: relative; }
.stat-item + .stat-item::before {
  content:''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 60%; background: var(--border-light);
}
.stat-num {
  font-family: var(--sans); font-size: clamp(2.2rem,4vw,3.4rem);
  font-weight: 900; color: var(--text-dark); line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-label { margin-top: 8px; font-size: 0.85rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* ─── TRUSTED BY (LOGO MARQUEE) ─────────────────────────────── */
.trusted-section { background: var(--ivory); padding: 80px 0; overflow: hidden; }
.trusted-intro { text-align: center; font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 3px; font-weight: 600; margin-bottom: 44px; font-family: var(--sans); }
.marquee-wrapper { position: relative; overflow: hidden; }
.marquee-wrapper::before, .marquee-wrapper::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
}
.marquee-wrapper::before { left: 0; background: linear-gradient(to right, var(--ivory), transparent); }
.marquee-wrapper::after  { right: 0; background: linear-gradient(to left, var(--ivory), transparent); }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marqueeRun 32s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.logo-item {
  display: flex; align-items: center; justify-content: center;
  padding: 0 48px; height: 70px; flex-shrink: 0;
  border-right: 1px solid var(--border-light);
  transition: all 0.4s var(--ease);
}
.logo-item:last-child { border-right: none; }
.logo-item img {
  max-height: 36px; max-width: 120px; width: auto;
  filter: grayscale(1) opacity(0.45) brightness(0.8);
  object-fit: contain;
  transition: all 0.4s var(--ease);
}
.logo-item:hover img { filter: grayscale(0) opacity(1) brightness(1); transform: scale(1.08); }
@keyframes marqueeRun { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── SERVICES SECTION ───────────────────────────────────────── */
.services-intro { background: var(--ivory); padding: var(--section-pad) 0; }
.services-dark { background: var(--obsidian); padding: var(--section-pad) 0; }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.svc-card {
  background: var(--ivory-warm); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: all 0.5s var(--ease-out); cursor: default;
}
.svc-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease-out);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: rgba(201,168,76,0.2); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 58px; height: 58px; border-radius: 14px;
  background: var(--gold-muted); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.3rem; margin-bottom: 24px;
  transition: all 0.4s var(--ease);
}
.svc-card:hover .svc-icon { background: var(--gold); color: var(--obsidian); border-color: var(--gold); }
.svc-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.svc-card p  { font-size: 0.9rem; line-height: 1.7; color: var(--text-mid); }
.svc-card-dark {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
}
.svc-card-dark h3 { color: #fff; }
.svc-card-dark p  { color: rgba(255,255,255,0.5); }
.svc-card-dark:hover { background: rgba(255,255,255,0.07); border-color: var(--gold-border); }

/* ─── ABOUT SPLIT ────────────────────────────────────────────── */
.about-section { background: var(--linen); padding: var(--section-pad) 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-stack { position: relative; }
.about-img-main {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-deep); aspect-ratio: 4/5;
  border: 1px solid var(--border-light);
}
.about-img-main img { width:100%; height:100%; object-fit:cover; }
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--obsidian); border: 1px solid var(--gold-border);
  border-radius: var(--r-lg); padding: 24px 30px;
  text-align: center; box-shadow: var(--shadow-deep);
}
.about-badge h3 { color: var(--gold); font-size: 2.4rem; font-weight: 900; line-height: 1; }
.about-badge p  { color: rgba(255,255,255,0.5); font-size: 0.78rem; margin-top: 4px; text-transform: uppercase; letter-spacing: 1.5px; }
.about-content h2 { margin-bottom: 24px; }
.about-content p  { margin-bottom: 20px; }
.about-values {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px;
}
.val-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--ivory); border: 1px solid var(--border-light);
  border-radius: var(--r-md); padding: 20px;
  transition: all 0.3s var(--ease);
}
.val-item:hover { border-color: var(--gold-border); box-shadow: var(--shadow-soft); }
.val-item .vi { color: var(--gold); font-size: 1.2rem; margin-top: 3px; flex-shrink: 0; }
.val-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.val-item p  { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ─── PORTFOLIO / CASE STUDIES ───────────────────────────────── */
.portfolio-section { background: var(--ivory); padding: var(--section-pad) 0; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.case-card {
  background: var(--ivory-warm); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all 0.5s var(--ease-out);
  display: flex; flex-direction: column;
}
.case-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.case-card-header {
  padding: 32px 32px 24px;
  border-bottom: 1px solid var(--border-light);
  background: var(--ivory);
  min-height: 80px; display: flex; align-items: center;
}
.case-card-header img {
  max-height: 40px; max-width: 140px; width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0.4);
  transition: filter 0.4s;
}
.case-card:hover .case-card-header img { filter: none; }
.case-card-body { padding: 28px 32px; flex: 1; }
.case-tag {
  display: inline-block; padding: 5px 12px;
  background: var(--gold-muted); border: 1px solid var(--gold-border);
  border-radius: 50px; color: var(--gold); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 14px;
}
.case-card-body h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.case-card-body p  { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 24px; }
.case-metrics { display: flex; gap: 20px; flex-wrap: wrap; }
.cm { text-align: center; }
.cm-val { font-family: var(--sans); font-size: 1.5rem; font-weight: 900; color: var(--text-dark); line-height: 1; }
.cm-lbl { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }

/* ─── FEATURED PARTNERS SPOTLIGHT ────────────────────────────── */
.partner-spotlight { background: var(--obsidian); padding: var(--section-pad) 0; }
.spotlight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.spotlight-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg); padding: 40px; display: flex; flex-direction: column;
  gap: 24px; transition: all 0.5s var(--ease-out);
}
.spotlight-card:hover { background: rgba(255,255,255,0.07); border-color: var(--gold-border); transform: translateY(-6px); }
.spotlight-card.featured {
  grid-column: 1 / -1;
  flex-direction: row; align-items: center; gap: 60px;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(26,58,92,0.15));
}
.spotlight-logo {
  height: 48px; display: flex; align-items: center;
}
.spotlight-logo img {
  max-height: 44px; max-width: 160px; width: auto; object-fit: contain;
  filter: grayscale(1) brightness(2.5) opacity(0.6);
  transition: all 0.4s;
}
.spotlight-card:hover .spotlight-logo img { filter: grayscale(0) brightness(1) opacity(1); }
.spotlight-card h3 { color: #fff; font-size: 1.25rem; margin: 0; }
.spotlight-card p  { color: rgba(255,255,255,0.45); font-size: 0.9rem; line-height: 1.7; margin: 0; }
.spotlight-stat-row { display: flex; gap: 32px; }
.sp-stat h4 { color: var(--gold); font-size: 1.8rem; font-weight: 900; }
.sp-stat p  { color: rgba(255,255,255,0.4); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; margin: 0; }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-section { background: var(--ivory-warm); padding: var(--section-pad) 0; overflow: hidden; }
.testi-slider { position: relative; }
.testi-track { display: flex; transition: transform 0.6s var(--ease-out); }
.testi-slide {
  min-width: 100%; padding: 0 40px;
}
.testi-card {
  max-width: 780px; margin: 0 auto;
  background: var(--ivory); border: 1px solid var(--border-light);
  border-radius: var(--r-xl); padding: 56px 60px;
  text-align: center; box-shadow: var(--shadow-card);
  position: relative;
}
.testi-quote-icon {
  font-size: 5rem; line-height: 1; color: var(--gold-pale);
  font-family: var(--serif); position: absolute;
  top: 30px; left: 50px; opacity: 0.4;
}
.testi-text {
  font-family: var(--serif); font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-style: italic; color: var(--text-dark);
  line-height: 1.8; margin-bottom: 36px; position: relative; z-index: 1;
}
.testi-author { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.testi-author h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); }
.testi-author span { font-size: 0.82rem; color: var(--gold); font-weight: 600; }
.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 12px; letter-spacing: 3px; }
.testi-controls { display: flex; gap: 14px; justify-content: center; margin-top: 40px; }
.testi-dot {
  width: 10px; height: 10px; border-radius: 50%; cursor: pointer;
  background: var(--border-light); border: 1.5px solid var(--text-muted);
  transition: all 0.3s;
}
.testi-dot.active { background: var(--gold); border-color: var(--gold); transform: scale(1.2); }

/* ─── PAGE HEADER ────────────────────────────────────────────── */
.page-header {
  background: var(--obsidian); padding: 180px 0 100px;
  text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content:''; position:absolute; inset:0; z-index:0;
  background: radial-gradient(ellipse 60% 70% at 50% 30%, rgba(201,168,76,0.1) 0%, transparent 70%);
}
.page-header .container { position:relative; z-index:2; }
.page-header h1 { color: #fff; margin-bottom: 20px; }
.page-header p  { color: rgba(255,255,255,0.5); max-width: 640px; margin: 0 auto; font-size: 1.1rem; }

/* ─── CONTACT SECTION ────────────────────────────────────────── */
.contact-section { background: var(--ivory); padding: var(--section-pad) 0; }
.contact-grid  { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info-card {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 28px; border: 1px solid var(--border-light);
  border-radius: var(--r-md); background: var(--ivory-warm);
  transition: all 0.3s var(--ease);
  margin-bottom: 20px;
}
.contact-info-card:hover { border-color: var(--gold-border); box-shadow: var(--shadow-soft); }
.ci-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--gold-muted); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem; flex-shrink: 0;
}
.ci-info h4 { font-size: 0.9rem; margin-bottom: 4px; }
.ci-info a, .ci-info p { font-size: 0.88rem; color: var(--text-mid); margin: 0; }
.ci-info a:hover { color: var(--gold); }

/* Form */
.glass-form {
  background: var(--obsidian); border-radius: var(--r-xl); padding: 52px 48px;
  border: 1px solid rgba(255,255,255,0.07);
}
.glass-form h3 { color: #fff; margin-bottom: 8px; font-size: 1.7rem; }
.glass-form > p { color: rgba(255,255,255,0.4); margin-bottom: 36px; font-size: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm); padding: 14px 18px;
  color: #fff; font-family: var(--body); font-size: 0.95rem;
  transition: all 0.3s; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(201,168,76,0.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group select option { background: var(--obsidian); color: #fff; }
.form-group textarea { min-height: 130px; resize: vertical; }

/* ─── LOCATION SECTION ───────────────────────────────────────── */
.location-section { background: var(--obsidian-2); padding: var(--section-pad) 0; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.location-map-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3;
  position: relative;
}
.map-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(26,58,92,0.5), rgba(8,18,28,0.8));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px;
}
.map-pin-anim {
  width: 64px; height: 64px;
  background: var(--gold); border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg); position: relative;
  animation: pinBounce 2s ease-in-out infinite;
  box-shadow: 0 0 0 8px rgba(201,168,76,0.2);
}
.map-pin-anim::after {
  content:''; position:absolute; width: 24px; height: 24px;
  background: var(--obsidian); border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.map-pin-shadow {
  width: 20px; height: 8px; background: rgba(0,0,0,0.3);
  border-radius: 50%; margin-top: 8px;
  animation: shadowPulse 2s ease-in-out infinite;
}
@keyframes pinBounce {
  0%,100% { transform: rotate(-45deg) translateY(0); }
  50%      { transform: rotate(-45deg) translateY(-10px); }
}
@keyframes shadowPulse {
  0%,100% { transform: scaleX(1); opacity: 0.3; }
  50%      { transform: scaleX(0.6); opacity: 0.1; }
}
.map-label { color: rgba(255,255,255,0.4); font-size: 0.85rem; text-align: center; padding: 0 20px; }
.location-info h2 { color: #fff; margin-bottom: 24px; }
.location-info > p { color: rgba(255,255,255,0.5); margin-bottom: 36px; line-height: 1.9; }
.address-box {
  background: rgba(201,168,76,0.08); border: 1px solid var(--gold-border);
  border-radius: var(--r-md); padding: 28px;
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 28px;
}
.address-box .addr-icon { color: var(--gold); font-size: 1.4rem; margin-top: 2px; flex-shrink: 0; }
.address-box h4 { color: #fff; font-size: 1rem; margin-bottom: 6px; }
.address-box p  { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin: 0; line-height: 1.6; }
.location-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--obsidian) 0%, var(--obsidian-3) 100%);
  padding: 120px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,168,76,0.1) 0%, transparent 70%);
}
.cta-section .container { position:relative; z-index:2; }
.cta-section h2 { color:#fff; margin-bottom: 20px; }
.cta-section p  { color: rgba(255,255,255,0.5); max-width:600px; margin: 0 auto 48px; font-size:1.1rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── BLOG ───────────────────────────────────────────────────── */
.blog-section { background: var(--ivory); padding: var(--section-pad) 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card {
  background: var(--ivory-warm); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all 0.4s var(--ease-out); display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.blog-img {
  height: 200px; background: var(--obsidian);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--gold); position: relative; overflow: hidden;
}
.blog-img::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,18,28,0.5) 100%);
}
.blog-body { padding: 28px; flex:1; display: flex; flex-direction:column; }
.blog-tag-pill {
  display: inline-block; padding: 4px 12px;
  background: var(--blue-muted); border: 1px solid rgba(26,58,92,0.2);
  border-radius: 50px; color: var(--blue); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 14px;
}
.blog-body h3 { font-size: 1.05rem; line-height: 1.45; margin-bottom: 10px; }
.blog-body p  { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; flex:1; margin-bottom: 20px; }
.blog-meta { display: flex; gap: 16px; font-size: 0.78rem; color: var(--text-muted); margin-top: auto; }
.blog-meta i { color: var(--gold); margin-right: 4px; }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase; transition: gap 0.3s;
  margin-top: 16px;
}
.blog-card:hover .blog-read-more { gap: 10px; }

/* ─── CONSULT PAGE ───────────────────────────────────────────── */
.consult-hero {
  background: var(--obsidian); padding: 200px 0 120px;
  text-align: center; position:relative; overflow:hidden;
}
.consult-hero::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 70% 80% at 50% 30%, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.ceo-profile-img {
  width: 140px; height: 140px; border-radius: 50%;
  border: 3px solid var(--gold); object-fit: cover;
  margin: 0 auto 28px; display: block;
  box-shadow: 0 16px 48px rgba(201,168,76,0.3);
  position:relative; z-index:2;
}
.consult-hero h1, .consult-hero p { position:relative; z-index:2; }
.consult-benefits {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 80px;
  position:relative; z-index:2;
}
.benefit-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg); padding: 36px 28px; text-align: left;
  transition: all 0.4s;
}
.benefit-card:hover { background: rgba(255,255,255,0.08); border-color: var(--gold-border); transform: translateY(-4px); }
.benefit-card i { font-size: 1.8rem; color: var(--gold); margin-bottom: 20px; display: block; }
.benefit-card h4 { color: #fff; margin-bottom: 10px; }
.benefit-card p  { color: rgba(255,255,255,0.4); font-size: 0.88rem; margin: 0; }

/* ─── STEPS ──────────────────────────────────────────────────── */
.steps-list { display: flex; flex-direction: column; gap: 24px; }
.step-item { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold-muted); border: 2px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-weight: 800; font-size: 0.9rem; font-family: var(--sans);
}
.step-num.dark { background: rgba(201,168,76,0.15); border-color: var(--gold-border); }
.step-text h4 { font-size: 0.95rem; margin-bottom: 4px; }
.step-text p  { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer { background: var(--obsidian); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-main { padding: 100px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; }
.footer-brand .footer-logo { display:flex; align-items:center; gap:12px; margin-bottom:20px; }
.footer-brand .footer-logo img { height:42px; border-radius:8px; }
.footer-brand .footer-logo-name { font-family:var(--sans); font-weight:800; font-size:1.2rem; color:#fff; }
.footer-brand p { color:rgba(255,255,255,0.35); font-size:0.88rem; line-height:1.8; margin-bottom:28px; max-width:300px; }
.footer-socials { display:flex; gap:14px; }
.footer-socials a {
  width:40px; height:40px; border-radius:50%;
  background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,0.4); font-size:0.88rem;
  transition:all 0.3s;
}
.footer-socials a:hover { background:var(--gold); color:var(--obsidian); border-color:var(--gold); transform:translateY(-3px); }
.footer-col h5 { color:#fff; font-size:0.85rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; margin-bottom:24px; }
.footer-col a { display:block; color:rgba(255,255,255,0.35); font-size:0.88rem; margin-bottom:14px; transition:color 0.3s; }
.footer-col a:hover { color:var(--gold); }
.footer-col a i { width:16px; color:var(--gold); margin-right:8px; }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,0.06); padding:24px 0;
  display:flex; align-items:center; justify-content:space-between;
}
.footer-bottom p { color:rgba(255,255,255,0.25); font-size:0.82rem; }
.footer-bottom a { color:rgba(255,255,255,0.25); font-size:0.82rem; transition:color 0.3s; }
.footer-bottom a:hover { color:var(--gold); }

/* ─── ANIMATIONS (GSAP TARGETS) ─────────────────────────────── */
.fade-up    { opacity:0; transform:translateY(40px); }
.fade-left  { opacity:0; transform:translateX(-40px); }
.fade-right { opacity:0; transform:translateX(40px); }
.fade-in    { opacity:0; }
.scale-in   { opacity:0; transform:scale(0.94); }
.stagger-children > * { opacity:0; transform:translateY(30px); }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 60px; }
  .hero-photo-frame { max-width: 420px; margin: 0 auto; }
  .hero-float-1, .hero-float-2 { display: none; }
  .hero-actions { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-eyebrow { justify-content: center; }
  .about-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .spotlight-card.featured { flex-direction: column; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: 80px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 140px 0 80px; }
  .hero-title { font-size: 2.8rem; }
  .svc-grid, .portfolio-grid, .blog-grid, .consult-benefits, .spotlight-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-item + .stat-item::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .glass-form { padding: 36px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .testi-slide { padding: 0; }
  .testi-card { padding: 36px 28px; }
  .about-values { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; letter-spacing: -1px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
}
