/* ================================================================
   ATTEST XPRESS — Professional Corporate Design System
   Inspired by top law firms & consulting agencies
   Clean, authoritative, lots of whitespace
   ================================================================ */

/* ── CSS Custom Properties ── */
:root {
  /* Core Palette — High Contrast */
  --charcoal: #0F172A;
  --charcoal-light: #1E293B;
  --charcoal-mid: #1a2a3a;
  --charcoal-bg: #1a2a3a;
  --gold: #C9A84C;
  --gold-hover: #d4b55a;
  --gold-muted: #b89b45;
  --gold-light: rgba(201, 168, 76, 0.08);
  --gold-border: rgba(201, 168, 76, 0.25);
  --blue: #2563EB;
  --blue-light: rgba(37, 99, 235, 0.08);
  --blue-border: rgba(37, 99, 235, 0.15);

  /* Neutrals — Enhanced Contrast */
  --text: #334155;
  --text-secondary: #475569;
  --muted: #64748B;
  --subtle: #94A3B8;
  --border: #e2e8f0;
  --border-light: #edf2f7;
  --bg-light: #f7f8fa;
  --bg-warm: #fafaf8;
  --white: #ffffff;

  /* Dark surface text */
  --text-on-dark: #FFFFFF;
  --text-on-dark-secondary: #E2E8F0;
  --text-on-dark-tertiary: #CBD5E1;
  --text-on-dark-muted: rgba(255, 255, 255, 0.6);

  /* Functional */
  --green: #25D366;
  --green-dark: #128C7E;
  --red: #c53030;

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --section-padding-sm: 64px 0;
  --container-max: 1140px;
  --container-padding: 0 24px;

  /* Shadows — very subtle for corporate */
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.1);

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-pill: 100px;
  --radius-full: 50%;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s var(--ease);
  --transition-base: 0.25s var(--ease);
  --transition-slow: 0.4s var(--ease);
}

/* ── Reset ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

/* ── Global Contrast Enforcement ── */
/* RULE 1: Light backgrounds → always dark text */
.section h1, .section h2, .section h3, .section h4, .section h5, .section h6,
.section--alt h1, .section--alt h2, .section--alt h3, .section--alt h4,
.section--warm h1, .section--warm h2, .section--warm h3, .section--warm h4 {
  color: var(--charcoal);
}

.section p, .section li,
.section--alt p, .section--alt li,
.section--warm p, .section--warm li {
  color: var(--text);
}

/* RULE 2: Dark section backgrounds → always light text */
.section--dark h1, .section--dark h2, .section--dark h3,
.section--dark h4, .section--dark h5, .section--dark h6 {
  color: var(--text-on-dark) !important;
}

.section--dark p, .section--dark li, .section--dark td {
  color: var(--text-on-dark-muted);
}

.section--dark a:not(.btn) {
  color: var(--gold);
}

/* RULE 3: Dark-background COMPONENTS → auto-contrast headings */
.cta-banner h1, .cta-banner h2, .cta-banner h3, .cta-banner h4,
.form-box h1, .form-box h2, .form-box h3, .form-box h4,
.sidebar-widget--dark h1, .sidebar-widget--dark h2, .sidebar-widget--dark h3, .sidebar-widget--dark h4,
.service-cta h1, .service-cta h2, .service-cta h3, .service-cta h4,
.why-panel h1, .why-panel h2, .why-panel h3, .why-panel h4 {
  color: var(--text-on-dark) !important;
}

/* RULE 4: Dark-background COMPONENTS → auto-contrast body text */
.cta-banner p, .cta-banner li,
.form-box > p,
.sidebar-widget--dark p, .sidebar-widget--dark li,
.service-cta p, .service-cta li,
.why-panel p {
  color: var(--text-on-dark-muted) !important;
}

/* RULE 5: Dark-container links → gold */
.cta-banner a:not(.btn),
.form-box a:not(.btn),
.sidebar-widget--dark a:not(.btn),
.service-cta a:not(.btn) {
  color: var(--gold);
}

/* RULE 6: Buttons always retain explicit text colors */
.btn-whatsapp, .btn-whatsapp:hover,
.btn-primary, .btn-primary:hover,
.btn-gold, .btn-gold:hover {
  color: var(--white) !important;
}

/* RULE 7: Outline button adapts to dark containers */
.cta-banner .btn-outline,
.service-cta .btn-outline,
.section--dark .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.cta-banner .btn-outline:hover,
.service-cta .btn-outline:hover,
.section--dark .btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover { color: var(--gold-hover); }
ul, ol { list-style: none; }
input, textarea, select, button { font-family: var(--font-body); font-size: inherit; }

