/* ================================
   PAWAN ENTERPRISES — STYLESHEET
   Premium navy + gold finance theme
   ================================ */

:root {
  --navy-950: #060d1f;
  --navy-900: #0a1832;
  --navy-800: #0f2348;
  --navy-700: #163066;
  --navy-600: #1e408a;
  --navy-500: #2a55b3;
  --gold-600: #b88a3a;
  --gold-500: #d4a64a;
  --gold-400: #e6bd6a;
  --gold-300: #f0d293;
  --gold-200: #f8e6bb;
  --ink-900: #0b1220;
  --ink-700: #2a3550;
  --ink-500: #5a6483;
  --ink-400: #707aa0;
  --ink-300: #8a93af;
  --ink-200: #c3c9da;
  --bg: #f7f8fc;
  --bg-soft: #eef1f8;
  --white: #ffffff;
  --line: #e5e8f0;
  --line-soft: #eef0f7;
  --shadow-sm: 0 4px 16px rgba(15, 35, 72, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 35, 72, 0.10);
  --shadow-lg: 0 24px 60px rgba(15, 35, 72, 0.16);
  --shadow-xl: 0 40px 80px rgba(15, 35, 72, 0.22);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --max: 1240px;
  --t: 0.4s cubic-bezier(.22,.61,.36,1);
  --t-slow: 0.7s cubic-bezier(.22,.61,.36,1);
  --grad-gold: linear-gradient(135deg, #d4a64a 0%, #f0d293 50%, #d4a64a 100%);
  --grad-navy: linear-gradient(135deg, var(--navy-900), var(--navy-700));
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy-900);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.accent {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 600;
}
.muted { color: var(--ink-500); }
.center { text-align: center; }

/* SCROLL PROGRESS */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: var(--grad-gold);
  z-index: 999;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 14px rgba(212,166,74,0.6);
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  transition: all var(--t);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.6s ease;
}
.btn:hover::before { left: 100%; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  box-shadow: 0 10px 30px rgba(212, 166, 74, 0.40);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(212, 166, 74, 0.55);
}
.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
  transform: translateY(-3px);
  background: rgba(212, 166, 74, 0.08);
}
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-full { width: 100%; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all var(--t);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(6, 13, 31, 0.85);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  padding: 14px 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  position: relative;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--grad-gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(212, 166, 74, 0.45);
  overflow: hidden;
}
.brand-mark::before {
  content: '';
  position: absolute; inset: 2px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
}
.bm-inner {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--navy-900);
  z-index: 1;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.2px;
}
.brand-tag {
  font-size: 10.5px;
  color: var(--gold-400);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
}
.nav-links { display: flex; gap: 34px; }
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  font-size: 14.5px;
  position: relative;
  transition: color var(--t);
  padding: 4px 0;
}
.nav-links a:hover { color: var(--gold-400); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  height: 2px; width: 0;
  background: var(--grad-gold);
  transition: width var(--t);
  border-radius: 2px;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 11px 20px; font-size: 13.5px; }
.hamburger {
  display: none;
  background: transparent;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all var(--t);
  border-radius: 2px;
}

/* ================================
   HERO
   ================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 80px;
  background: radial-gradient(ellipse at top, var(--navy-800), var(--navy-950) 80%);
  overflow: hidden;
  color: var(--white);
}

/* Mesh gradient blobs */
.mesh {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: blob 18s ease-in-out infinite;
}
.blob-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #d4a64a, transparent 70%);
  top: -10%; left: -8%;
  animation-delay: 0s;
}
.blob-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #2a55b3, transparent 70%);
  top: 30%; right: -10%;
  animation-delay: -6s;
}
.blob-3 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #e6bd6a, transparent 70%);
  bottom: -10%; left: 30%;
  animation-delay: -12s;
}
.blob-4 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #1e408a, transparent 70%);
  top: 10%; left: 40%;
  animation-delay: -3s;
}
@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85'/%3E%3CfeColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.15;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(212, 166, 74, 0.35);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 600;
  margin-bottom: 28px;
  background: rgba(212, 166, 74, 0.06);
  backdrop-filter: blur(10px);
}
.eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--gold-400);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-400);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 28px;
  letter-spacing: -1.5px;
  line-height: 1.05;
}
.shine {
  background: linear-gradient(90deg, var(--gold-400) 0%, var(--gold-200) 25%, var(--gold-400) 50%, var(--gold-200) 75%, var(--gold-400) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.lead {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin-bottom: 38px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 44px;
}
.hbadge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.hb-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  background: var(--gold-500);
  color: var(--navy-900);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 580px;
}
.hstat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--gold-400);
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.hstat span {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.3px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 540px;
  perspective: 1200px;
}
.hero-ring {
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;
  animation: spin 60s linear infinite;
  opacity: 0.55;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.card-float {
  position: absolute;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
  min-width: 240px;
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: transform 0.6s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.cf-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 22px;
  flex-shrink: 0;
}
.cf-icon-gold {
  background: var(--grad-gold);
  color: var(--navy-900);
  box-shadow: 0 6px 16px rgba(212, 166, 74, 0.35);
}
.cf-title {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
}
.cf-sub {
  color: rgba(255,255,255,0.6);
  font-size: 12.5px;
  margin-top: 3px;
}
.card-1 { top: 5%; left: 0; animation: float 6s ease-in-out infinite; }
.card-2 { top: 28%; right: -5%; animation: float 6s ease-in-out infinite -1.5s; }
.card-3 { bottom: 18%; left: 10%; animation: float 6s ease-in-out infinite -3s; }
.card-4 { bottom: 0; right: 5%; animation: float 6s ease-in-out infinite -4.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0) translateZ(0); }
  50% { transform: translateY(-14px) translateZ(0); }
}

