/* ============================================================
   EZVZA – Main Stylesheet
   ezvza.com | Attorney-Backed Immigration & Visa Services
   ============================================================ */

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

:root {
  --navy:       #0a1628;
  --navy-mid:   #0f1f3a;
  --gold:       #c9a84c;
  --gold-light: #e8c97a;
  --gold-dim:   rgba(201,168,76,0.15);
  --cream:      #f9f6f0;
  --white:      #ffffff;
  --text:       #1a1a2e;
  --muted:      #6b7280;
  --border:     #e5e0d5;
  --radius:     8px;
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.gold-text  { color: var(--gold); }
.gold       { color: var(--gold); }
.gold-light { color: var(--gold-light); }
.white      { color: var(--white); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(8px);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  transition: box-shadow var(--transition);
}

#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.4); }

.logo {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
}
.logo span { color: var(--white); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-toggle {
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.82rem;
  font-family: 'DM Sans', sans-serif;
  transition: all var(--transition);
}
.lang-toggle:hover { background: rgba(255,255,255,0.14); color: var(--white); }

.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--gold-light); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 5% 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  max-width: 660px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.28);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.7rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.4rem;
}

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

.hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  line-height: 1.72;
  margin-bottom: 2.4rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.8rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}

.stat-lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
  letter-spacing: 0.5px;
}

.hero-countries {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  z-index: 2;
}

.country-pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.18);
  color: rgba(255,255,255,0.65);
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.83rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.country-pill.verified {
  border-color: rgba(201,168,76,0.45);
  color: rgba(255,255,255,0.85);
}

.pill-badge {
  font-size: 0.68rem;
  background: rgba(201,168,76,0.14);
  color: var(--gold);
  padding: 2px 8px;
  border-radius: 100px;
  border: 1px solid rgba(201,168,76,0.25);
  margin-left: 4px;
}

.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.dot-muted { background: #444; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

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

/* ============================================================
   SECTIONS – GENERIC
   ============================================================ */
section {
  padding: 5.5rem 5%;
}

.dark-section {
  background: var(--navy);
  padding: 5.5rem 5%;
}

.cream-section {
  background: var(--cream);
  padding: 5.5rem 5%;
}

.section-header {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  color: var(--navy);
  line-height: 1.22;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.72;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  background: var(--white);
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.service-card.featured {
  background: var(--navy);
  border-color: var(--gold);
}

.service-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: rgba(201,168,76,0.12);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.service-card.featured .service-number { color: rgba(201,168,76,0.22); }

.service-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.09);
  border: 1px solid rgba(201,168,76,0.22);
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 0.8rem;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-card.featured h3 { color: var(--gold); }

.service-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

.service-card.featured p { color: rgba(255,255,255,0.55); }

.service-link {
  display: inline-block;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 1.5rem;
  transition: letter-spacing var(--transition);
}
.service-link:hover { letter-spacing: 0.5px; }

/* ============================================================
   WHY EZVZA
   ============================================================ */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.diff-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.diff-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.4rem;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  transition: border-color var(--transition);
}
.diff-item:hover { border-color: rgba(201,168,76,0.28); }

.diff-icon {
  width: 42px; height: 42px;
  background: rgba(201,168,76,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.diff-item h4 {
  font-size: 0.93rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 5px;
}

.diff-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.62;
}

.diff-visual {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 2rem;
}

.diff-visual h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
}

.attorney-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.14);
  border-radius: 6px;
  padding: 1.1rem;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.attorney-avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--navy);
  flex-shrink: 0;
}

.attorney-info { flex: 1; }

.attorney-info h5 {
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.attorney-info span {
  color: rgba(255,255,255,0.38);
  font-size: 0.74rem;
}

.attorney-badge {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.4);
  font-size: 0.68rem;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
}

.attorney-badge.active {
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  border-color: rgba(201,168,76,0.25);
}

.attorney-note {
  margin-top: 1.2rem;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 6px;
  padding: 1rem;
}

.attorney-note p {
  color: rgba(255,255,255,0.48);
  font-size: 0.8rem;
  line-height: 1.6;
}