/* ── Layout ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
  width: 100%;
}

.section {
  padding: var(--section-padding);
}

.section--alt {
  padding: var(--section-padding);
  background: var(--bg-light);
}

.section--dark {
  padding: var(--section-padding);
  background: var(--charcoal-bg);
  color: var(--text-on-dark);
}

.section--warm {
  padding: var(--section-padding);
  background: var(--bg-warm);
}

/* ── Section Headers ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section--dark .section-badge {
  color: var(--gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 700;
}

.section--dark .section-title {
  color: var(--text-on-dark) !important;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}

.section--dark .section-subtitle {
  color: var(--text-on-dark-muted);
}

.section-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 0;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--charcoal);
  font-weight: 700;
}

p {
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }

.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-white { color: var(--white); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  font-family: var(--font-body);
  line-height: 1;
  letter-spacing: 0.01em;
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--charcoal-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
  background: var(--bg-light);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}

.btn-lg { padding: 16px 36px; font-size: 0.9rem; }
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }
.btn-block { width: 100%; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.navbar.scrolled {
  height: 64px;
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.nav-logo-text {
  color: var(--charcoal);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.1;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.nav-logo-text span {
  color: var(--gold);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  gap: 0;
  align-items: center;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 16px;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.01em;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--charcoal);
}

.nav-menu > li > a .dropdown-arrow {
  width: 10px;
  height: 10px;
  transition: transform var(--transition-fast);
  opacity: 0.5;
}

.nav-menu > li:hover > a .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  padding: 28px;
  transition: all var(--transition-base);
  min-width: 680px;
  z-index: 1001;
}

.nav-menu > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.dropdown-col-title {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 12px;
  padding: 0 12px;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--text);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.dropdown-link:hover {
  background: var(--bg-light);
  color: var(--charcoal);
}

.dropdown-link-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  background: var(--bg-light);
}

.dropdown-link-text {
  display: flex;
  flex-direction: column;
}

.dropdown-link-sub {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--muted);
}

.nav-dropdown--sm {
  min-width: 250px;
  padding: 16px;
}

.nav-dropdown--sm .dropdown-grid {
  grid-template-columns: 1fr;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-call {
  color: var(--muted);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-call:hover { color: var(--charcoal); }

.nav-wa {
  background: var(--charcoal);
  color: var(--white);
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-wa:hover {
  background: var(--charcoal-light);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 32px 24px;
  z-index: 999;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-base);
  border-top: 1px solid var(--border);
}

.mobile-menu.active {
  display: block;
  transform: translateX(0);
}

.mobile-menu-section {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu-title {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 14px;
}

.mobile-menu a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition-fast);
}

.mobile-menu a:hover { color: var(--charcoal); }

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--white);
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--border-light);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.hero-badge {
  display: inline-block;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--gold);
  margin-right: 12px;
  vertical-align: middle;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.hstat {
  flex: 1;
  padding-right: 32px;
}

.hstat:last-child { padding-right: 0; }

.hstat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hstat-lbl {
  color: var(--muted);
  font-size: 0.75rem;
  margin-top: 6px;
  letter-spacing: 0.02em;
}

/* Hero Card */
.hero-card {
  background: var(--charcoal-bg);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.hero-card-title {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
}

.hero-card-title span {
  background: var(--gold);
  color: var(--charcoal);
  padding: 3px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.country-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.country-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition-fast);
  cursor: default;
}

.country-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}

.country-flag { font-size: 1.3rem; }
.country-name { color: var(--white); font-size: 0.82rem; font-weight: 600; }
.country-sub-text { color: rgba(255,255,255,0.4); font-size: 0.68rem; }

.hero-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 20px 0;
}

.hero-contact-row { display: flex; gap: 10px; }

.hcontact {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition-fast);
}

.hcontact:hover { background: rgba(255,255,255,0.1); }
.hcontact-icon { font-size: 1rem; }
.hcontact-text { color: rgba(255,255,255,0.5); font-size: 0.68rem; }
.hcontact-val { color: var(--white); font-size: 0.78rem; font-weight: 600; }

/* ── Trust Bar ── */
.trustbar {
  background: var(--bg-light);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border-light);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.trust-icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