/* Scroll down indicator */
.scroll-down {
  position: absolute;
  left: 50%; bottom: 30px;
  transform: translateX(-50%);
  width: 22px; height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  display: flex; justify-content: center;
  padding-top: 8px;
}
.scroll-down span {
  display: block;
  width: 3px; height: 8px;
  background: var(--gold-400);
  border-radius: 3px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ================================
   PARTNERS MARQUEE
   ================================ */
.partners {
  background: var(--white);
  padding: 50px 0 56px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.partners-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-400);
  font-weight: 600;
  margin-bottom: 28px;
}
.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.m-item {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--navy-800);
  letter-spacing: 0.3px;
}
.m-dot {
  color: var(--gold-500);
  font-size: 10px;
}

/* ================================
   SECTIONS — base
   ================================ */
.section { padding: 130px 0; position: relative; }
.section-tag {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(212, 166, 74, 0.12);
  color: var(--gold-600);
  font-size: 11.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
.tag-light {
  background: rgba(255,255,255,0.1);
  color: var(--gold-300);
}
.section h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin-bottom: 20px;
}
.section-head { margin-bottom: 70px; max-width: 760px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head p { font-size: 17px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ================================
   ABOUT
   ================================ */
.about {
  background:
    radial-gradient(ellipse at top right, rgba(212,166,74,0.06), transparent 50%),
    linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
}
.about p { margin-bottom: 16px; font-size: 16px; }
.bullets { margin-top: 28px; }
.bullets li {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 0;
  color: var(--ink-700);
  font-weight: 500;
  font-size: 15.5px;
}
.bullets li span {
  width: 26px; height: 26px;
  background: var(--grad-gold);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(212, 166, 74, 0.3);
}

.about-card {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border-radius: var(--radius-xl);
  padding: 50px 44px;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 20h40M20 0v40' stroke='%23ffffff' stroke-opacity='0.03' stroke-width='1'/%3E%3C/svg%3E");
}
.ac-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,166,74,0.3), transparent 70%);
  pointer-events: none;
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0.8; }
}

.ac-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
}
.ac-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1;
  letter-spacing: -1px;
}
.ac-stat .num small {
  font-size: 14px;
  margin-left: 4px;
  color: var(--gold-300);
  font-weight: 600;
  letter-spacing: 0;
}
.ac-stat .lbl {
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  font-weight: 600;
}

.ac-quote {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.quote-mark {
  width: 28px; height: 28px;
  color: var(--gold-400);
  margin-bottom: 14px;
  opacity: 0.8;
}
.ac-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 24px;
  font-weight: 500;
}
.qmeta-row { display: flex; align-items: center; gap: 14px; }
.qmeta-row .avatar {
  width: 48px; height: 48px;
  background: var(--grad-gold);
  color: var(--navy-900);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0;
  box-shadow: 0 6px 14px rgba(212,166,74,0.35);
}
.qmeta-row .qn {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
}
.qmeta-row .qr {
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

/* ================================
   SERVICES
   ================================ */
.services {
  background: var(--white);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.svc {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  cursor: default;
}
.svc-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(212,166,74,0.18), transparent 35%);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}
.svc:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.svc:hover .svc-glow { opacity: 1; }
.svc-ico {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--gold-400);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 10px 22px rgba(15,35,72,0.18);
  transition: all var(--t);
}
.svc-ico svg { width: 28px; height: 28px; }
.svc:hover .svc-ico {
  background: var(--grad-gold);
  color: var(--navy-900);
  transform: rotate(-6deg) scale(1.05);
}
.svc h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--navy-900);
}
.svc p {
  color: var(--ink-500);
  font-size: 14.8px;
  line-height: 1.65;
  margin-bottom: 18px;
}
.svc-link {
  display: inline-block;
  font-size: 12.5px;
  color: var(--gold-600);
  font-weight: 600;
  letter-spacing: 0.4px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  width: 100%;
}

