:root {
  --navy: #0B1F3A;
  --navy-light: #122548;
  --navy-mid: #1a3460;
  --gold: #C9A84C;
  --gold-light: #E4C77B;
  --gold-pale: #F5E9C8;
  --white: #FFFFFF;
  --gray-100: #F8F8F6;
  --gray-200: #EBEBEB;
  --gray-400: #9A9A9A;
  --gray-600: #555555;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  cursor: none;
}

/* Custom Cursor */
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--transition), opacity 0.3s;
  opacity: 0.6;
}
body:hover .cursor { opacity: 1; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ===== NAVBAR ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  transition: background 0.5s var(--transition), box-shadow 0.5s;
}
nav.scrolled {
  background: rgba(11,31,58,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.nav-logo img { height: 44px; filter: brightness(0) invert(1); }
.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 28px; background: transparent;
  border: 1.5px solid var(--gold); color: var(--gold);
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; cursor: none;
  transition: background 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: none; }
.hamburger span { width: 26px; height: 1.5px; background: white; transition: 0.3s; }

/* ===== HERO ===== */
#hero {
  position: relative; height: 100vh; min-height: 700px;
  background: var(--navy);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(26,52,96,0.8) 0%, transparent 60%),
    linear-gradient(135deg, #071527 0%, #0B1F3A 40%, #122548 70%, #0d2a5c 100%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridPan 40s linear infinite;
}
@keyframes gridPan { from { transform: translateY(0); } to { transform: translateY(80px); } }

.hero-accent {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 45%; z-index: 2;
  background: linear-gradient(135deg, transparent 0%, rgba(201,168,76,0.04) 100%);
  border-left: 1px solid rgba(201,168,76,0.12);
}
.hero-image-panel {
  position: absolute; right: 5vw; top: 50%; transform: translateY(-50%);
  width: 38%; max-width: 520px; z-index: 3;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.hero-img-card {
  border-radius: 4px; overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hero-img-card:nth-child(1) { grid-row: span 2; }
.hero-img-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.75) saturate(0.8);
  transition: transform 6s ease, filter 0.5s;
}
.hero-img-card:hover img { transform: scale(1.04); filter: brightness(0.85) saturate(1); }
.hero-img-card::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px; pointer-events: none;
}

.hero-content {
  position: relative; z-index: 4;
  padding: 0 5vw;
  max-width: 620px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold); font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s 0.3s var(--transition) forwards;
}
.hero-tag::before {
  content: ''; display: block; width: 40px; height: 1px; background: var(--gold);
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 82px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 6px;
  opacity: 0; animation: fadeUp 0.9s 0.5s var(--transition) forwards;
}
.hero-h1 em {
  font-style: italic; color: var(--gold-light);
}
.hero-subtitle {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.8; max-width: 440px;
  margin-bottom: 44px;
  opacity: 0; animation: fadeUp 0.9s 0.7s var(--transition) forwards;
}
.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s 0.9s var(--transition) forwards;
}
.btn-gold {
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-family: var(--font-body); font-size: 12px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; cursor: none;
  position: relative; overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.btn-gold::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-110%) skewX(-15deg);
  transition: transform 0.5s var(--transition);
}
.btn-gold:hover::after { transform: translateX(110%) skewX(-15deg); }
.btn-gold:hover { box-shadow: 0 12px 40px rgba(201,168,76,0.4); transform: translateY(-2px); }
.btn-outline {
  padding: 16px 40px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body); font-size: 12px;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; cursor: none;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.hero-stats {
  position: absolute; bottom: 40px; left: 5vw; right: 5vw; z-index: 5;
  display: flex; gap: 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-top: 28px;
  opacity: 0; animation: fadeUp 0.9s 1.1s var(--transition) forwards;
}
.hero-stat {
  padding-right: 48px; margin-right: 48px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:last-child { border: none; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-top: 4px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute; bottom: 48px; right: 5vw; z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.3); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  opacity: 0; animation: fadeUp 1s 1.3s forwards;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* ===== SECTION COMMONS ===== */
section { padding: 120px 5vw; }
.section-tag {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold); font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 20px;
}
.section-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.5vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
}
.section-h2 em { font-style: italic; color: var(--gold); }
.section-h2.light { color: var(--white); }
.section-desc {
  font-size: 15px; font-weight: 300;
  color: var(--gray-600); line-height: 1.9;
  max-width: 520px; margin-top: 16px;
}
.section-desc.light { color: rgba(255,255,255,0.6); }

