
/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
  --sky-blue:         #28387e;
  --sky-blue-light:   #3a52a8;
  --sky-blue-deep:    #1a2558;
  --sky-accent:       #4fc3f7;
  --sky-accent2:      #00e5ff;
  --sky-gold:         #f0c040;
  --white:            #ffffff;
  --off-white:        #f0f4ff;
  --text-muted:       #8a9bc0;
  --glass-bg:         rgba(255,255,255,0.06);
  --glass-border:     rgba(255,255,255,0.12);
  --glass-hover:      rgba(255,255,255,0.10);
  --dark-bg:          #080e22;
  --dark-mid:         #0d1630;
  --dark-card:        #111c3a;
  --brand-blue:       #28387e;
  --brand-blue-dark:  #1a2656;
  --brand-blue-light: #3a4fa0;
  --accent-cyan:      #00d4ff;
  --accent-green:     #00ff88;
  --dark:             #0a0e1a;
  --off-white-1:      #f0f2f8;
  --gray-100:         #e8eaf0;
  --gray-600:         #6b7280;
  --font-mono:        'Space Mono', monospace;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark-bg);
  color: var(--white);
  overflow-x: hidden;
  cursor: default;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--sky-blue); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--sky-blue-light); }

/* ============================================================
   ANIMATED BACKGROUND
   ============================================================ */