/* ================================
   EXPERIENCE TIMELINE
   ================================ */
.experience {
  background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
}
.timeline {
  position: relative;
  padding: 30px 0;
  max-width: 880px;
  margin: 0 auto;
}
.tl-line {
  position: absolute;
  left: 32px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold-400) 10%, var(--gold-400) 90%, transparent);
  opacity: 0.4;
}
.tl-item {
  position: relative;
  padding-left: 80px;
  padding-bottom: 36px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute;
  left: 22px; top: 8px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold-500);
  box-shadow: 0 0 0 6px rgba(212,166,74,0.15), 0 6px 14px rgba(212,166,74,0.3);
  z-index: 2;
}
.tl-dot-gold {
  background: var(--grad-gold);
  border-color: var(--gold-300);
}
.tl-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: all var(--t);
  position: relative;
}
.tl-content::before {
  content: '';
  position: absolute;
  left: -8px; top: 18px;
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid var(--white);
}
.tl-item:hover .tl-content {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-300);
}
.tl-duration {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-600);
  background: rgba(212,166,74,0.12);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.tl-content h4 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.tl-content p {
  font-size: 14.5px;
  color: var(--ink-500);
  line-height: 1.6;
}
.tl-coverage .tl-content {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border-color: transparent;
}
.tl-coverage .tl-content::before { border-right-color: var(--navy-800); }
.tl-coverage h4 { color: var(--white); }
.tl-coverage p { color: rgba(255,255,255,0.78); }
.tl-coverage .tl-duration {
  background: rgba(212,166,74,0.2);
  color: var(--gold-300);
}

/* ================================
   PROCESS
   ================================ */
.process {
  background: var(--white);
  position: relative;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.step {
  background: var(--white);
  text-align: left;
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all var(--t);
  position: relative;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-300);
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--gold-400);
  border-radius: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 22px;
  box-shadow: 0 8px 18px rgba(15,35,72,0.20);
}
.step-line {
  position: absolute;
  top: 60px;
  right: -32px;
  width: 28px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold-300) 0 6px, transparent 6px 12px);
}
.step h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--navy-900);
}
.step p {
  color: var(--ink-500);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ================================
   WHY US
   ================================ */
.why { background: var(--bg); }
.reasons { gap: 26px; }
.reason {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.reason::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.reason:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.reason:hover::after { transform: scaleX(1); }
.r-ico {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--gold-400);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: all var(--t);
}
.r-ico svg { width: 24px; height: 24px; }
.reason:hover .r-ico {
  background: var(--grad-gold);
  color: var(--navy-900);
}
.reason h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--navy-900);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
.reason p {
  font-size: 14.5px;
  color: var(--ink-500);
  line-height: 1.6;
}

/* ================================
   STATS
   ================================ */
.stats {
  position: relative;
  padding: 100px 0;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-950);
}
.stats-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,166,74,0.18), transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(42,85,179,0.4), transparent 60%),
    linear-gradient(135deg, var(--navy-900), var(--navy-700));
  pointer-events: none;
}
.stats-head { margin-bottom: 60px; }
.stats-head h2 { color: var(--white); }
.stats-grid { position: relative; }
.stat {
  text-align: center;
  position: relative;
  padding: 30px 20px;
}
.stat::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  z-index: -1;
}
.stat .big {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4rem);
  font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1.5px;
}
.stat .lbl {
  font-size: 13px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

/* ================================
   CREDENTIALS
   ================================ */
.credentials { background: var(--white); padding: 110px 0; }
.cred-grid { gap: 26px; }
.cred {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-soft) 100%);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  text-align: center;
  border: 1px solid var(--line);
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.cred::before {
  content: '';
  position: absolute;
  top: -100%; left: 50%;
  width: 200px; height: 200px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(212,166,74,0.25), transparent 70%);
  transition: top var(--t-slow);
}
.cred:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-400);
}
.cred:hover::before { top: -50%; }
.cred-ico {
  font-size: 32px;
  margin-bottom: 18px;
  position: relative;
}
.cred-label {
  display: block;
  font-size: 11.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
}
.cred-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: 0.8px;
  position: relative;
}

/* ================================
   OFFICES
   ================================ */