/* ===== ABOUT ===== */
#about {
  background: var(--gray-100);
  padding: 120px 5vw;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1300px; margin: 0 auto;
}
.about-visual {
  position: relative;
}
.about-img-stack {
  position: relative;
  aspect-ratio: 4/5; max-width: 480px;
}
.about-img-main {
  width: 85%; height: 85%;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(11,31,58,0.2);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 55%;
  border-radius: 2px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(11,31,58,0.25);
  border: 6px solid var(--gray-100);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; top: 20px; right: 15%;
  background: var(--navy);
  padding: 20px 24px; text-align: center;
  box-shadow: 0 10px 40px rgba(11,31,58,0.3);
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 500; color: var(--gold);
  line-height: 1;
}
.about-badge-label {
  font-size: 10px; color: rgba(255,255,255,0.6);
  letter-spacing: 2px; text-transform: uppercase;
  margin-top: 4px;
}
.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 40px;
}
.about-pillar {
  padding: 20px; border: 1px solid var(--gray-200);
  background: white;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.about-pillar:hover { border-color: var(--gold); box-shadow: 0 8px 30px rgba(201,168,76,0.1); }
.about-pillar-icon { font-size: 20px; margin-bottom: 8px; }
.about-pillar-title { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.about-pillar-text { font-size: 12px; color: var(--gray-400); line-height: 1.6; }

/* ===== VISION MISSION ===== */
#vision {
  background: var(--navy);
  position: relative; overflow: hidden;
}
#vision::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(201,168,76,0.04) 0%, transparent 50%);
}
.vm-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
  max-width: 1100px; margin: 60px auto 0;
  position: relative; z-index: 1;
}
.vm-card {
  padding: 60px 50px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.12);
  position: relative; overflow: hidden;
  transition: background 0.4s, border-color 0.4s;
}
.vm-card:hover {
  background: rgba(201,168,76,0.04);
  border-color: rgba(201,168,76,0.3);
}
.vm-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.vm-card:hover::before { opacity: 1; }
.vm-icon {
  width: 56px; height: 56px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  font-size: 22px;
}
.vm-title {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 400;
  color: var(--gold-light); margin-bottom: 16px;
}
.vm-text {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.65); line-height: 1.9;
}

/* ===== SERVICES ===== */
#services { background: var(--white); }
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px; max-width: 1300px; margin: 0 auto 60px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  max-width: 1300px; margin: 0 auto;
}
.service-card {
  padding: 48px 40px;
  background: var(--gray-100);
  position: relative; overflow: hidden;
  cursor: none;
  transition: background 0.4s;
}
.service-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 0;
  background: var(--navy);
  transition: height 0.5s var(--transition);
  z-index: 0;
}
.service-card:hover::before { height: 100%; }
.service-card:hover .service-icon,
.service-card:hover .service-title,
.service-card:hover .service-text,
.service-card:hover .service-link { color: var(--white); }
.service-card:hover .service-title { color: var(--gold-light); }
.service-icon {
  font-size: 32px; margin-bottom: 20px;
  position: relative; z-index: 1;
  transition: color 0.4s;
  display: block;
}
.service-num {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--font-display);
  font-size: 60px; font-weight: 300;
  color: rgba(11,31,58,0.05);
  line-height: 1;
  transition: color 0.4s;
  z-index: 0;
}
.service-card:hover .service-num { color: rgba(255,255,255,0.05); }
.service-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  color: var(--navy); margin-bottom: 12px;
  position: relative; z-index: 1;
  transition: color 0.4s;
}
.service-text {
  font-size: 13px; font-weight: 300;
  color: var(--gray-600); line-height: 1.8;
  position: relative; z-index: 1;
  transition: color 0.4s;
}
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px;
  font-size: 11px; font-weight: 600;
  color: var(--gold); letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  position: relative; z-index: 1;
  transition: color 0.4s, gap 0.3s;
}
.service-card:hover .service-link { gap: 14px; color: var(--gold-light); }

/* ===== STATS ===== */
#stats {
  background: var(--navy);
  position: relative; overflow: hidden;
  padding: 100px 5vw;
}
#stats::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(201,168,76,0.06)'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 1;
}
.stat-item {
  padding: 56px 40px; text-align: center;
  border: 1px solid rgba(201,168,76,0.1);
  position: relative; overflow: hidden;
  transition: background 0.4s, border-color 0.4s;
}
.stat-item:hover { background: rgba(201,168,76,0.04); border-color: rgba(201,168,76,0.3); }
.stat-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(201,168,76,0.08) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s;
}
.stat-item:hover .stat-glow { opacity: 1; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(52px, 4vw, 72px);
  font-weight: 300; color: var(--gold-light);
  line-height: 1;
  position: relative; z-index: 1;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 36px; color: var(--gold); vertical-align: super;
}
.stat-label {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-top: 12px;
  position: relative; z-index: 1;
}
.stat-divider {
  width: 30px; height: 1px;
  background: var(--gold); opacity: 0.4;
  margin: 12px auto 0;
}