.bg-canvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none; overflow: hidden;
}
.bg-canvas::before {
  content: ''; position: absolute;
  width: 900px; height: 900px; top: -200px; right: -200px;
  background: radial-gradient(circle, rgba(40,56,126,0.45) 0%, transparent 70%);
  animation: nebula-drift 18s ease-in-out infinite alternate;
  border-radius: 50%;
}
.bg-canvas::after {
  content: ''; position: absolute;
  width: 700px; height: 700px; bottom: -100px; left: -150px;
  background: radial-gradient(circle, rgba(79,195,247,0.12) 0%, transparent 70%);
  animation: nebula-drift 24s ease-in-out infinite alternate-reverse;
  border-radius: 50%;
}
@keyframes nebula-drift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(60px,40px) scale(1.12); }
}
.molecule-field { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.molecule {
  position: absolute; width: 6px; height: 6px;
  border-radius: 50%; background: var(--sky-accent); opacity: 0.15;
  animation: float-molecule linear infinite;
}
.molecule::before, .molecule::after {
  content: ''; position: absolute; width: 4px; height: 4px;
  border-radius: 50%; background: inherit; opacity: 0.7;
}
.molecule::before { top: -18px; left: 10px; }
.molecule::after  { top: 10px; left: 18px; }
@keyframes float-molecule {
  0%   { transform: translateY(110vh) rotate(0deg);   opacity: 0; }
  10%  { opacity: 0.15; }
  90%  { opacity: 0.15; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 0 5%; height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(8,14,34,0.7);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.4s ease;
}
nav.scrolled { height: 66px; background: rgba(8,14,34,0.92); }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 48px; width: 48px; border-radius: 8px; object-fit: contain; background: var(--sky-blue); padding: 4px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text span:first-child { font-family: 'Bebas Neue', sans-serif; font-size: clamp(14px,3.5vw,22px); letter-spacing: clamp(1px,0.5vw,3px); color: var(--white); white-space: nowrap; }
.nav-logo-text span:last-child  { font-size: clamp(8px,1.8vw,9px); letter-spacing: clamp(1px,0.4vw,2.5px); color: var(--sky-accent); text-transform: uppercase; font-weight: 500; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { color: rgba(255,255,255,0.75); 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: 1.5px; background: var(--sky-accent); transition: width 0.3s ease; }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--sky-accent); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-btn { background: var(--glass-bg); border: 1px solid var(--glass-border); color: var(--text-muted); padding: 7px 16px; border-radius: 20px; font-size: 12px; font-weight: 600; letter-spacing: 1px; cursor: pointer; transition: all 0.3s; font-family: 'DM Sans', sans-serif; white-space: nowrap; }
.lang-btn:hover { background: var(--glass-hover); color: var(--white); border-color: var(--sky-accent); }
.nav-cta { background: linear-gradient(135deg, var(--sky-blue-light), var(--sky-blue)); color: var(--white); padding: 10px 22px; border-radius: 6px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; transition: all 0.3s; border: 1px solid rgba(255,255,255,0.1); white-space: nowrap; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(40,56,126,0.6); }
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; cursor: pointer; padding: 4px; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 8px; flex-shrink: 0; }
.hamburger span { display: block; width: 100%; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: flex; flex-direction: column; position: fixed; top: 80px; left: 0; width: 100%; background: rgba(8,14,34,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); z-index: 999; padding: 24px 5% 32px; transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease; }
.mobile-menu.open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: all; }
.mobile-menu a { color: rgba(255,255,255,0.75); font-size: 18px; font-weight: 600; letter-spacing: 1px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.3s; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--sky-accent); }
.mobile-menu-bottom { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.mobile-menu-bottom .lang-btn, .mobile-menu-bottom .nav-cta { flex: 1; text-align: center; }

/* ============================================================
   SHARED UTILITIES
   ============================================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 5%; }
.reveal { opacity: 1; transform: none; transition: opacity 0.6s ease, transform 0.6s ease; }
body.js-ready .reveal { opacity: 0; transform: translateY(24px); }
body.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
@keyframes fade-up { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 0 rgba(79,195,247,0.6); } 50% { box-shadow: 0 0 0 8px rgba(79,195,247,0); } }

/* ============================================================
   PAGE HERO BANNER
   ============================================================ */
.contact-hero {
  position: relative; min-height: 52vh;
  display: flex; align-items: flex-end;
  z-index: 1; overflow: hidden;
}
.contact-hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,14,34,0.5) 0%, rgba(8,14,34,0.95) 100%),
    url('./assets/images/about_factory.png') center/cover no-repeat;
  z-index: 0;
}
.contact-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(40,56,126,0.3) 0%, transparent 60%);
  z-index: 1;
}
.contact-hero-scanline {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--sky-accent) 50%, transparent 100%);
  z-index: 2; opacity: 0.5;
  animation: scan-move 4s ease-in-out infinite alternate;
}
@keyframes scan-move { 0% { transform: scaleX(0.3) translateX(-60%); } 100% { transform: scaleX(1) translateX(0); } }
.contact-hero-content {
  position: relative; z-index: 3;
  padding: 0 5% 64px; padding-top: 150px; width: 100%;
}
.ch-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255,255,255,0.4); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 24px; animation: fade-up 0.7s ease forwards;
}
.ch-breadcrumb span { color: var(--sky-accent); }
.ch-breadcrumb svg { width: 12px; height: 12px; stroke: rgba(255,255,255,0.3); fill: none; }
.ch-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px); padding: 8px 18px; border-radius: 30px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--sky-accent); margin-bottom: 24px;
  animation: fade-up 0.8s 0.1s ease forwards; opacity: 0;
}
.ch-dot { width: 7px; height: 7px; background: var(--sky-accent); border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; }
.ch-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 9vw, 110px); line-height: 0.92; letter-spacing: 2px;
  animation: fade-up 0.8s 0.25s ease forwards; opacity: 0;
}
.ch-title .line1 { display: block; color: var(--white); }
.ch-title .line2 {
  display: block;
  background: linear-gradient(135deg, var(--sky-accent), var(--sky-blue-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ch-sub {
  font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.55);
  max-width: 520px; margin-top: 20px; font-weight: 300;
  animation: fade-up 0.8s 0.4s ease forwards; opacity: 0;
}

/* ============================================================
   MAIN CONTACT SECTION — dark split layout
   ============================================================ */
.contact-main {
  background: var(--dark-mid); position: relative; z-index: 1;
  padding: 100px 0; overflow: hidden;
}
/* bubbles behind the section */
.contact-bubbles {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden; z-index: 0;
}
.bubble {
  position: absolute; bottom: -80px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(0,212,255,0.13), rgba(0,212,255,0.02));
  border: 1px solid rgba(0,212,255,0.07);
  animation: riseBubble linear infinite;
}
@keyframes riseBubble {
  0%   { transform: translateY(0) scale(1);        opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-110vh) scale(0.5); opacity: 0; }
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 64px; align-items: start;
  position: relative; z-index: 1;
}