.offices {
  background:
    radial-gradient(ellipse at top, rgba(212,166,74,0.05), transparent 50%),
    var(--bg);
}
.office-grid { gap: 36px; }
.office-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}
.office-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.office-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.o-pill {
  display: inline-block;
  background: var(--grad-gold);
  color: var(--navy-900);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(212,166,74,0.3);
}
.o-pill-alt {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  color: var(--gold-300);
  box-shadow: 0 4px 10px rgba(15,35,72,0.25);
}
.o-city {
  font-size: 13px;
  color: var(--ink-500);
  letter-spacing: 0.5px;
  font-weight: 500;
}
.office-card h3 {
  font-size: 26px;
  margin-bottom: 24px;
  color: var(--navy-900);
}
.office-meta { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.om-row { display: flex; align-items: flex-start; gap: 14px; }
.om-ico {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--bg), var(--bg-soft));
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.om-row strong {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 4px;
  font-weight: 700;
}
.om-row p {
  font-size: 14.5px;
  color: var(--navy-900);
  font-weight: 500;
  line-height: 1.55;
}
.om-row a:hover { color: var(--gold-600); }

.office-map {
  margin-top: auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.office-map iframe {
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
  filter: grayscale(20%) contrast(1.05);
  transition: filter var(--t);
}
.office-card:hover .office-map iframe { filter: grayscale(0%) contrast(1); }

/* ================================
   CTA BAND
   ================================ */
.cta-band {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-shape {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(255,255,255,0.3), transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(10,24,50,0.15), transparent 50%);
  pointer-events: none;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 20h40M20 0v40' stroke='%230a1832' stroke-opacity='0.06' stroke-width='1'/%3E%3C/svg%3E");
}
.cta-inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: var(--navy-900);
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}
.cta-band .accent {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-band p {
  color: var(--navy-800);
  font-size: 17px;
  font-weight: 500;
}
.cta-band .btn-primary {
  background: var(--navy-900);
  color: var(--gold-400);
  box-shadow: 0 12px 30px rgba(10, 24, 50, 0.45);
}
.cta-band .btn-primary:hover {
  background: var(--navy-800);
  color: var(--gold-300);
  box-shadow: 0 16px 40px rgba(10, 24, 50, 0.55);
}

/* ================================
   CONTACT
   ================================ */
.contact { background: var(--bg); }
.contact-list { margin-top: 32px; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: none; }
.ci {
  width: 46px; height: 46px;
  background: var(--white);
  color: var(--gold-600);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.contact-list div { font-size: 14.5px; color: var(--ink-500); }
.contact-list strong {
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 700;
}
.contact-list a:hover { color: var(--gold-600); }

.contact-form {
  background: var(--white);
  padding: 42px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  gap: 20px;
  border: 1px solid var(--line);
}
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form label {
  display: flex; flex-direction: column;
  gap: 8px;
}
.contact-form label span {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--ink-900);
  transition: all var(--t);
  width: 100%;
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 166, 74, 0.15);
}
.form-note {
  font-size: 12.5px;
  color: var(--ink-500);
  text-align: center;
  margin-top: -2px;
}

/* ================================
   FOOTER
   ================================ */
.footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.65);
  padding: 80px 0 28px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0.4;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.brand-foot .brand-name { color: var(--white); }
.foot-about {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 340px;
}
.foot-prop {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.foot-prop strong { color: var(--gold-400); }
.footer h5 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer ul li {
  padding: 7px 0;
  font-size: 13.5px;
  line-height: 1.5;
}
.footer ul li strong {
  color: var(--gold-400);
  font-size: 11.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer ul li a:hover {
  color: var(--gold-400);
  transition: color var(--t);
}
.foot-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
}

/* ================================
   REVEAL ANIMATIONS
   ================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(.22,.61,.36,1), transform 0.9s cubic-bezier(.22,.61,.36,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
  .hero-inner { gap: 48px; }
  .hero-visual { height: 460px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step-line { display: none; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { height: 420px; max-width: 480px; margin: 0 auto; }
  .two-col { grid-template-columns: 1fr; gap: 50px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .office-grid { grid-template-columns: 1fr; }
  .section { padding: 90px 0; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 70px; right: -100%;
    flex-direction: column;
    background: rgba(6, 13, 31, 0.97);
    backdrop-filter: blur(16px);
    width: 82%; max-width: 320px;
    height: calc(100vh - 70px);
    padding: 40px 30px;
    gap: 20px;
    transition: right var(--t);
    box-shadow: -10px 0 30px rgba(0,0,0,0.35);
  }
  .nav-links.open { right: 0; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

  .section { padding: 70px 0; }
  .hero { padding: 130px 0 60px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .contact-form { padding: 30px 24px; }
  .contact-form .row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .card-float { min-width: auto; }
  .card-1 { left: 0; }
  .card-2 { right: 0; }
  .card-3 { left: 0; bottom: 8%; }
  .card-4 { right: 0; bottom: -5%; }
  .office-card { padding: 28px; }
  .office-card h3 { font-size: 22px; }
  .tl-item { padding-left: 60px; }
  .tl-line { left: 22px; }
  .tl-dot { left: 12px; }
  .section-head { margin-bottom: 50px; }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