/* ── Service Cards Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: var(--container-max);
  margin: 0 auto;
}

.scard {
  background: var(--white);
  padding: 36px 32px;
  transition: all var(--transition-base);
  position: relative;
  text-decoration: none;
  display: block;
  color: inherit;
}

.scard:hover {
  background: var(--bg-light);
  color: inherit;
}

.scard-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
  background: var(--bg-light);
}

.scard h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--charcoal);
  font-family: var(--font-body);
}

.scard p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

.scard-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* ── Process ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: var(--container-max);
  margin: 0 auto;
}

.pstep {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.pstep::after {
  content: '';
  position: absolute;
  top: 24px;
  right: 0;
  width: 1px;
  height: 40px;
  background: var(--border);
}

.pstep:last-child::after { display: none; }

.pstep-num {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  transition: all var(--transition-base);
}

.pstep:hover .pstep-num {
  background: var(--gold);
  color: var(--white);
}

.pstep h4 {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--charcoal);
  font-family: var(--font-body);
}

.pstep p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Visa Cards ── */
.visa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.vcard {
  background: rgba(255,255,255,0.04);
  padding: 28px 24px;
  transition: all var(--transition-base);
  text-decoration: none;
  display: block;
}

.vcard:hover { background: rgba(255,255,255,0.08); }

.vcard-flag { font-size: 1.8rem; margin-bottom: 14px; }
.vcard h4 { color: var(--white); font-size: 0.92rem; font-weight: 600; margin-bottom: 6px; font-family: var(--font-body); }
.vcard p { color: rgba(255,255,255,0.4); font-size: 0.78rem; line-height: 1.6; }

/* ── Why Choose Us ── */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}

.witem {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}

.witem:last-child { border-bottom: none; }

.witem-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
}

.witem h4 { font-size: 0.88rem; font-weight: 600; margin-bottom: 4px; font-family: var(--font-body); }
.witem p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

.why-panel {
  background: var(--charcoal-bg);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wpanel-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.wpanel-item:last-child { border-bottom: none; }
.wpanel-emoji { font-size: 1.1rem; }
.wpanel-text { color: var(--text-on-dark); font-size: 0.85rem; font-weight: 600; }
.wpanel-sub { color: rgba(255,255,255,0.5); font-size: 0.72rem; margin-top: 2px; }

/* ── Testimonials ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.tcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition-base);
}

.tcard:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-md);
}

.tcard-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 2px; }

.tcard-text {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.tcard-author { display: flex; align-items: center; gap: 12px; }

.tcard-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.tcard-name { font-weight: 600; font-size: 0.85rem; color: var(--charcoal); }
.tcard-loc { color: var(--muted); font-size: 0.72rem; margin-top: 2px; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--charcoal-bg);
  padding: 80px 24px;
  text-align: center;
  position: relative;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  color: var(--text-on-dark) !important;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--text-on-dark-secondary) !important;
  font-size: 0.95rem;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Contact ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}

.cdetail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

.cdetail:hover { color: inherit; }
.cdetail:last-child { border-bottom: none; }

.cdetail-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border: 1px solid var(--border);
}

.ci-wa { border-color: var(--green); color: var(--green); }
.ci-ph { border-color: var(--blue); color: var(--blue); }
.ci-em { border-color: var(--red); color: var(--red); }
.ci-ad { border-color: var(--gold); color: var(--gold); }

.cdetail-label { color: var(--muted); font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
.cdetail-val { color: var(--charcoal); font-weight: 600; font-size: 0.88rem; }
.cdetail-sub { color: var(--muted); font-size: 0.76rem; margin-top: 2px; }

/* ── Form ── */
.form-box {
  background: var(--charcoal-bg);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.form-box h3 {
  font-family: var(--font-heading);
  color: var(--text-on-dark) !important;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.form-box > p {
  color: var(--text-on-dark-secondary) !important;
  font-size: 0.82rem;
  margin-bottom: 28px;
}

.fg { margin-bottom: 16px; }

.fg label {
  display: block;
  color: var(--text-on-dark-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.fg input, .fg textarea, .fg select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.4); }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--gold); }
.fg select option { background: var(--charcoal); color: var(--white); }
.fg textarea { resize: vertical; min-height: 90px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 0.02em;
}

.form-submit:hover {
  background: var(--gold-hover);
}

/* Light form */
.form-box--light {
  background: var(--white);
  border: 1px solid var(--border);
}

.form-box--light h3 { color: var(--charcoal); }
.form-box--light > p { color: var(--muted); }
.form-box--light .fg label { color: var(--text-secondary); }
.form-box--light .fg input,
.form-box--light .fg textarea,
.form-box--light .fg select { background: var(--bg-light); border-color: var(--border); color: var(--text); }
.form-box--light .fg input::placeholder,
.form-box--light .fg textarea::placeholder { color: var(--subtle); }
.form-box--light .fg input:focus,
.form-box--light .fg textarea:focus,
.form-box--light .fg select:focus { border-color: var(--gold); }
.form-box--light .fg select option { background: var(--white); color: var(--text); }

/* ── Footer ── */
.site-footer {
  background: var(--charcoal-bg);
  padding: 64px 24px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo-img { width: 36px; height: 36px; object-fit: contain; }
.footer-logo-text { color: var(--white); font-weight: 700; font-size: 1rem; line-height: 1.1; font-family: var(--font-heading); }
.footer-logo-text span { color: var(--gold); }

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  color: rgba(255,255,255,0.4);
}

.footer-social:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 18px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.8rem; transition: color var(--transition-fast); }
.footer-col ul a:hover { color: var(--gold); }