/* ── LEFT PANEL — info ── */
.contact-info-panel {}
.ci-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--sky-accent); margin-bottom: 14px;
}
.ci-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 58px); line-height: 1; letter-spacing: 1px;
  margin-bottom: 20px;
}
.ci-title span {
  background: linear-gradient(135deg, var(--sky-accent), var(--sky-blue-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ci-body {
  font-size: 15px; line-height: 1.8;
  color: rgba(255,255,255,0.55); margin-bottom: 48px;
}
/* Contact info blocks */
.ci-blocks { display: flex; flex-direction: column; gap: 20px; margin-bottom: 48px; }
.ci-block {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 14px; padding: 20px 22px;
  transition: all 0.3s;
}
.ci-block:hover { background: rgba(40,56,126,0.14); border-color: rgba(79,195,247,0.2); transform: translateX(4px); }
.ci-block-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: rgba(79,195,247,0.1); border: 1px solid rgba(79,195,247,0.2);
  display: flex; align-items: center; justify-content: center;
}
.ci-block-icon svg { width: 20px; height: 20px; stroke: var(--sky-accent); fill: none; stroke-width: 1.5; }
.ci-block-text {}
.ci-block-label {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--sky-accent); margin-bottom: 4px; display: block;
}
.ci-block-value { font-size: 14px; color: var(--white); font-weight: 500; line-height: 1.5; }
.ci-block-note  { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }
/* Social links */
.ci-socials-label {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; display: block;
}
.ci-socials { display: flex; gap: 12px; }
.ci-social {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.ci-social:hover { background: var(--sky-blue); border-color: var(--sky-blue); transform: translateY(-2px); }
.ci-social svg { width: 17px; height: 17px; stroke: rgba(255,255,255,0.65); fill: none; stroke-width: 1.5; }
/* Inquiry type badges */
.ci-types-label {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; display: block; margin-top: 36px;
}
.ci-types { display: flex; flex-wrap: wrap; gap: 8px; }
.ci-type-badge {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  color: rgba(255,255,255,0.6); padding: 6px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  transition: all 0.3s;
}
.ci-type-badge:hover { background: rgba(79,195,247,0.1); border-color: rgba(79,195,247,0.3); color: var(--sky-accent); }

/* ── RIGHT PANEL — form ── */
.contact-form-panel {}
.form-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 20px; padding: 48px 44px;
  position: relative; overflow: hidden;
}
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sky-blue), var(--sky-accent), var(--sky-blue-light));
}
.form-header { margin-bottom: 36px; }
.form-header-eyebrow {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--sky-accent); display: block; margin-bottom: 8px;
}
.form-header h3 {
  font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: var(--white);
}
.form-header p { font-size: 14px; color: rgba(255,255,255,0.45); margin-top: 6px; line-height: 1.6; }
/* Inquiry type selector */
.form-type-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.form-type-btn {
  background: transparent; border: 1px solid var(--glass-border);
  color: rgba(255,255,255,0.5); padding: 7px 16px; border-radius: 20px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  cursor: pointer; transition: all 0.25s; font-family: 'DM Sans', sans-serif;
}
.form-type-btn:hover { border-color: rgba(79,195,247,0.4); color: rgba(255,255,255,0.8); }
.form-type-btn.active {
  background: var(--sky-blue); border-color: var(--sky-blue); color: var(--white);
}
/* Form rows */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group:last-of-type { margin-bottom: 0; }
.form-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.form-label span { color: var(--sky-accent); margin-left: 2px; }
.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  padding: 13px 16px; outline: none;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(79,195,247,0.5);
  background: rgba(79,195,247,0.04);
}
.form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-select option { background: var(--dark-mid); color: var(--white); }
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 24px 0; }
/* Submit button */
.form-submit {
  width: 100%; padding: 16px 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--sky-blue-light), var(--sky-blue));
  color: var(--white); font-size: 15px; font-weight: 700;
  letter-spacing: 1px; border: none; cursor: pointer;
  transition: all 0.3s; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 24px;
}
.form-submit::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}
.form-submit:hover::before { left: 100%; }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(40,56,126,0.7); }
.form-submit svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.form-note { font-size: 11px; color: rgba(255,255,255,0.25); text-align: center; margin-top: 14px; line-height: 1.6; }
/* Success state */
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.visible { display: block; }
.success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(0,255,136,0.1); border: 2px solid rgba(0,255,136,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  animation: success-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes success-pop { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.success-icon svg { width: 32px; height: 32px; stroke: var(--accent-green); fill: none; stroke-width: 2.5; }
.success-title { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.success-body { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 320px; margin: 0 auto; }

/* ============================================================
   OFFICES / LOCATIONS — Light section
   ============================================================ */
.locations-section {
  background: var(--off-white-1); position: relative; z-index: 1;
  padding: 100px 0;
}
.loc-header { text-align: center; margin-bottom: 64px; }
.loc-eyebrow {
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--brand-blue-light); margin-bottom: 12px; display: block;
}
.loc-title { font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.loc-subtitle { font-size: 16px; color: var(--gray-600); max-width: 520px; margin: 0 auto; }
.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.loc-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: 16px; padding: 32px 28px; position: relative; overflow: hidden;
  transition: all 0.3s;
}
.loc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--loc-accent, linear-gradient(90deg, var(--brand-blue), var(--accent-cyan)));
}
.loc-card:hover { border-color: var(--brand-blue-light); box-shadow: 0 8px 30px rgba(40,56,126,0.08); transform: translateY(-4px); }
.loc-flag { font-size: 36px; margin-bottom: 16px; line-height: 1; display: block; }
.loc-city { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.loc-country { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--brand-blue-light); margin-bottom: 20px; display: block; }
.loc-status { display: inline-block; padding: 4px 12px; border-radius: 20px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.loc-status.hq     { background: rgba(40,56,126,0.08); color: var(--brand-blue); border: 1px solid rgba(40,56,126,0.2); }
.loc-status.active { background: rgba(0,184,96,0.08); color: #00b860; border: 1px solid rgba(0,184,96,0.25); }
.loc-status.target { background: rgba(180,140,20,0.08); color: #9a7a10; border: 1px solid rgba(180,140,20,0.2); }
.loc-detail { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.loc-detail svg { width: 15px; height: 15px; stroke: var(--brand-blue-light); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 2px; }
.loc-detail span { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* ============================================================
   FAQ SECTION — Dark
   ============================================================ */
.faq-section {
  background: var(--dark-bg); position: relative; z-index: 1;
  padding: 100px 0;
}
.faq-bg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(40,56,126,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.faq-header { text-align: center; margin-bottom: 64px; position: relative; z-index: 1; }
.faq-eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--sky-accent); margin-bottom: 14px; }
.faq-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(38px,6vw,68px); line-height: 1; }
.faq-title span { background: linear-gradient(135deg, var(--sky-accent), var(--sky-blue-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; z-index: 1; max-width: 980px; margin: 0 auto; }
.faq-item {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 14px; overflow: hidden; transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(79,195,247,0.25); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; cursor: pointer; gap: 16px;
  transition: background 0.3s;
}
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-q-text { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 600; color: var(--white); line-height: 1.4; }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: rgba(79,195,247,0.08); border: 1px solid rgba(79,195,247,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.faq-item.open .faq-icon { background: var(--sky-blue); border-color: var(--sky-blue); transform: rotate(45deg); }
.faq-icon svg { width: 14px; height: 14px; stroke: var(--sky-accent); fill: none; stroke-width: 2; }
.faq-item.open .faq-icon svg { stroke: var(--white); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 22px; }
.faq-answer p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.75; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); padding: 72px 0 0; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand h3 { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 300px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--sky-accent); margin-bottom: 20px; }
.footer-col a, .footer-contact p { display: block; font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 10px; transition: color 0.3s; }
.footer-col a:hover { color: var(--white); }
.footer-bar { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; flex-wrap: wrap; gap: 16px; }
.footer-bar span { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-bar-socials { display: flex; gap: 16px; }
.footer-bar-socials a { width: 36px; height: 36px; border-radius: 8px; background: var(--glass-bg); border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.footer-bar-socials a:hover { background: var(--sky-blue); border-color: var(--sky-blue); }
.footer-bar-socials svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 1.5; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .contact-grid     { grid-template-columns: 1fr; gap: 48px; }
  .locations-grid   { grid-template-columns: repeat(2, 1fr); }
  .faq-grid         { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .form-row  { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .locations-grid { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 32px; }
  .form-card      { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .form-type-row { flex-direction: column; }
  .form-type-btn { text-align: center; }
}