.attorney-note strong { color: var(--gold); }

/* ============================================================
   UNIVERSITY STEPS
   ============================================================ */
.uni-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.uni-step {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 0 1rem;
}

.uni-num {
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 auto 0.9rem;
}

.uni-step h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.uni-step p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

.uni-arrow {
  color: var(--gold);
  font-size: 1.4rem;
  padding-top: 0.9rem;
  flex-shrink: 0;
}

/* ============================================================
   TOURISM
   ============================================================ */
.tourism-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dest-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1rem;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}

.dest-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.dest-card.dest-more {
  border-style: dashed;
}

.dest-flag { font-size: 1.7rem; margin-bottom: 0.5rem; }
.dest-name { font-size: 0.85rem; font-weight: 500; color: var(--navy); }
.dest-services { font-size: 0.7rem; color: var(--muted); margin-top: 3px; }

.tourism-note {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 0 6px 6px 0;
  padding: 1.2rem 1.5rem;
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.65;
}

.tourism-note strong { color: var(--navy); }

/* ============================================================
   REJECTION RECOVERY
   ============================================================ */
.rejection-box {
  background: var(--navy);
  border-radius: 12px;
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.rejection-left h2 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.9rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.rejection-left p {
  color: rgba(255,255,255,0.52);
  font-size: 0.9rem;
  line-height: 1.72;
  margin-bottom: 1.8rem;
}

.rejection-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rej-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.rej-num {
  width: 30px; height: 30px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.rej-step p {
  color: rgba(255,255,255,0.66);
  font-size: 0.85rem;
  line-height: 1.55;
}

/* ============================================================
   CITIES
   ============================================================ */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.city-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  cursor: pointer;
}

.city-card:hover { border-color: var(--gold); transform: translateY(-2px); }

.city-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.32s ease;
  transform-origin: left;
}

.city-card:hover::before { transform: scaleX(1); }

.city-icon { font-size: 2rem; margin-bottom: 0.7rem; }

.city-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.city-card p { font-size: 0.76rem; color: var(--muted); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--white);
}

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

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 1.4rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.author-avatar {
  width: 38px; height: 38px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-left h2 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.contact-left > p {
  color: rgba(255,255,255,0.52);
  font-size: 0.9rem;
  line-height: 1.72;
  margin-bottom: 2rem;
}

.contact-details { margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.contact-detail svg { color: var(--gold); flex-shrink: 0; }
.contact-detail span { color: rgba(255,255,255,0.65); font-size: 0.87rem; }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 12px 22px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.88rem;
  transition: opacity var(--transition);
}
.whatsapp-btn:hover { opacity: 0.88; }

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  color: rgba(255,255,255,0.48);
  font-size: 0.76rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.5);
}

.form-group select option { background: var(--navy); }
.form-group textarea { resize: vertical; min-height: 80px; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 14px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background var(--transition);
  margin-top: 0.5rem;
}
.btn-submit:hover { background: var(--gold-light); }

.form-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 0.8rem;
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #060e1b;
  padding: 3.5rem 5% 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.9rem;
}

.footer-desc {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.footer-countries {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-countries span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 3px 10px;
  border-radius: 4px;
}

.footer-col h5 {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }

.footer-col ul li a {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p { color: rgba(255,255,255,0.18); font-size: 0.76rem; }
.footer-domain { color: var(--gold); font-size: 0.8rem; }

/* ============================================================
   LANGUAGE HELPERS
   ============================================================ */
.lang-gu { display: none; }
body.gujarati .lang-en { display: none; }
body.gujarati .lang-gu { display: block; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-countries { display: none; }
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.5rem 5%;
    gap: 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .diff-grid { grid-template-columns: 1fr; }
  .rejection-box { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .uni-steps { flex-wrap: wrap; justify-content: center; }
  .uni-arrow { display: none; }
}

@media (max-width: 600px) {
  section, .dark-section, .cream-section { padding: 4rem 5%; }
  .hero-stats { gap: 1.4rem; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .rejection-box { padding: 2rem; }
  .trust-bar { justify-content: flex-start; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}