/* ===== CLIENTS ===== */
#clients {
  background: var(--gray-100);
  padding: 100px 5vw;
  margin-top: 60px;
}
.clients-marquee-wrap {
  position: relative; overflow: hidden;
  margin-top: 60px;
}
.clients-marquee-wrap::before,
.clients-marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
}
.clients-marquee-wrap::before {
  left: 0; background: linear-gradient(to right, var(--gray-100), transparent);
}
.clients-marquee-wrap::after {
  right: 0; background: linear-gradient(to left, var(--gray-100), transparent);
}
.clients-marquee {
  display: flex; gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.clients-marquee:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.client-logo {
  padding: 30px 50px;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--gray-200);
  min-width: 180px;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 500;
  color: var(--gray-400);
  transition: color 0.3s;
  white-space: nowrap;
}
.client-logo:hover { color: var(--navy); }

/* ===== BUSINESS CENTERS ===== */
#centers {
  background: var(--white);
}
.centers-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 3px;
  margin-top: 60px;
}
.center-card {
  position: relative; overflow: hidden;
  cursor: none;
}
.center-card:first-child { grid-row: span 2; }
.center-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--transition);
  filter: brightness(0.7);
}
.center-card:hover img { transform: scale(1.07); filter: brightness(0.5); }
.center-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,0.85) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px;
}
.center-tag {
  font-size: 10px; font-weight: 600;
  color: var(--gold); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 6px;
}
.center-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400; color: white;
}
.center-icon {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  opacity: 0; transform: translateY(-10px);
  transition: opacity 0.3s, transform 0.3s;
}
.center-card:hover .center-icon { opacity: 1; transform: translateY(0); }

/* ===== CONTACT ===== */
#contact {
  background: var(--navy);
  position: relative; overflow: hidden;
}
#contact::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 100px; align-items: start;
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
}
.contact-info-block { margin-top: 48px; }
.contact-info-item {
  display: flex; gap: 20px; align-items: flex-start;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-info-item:last-child { border: none; }
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--gold);
}
.contact-info-label {
  font-size: 10px; font-weight: 600;
  color: var(--gold); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 6px;
}
.contact-info-value {
  font-size: 14px; color: rgba(255,255,255,0.8);
  line-height: 1.6; text-decoration: none;
  transition: color 0.3s;
}
a.contact-info-value:hover { color: var(--gold-light); }
.contact-social {
  display: flex; gap: 12px; margin-top: 40px;
}
.social-btn {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px; text-decoration: none; cursor: none;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.social-btn:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 20px; padding: 14px 28px;
  background: #25D366;
  color: white; font-size: 13px; font-weight: 600;
  text-decoration: none; cursor: none;
  transition: opacity 0.3s, transform 0.3s;
}
.wa-btn:hover { opacity: 0.9; transform: translateY(-2px); }

/* Contact Form */
.contact-form { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 10px; font-weight: 600;
  color: var(--gold); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: white; font-family: var(--font-body);
  font-size: 14px; outline: none;
  transition: border-color 0.3s, background 0.3s;
  resize: none; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select option { background: var(--navy); color: white; }
.form-group textarea { height: 120px; }
.btn-submit {
  width: 100%; padding: 18px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-family: var(--font-body); font-size: 12px;
  font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  border: none; cursor: none;
  position: relative; overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.btn-submit::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.25);
  transform: translateX(-110%) skewX(-15deg);
  transition: transform 0.5s var(--transition);
}
.btn-submit:hover::after { transform: translateX(110%) skewX(-15deg); }
.btn-submit:hover { box-shadow: 0 12px 40px rgba(201,168,76,0.5); transform: translateY(-2px); }

/* Map embed */
.map-wrap {
  margin-top: 24px; height: 200px; overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
  filter: grayscale(0.6) brightness(0.8);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ===== FOOTER ===== */
footer {
  background: #060F1C;
  padding: 60px 5vw 30px;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  max-width: 1300px; margin: 0 auto;
}
.footer-brand img { height: 40px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-brand p {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.4); line-height: 1.8; max-width: 280px;
}
.footer-col h4 {
  font-size: 10px; font-weight: 700;
  color: var(--gold); letter-spacing: 2.5px;
  text-transform: uppercase; margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 13px; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; max-width: 1300px; margin: 0 auto;
}
.footer-copy {
  font-size: 12px; color: rgba(255,255,255,0.25);
}
.footer-gold {
  font-size: 12px; color: var(--gold); letter-spacing: 1px;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Gold line decorator */
.gold-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0 32px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-image-panel { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .centers-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .centers-grid .center-card:first-child { grid-row: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .centers-grid { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-header { flex-direction: column; gap: 16px; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}