.footer-disclaimer {
  max-width: var(--container-max);
  margin: 24px auto 0;
  padding: 20px 0;
}

.footer-disclaimer p {
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  line-height: 1.7;
}

.footer-disclaimer strong { color: rgba(255,255,255,0.45); }

.footer-bottom {
  max-width: var(--container-max);
  margin: 16px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.72rem; }
.footer-bottom strong { color: var(--gold); }

/* ── Floating CTA ── */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fab {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-fast);
}

.fab:hover { transform: scale(1.08); }
.fab svg { width: 24px; height: 24px; }

.fab--wa {
  background: var(--green);
  animation: waPulse 3s ease infinite;
}

.fab--wa svg { fill: var(--white); }

.fab--call {
  background: var(--charcoal);
}

.fab--call svg { stroke: var(--white); fill: none; stroke-width: 2; }

@keyframes waPulse {
  0%, 100% { box-shadow: var(--shadow-lg); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
}

/* ── Sticky Mobile Bar ── */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 997;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 8px 12px;
  gap: 8px;
}

.sticky-mobile-bar a {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.sticky-mobile-bar .smb-call {
  background: var(--bg-light);
  color: var(--charcoal);
  border: 1px solid var(--border);
}

.sticky-mobile-bar .smb-wa {
  background: var(--green);
  color: var(--white);
}

/* ── Exit Popup ── */
.exit-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.exit-overlay.active { display: flex; }

.exit-popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: popupSlide 0.3s var(--ease);
}

@keyframes popupSlide {
  from { transform: translateY(16px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.exit-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--bg-light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--muted);
  transition: all var(--transition-fast);
}

.exit-close:hover { background: var(--border); color: var(--text); }

.exit-popup-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}

.exit-popup h3 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 10px; }
.exit-popup p { color: var(--muted); font-size: 0.88rem; margin-bottom: 24px; line-height: 1.65; }

.exit-form { display: flex; gap: 8px; }

.exit-form input {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.exit-form input:focus { border-color: var(--gold); }

/* ── Breadcrumb ── */
.breadcrumb {
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--blue); text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; color: var(--charcoal); }
.breadcrumb span { color: var(--text-secondary); }
.breadcrumb-sep { color: var(--subtle); font-size: 0.65rem; }

/* On dark backgrounds */
.section--dark .breadcrumb { color: var(--text-on-dark-muted); }
.section--dark .breadcrumb a { color: var(--gold); }
.section--dark .breadcrumb span { color: var(--text-on-dark-secondary); }

.breadcrumb--white { color: rgba(255,255,255,0.5); }
.breadcrumb--white a { color: rgba(255,255,255,0.7); }
.breadcrumb--white .breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* ── Disclaimer ── */
.disclaimer-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 24px;
  text-align: center;
}

.disclaimer-bar p { font-size: 0.7rem; color: var(--muted); line-height: 1.5; }
.disclaimer-bar strong { color: var(--text-secondary); font-weight: 600; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ── Utility ── */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .nav-menu { display: none; }
  .nav-call { display: none; }
  .hamburger { display: flex; }
  .navbar { padding: 0 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pstep::after { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .visa-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .floating-cta { display: none; }
  .sticky-mobile-bar { display: flex; }
}

@media (max-width: 600px) {
  .section { padding: var(--section-padding-sm); }
  .section--alt { padding: var(--section-padding-sm); }
  .section--dark { padding: var(--section-padding-sm); }
  .section--warm { padding: var(--section-padding-sm); }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
  .hstat { flex: 0 0 50%; margin-bottom: 16px; }
  .trustbar { gap: 20px; }
  .visa-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-box { padding: 28px 22px; }
  .fg-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 64px 24px; }
  .hero { padding: 100px 0 60px; }
  .exit-popup { padding: 36px 24px; }
  .exit-form { flex-direction: column; }
  body { padding-bottom: 64px; }
  .container { padding: 0 20px; }
}
