/* =========================================
   TOPSPOT TRAVELS — MAIN STYLESHEET
   ========================================= */

/* =========================================
   BOOKING CALENDAR
   ========================================= */
.booking-cal {
  background: var(--light-bg);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 20px;
}

.bcal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.bcal-month-label {
  font-weight: 800;
  color: var(--navy);
  font-size: 1rem;
  margin: 0;
}

.bcal-nav-btn {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}
.bcal-nav-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.bcal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}
.bcal-weekdays span {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  padding: 4px 0;
}

.bcal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.bcal-day {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  cursor: default;
  user-select: none;
  min-height: 44px;
}

.bcal-day.empty       { background: transparent; border: none; }
.bcal-day.no-slots    { background: var(--white); color: #d1d5db; border: 1px solid var(--border); cursor: not-allowed; }
.bcal-day.unavailable { background: var(--light-bg); color: #c4c9d4; border: 1px solid transparent; cursor: not-allowed; }
.bcal-day.sunday      { background: var(--light-bg); color: #e0c0c0; border: 1px dashed #f1d4d4; }
.bcal-day.sunday .bcal-day-num { text-decoration: line-through; text-decoration-color: #f9b4b4; }

.bcal-day.available {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid rgba(16,185,129,0.35);
  cursor: pointer;
  background: rgba(16,185,129,0.04);
}
.bcal-day.available:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: scale(1.08);
  z-index: 1;
  box-shadow: var(--shadow);
}

.bcal-day.selected {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-color: var(--navy) !important;
  box-shadow: 0 4px 16px rgba(11,31,75,0.3);
}

.bcal-day.today .bcal-day-num {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bcal-day-num { font-weight: 700; font-size: 0.88rem; line-height: 1; }

.bcal-dot {
  width: 5px; height: 5px;
  background: #10b981;
  border-radius: 50%;
  position: absolute;
  bottom: 5px;
}
.bcal-day.selected .bcal-dot { background: var(--gold-light); }

.bcal-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Slot section */
.slot-section-header {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

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

@media (max-width: 576px) { .slot-grid { grid-template-columns: repeat(2, 1fr); } }

.slot-btn {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
}

.slot-btn.available { border-color: rgba(16,185,129,0.35); color: var(--navy); }
.slot-btn.available:hover { border-color: var(--navy); background: rgba(11,31,75,0.05); transform: translateY(-2px); }
.slot-btn.available i { color: #10b981; }

.slot-btn.unavailable { opacity: 0.45; cursor: not-allowed; }
.slot-btn.unavailable i { color: var(--text-muted); }
.slot-btn.unavailable small { font-size: 0.7rem; color: var(--text-muted); }

.slot-btn.chosen {
  border-color: var(--navy) !important;
  background: var(--navy) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 16px rgba(11,31,75,0.3);
}
.slot-btn.chosen i { color: var(--gold-light) !important; }

.slot-loading, .slot-error, .slot-none {
  text-align: center;
  padding: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.slot-error i, .slot-none i { display: block; margin-bottom: 8px; font-size: 1.5rem; opacity: 0.4; }

/* Selection Summary */
.selection-summary {
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.text-gold { color: var(--gold-dark) !important; }

/* --- VARIABLES & ROOT --- */
:root {
  --navy:        #0B1F4B;
  --navy-dark:   #071530;
  --navy-mid:    #162d6b;
  --gold:        #D4A017;
  --gold-light:  #f0c040;
  --gold-dark:   #b8860b;
  --white:       #ffffff;
  --light-bg:    #F4F7FC;
  --text-dark:   #1a1a2e;
  --text-muted:  #6b7280;
  --border:      #e5e7eb;
  --success:     #10b981;
  --radius:      14px;
  --radius-sm:   8px;
  --shadow:      0 4px 24px rgba(11,31,75,0.10);
  --shadow-lg:   0 12px 48px rgba(11,31,75,0.18);
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- GLOBAL --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

.section-pad { padding: 90px 0; }
.bg-light-custom { background: var(--light-bg); }

/* --- TYPOGRAPHY HELPERS --- */
.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }

.section-tag {
  display: inline-block;
  background: rgba(212, 160, 23, 0.12);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(212, 160, 23, 0.25);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-top: 10px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 12px auto 0;
}

/* =========================================
   NAVBAR
   ========================================= */
#mainNav {
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}

#mainNav.scrolled,
#mainNav.appt-nav-solid {
  background: var(--navy-dark) !important;
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.navbar-toggler {
  border-color: rgba(255,255,255,0.3);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.brand-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-right: 10px;
  vertical-align: middle;
}

.brand-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  vertical-align: middle;
}

.brand-accent { color: var(--gold); }

.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover { color: var(--gold-light) !important; background: rgba(255,255,255,0.08); }

/* --- BUTTONS --- */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(212,160,23,0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,160,23,0.5);
  color: var(--navy-dark);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  transition: var(--transition);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-outline-navy {
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #1fad52; color: var(--white); }

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1a3a7c 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 900"><circle cx="200" cy="200" r="300" fill="rgba(212,160,23,0.04)"/><circle cx="1200" cy="600" r="400" fill="rgba(212,160,23,0.06)"/><circle cx="700" cy="800" r="200" fill="rgba(255,255,255,0.02)"/></svg>');
  background-size: cover;
}

.hero-particles { position: absolute; inset: 0; pointer-events: none; }

.hero-content { position: relative; z-index: 2; padding-top: 80px; }

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 160, 23, 0.18);
  border: 1px solid rgba(212, 160, 23, 0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin: 16px 0;
}

.highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero-stats {
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.stat-item p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin: 2px 0 0; }

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}
.stat-plus { font-size: 1.5rem; font-weight: 700; color: var(--gold-light); }

/* Hero floating cards */
.hero-card-float {
  position: relative;
  width: 380px; height: 380px;
}

.float-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}

.float-card i { font-size: 1.3rem; color: var(--gold-light); }

.card-1 { top: 0; right: 0; animation-delay: 0s; }
.card-2 { bottom: 60px; left: 0; animation-delay: 1s; }
.card-3 { bottom: 0; right: 40px; animation-delay: 2s; }

.hero-globe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 9rem;
  color: rgba(212,160,23,0.15);
  animation: spin-slow 30s linear infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes spin-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.scroll-down-btn {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  display: flex;
  align-items: center; justify-content: center;
  z-index: 2;
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =========================================
   MARQUEE BAND
   ========================================= */
.marquee-band {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.marquee-track span i { font-size: 0.8rem; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================
   SERVICE CARDS
   ========================================= */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.service-icon {
  width: 70px; height: 70px;
  border-radius: var(--radius);
  display: flex;
  align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.service-icon.study   { background: rgba(37,99,235,0.1);  color: #2563eb; }
.service-icon.talent  { background: rgba(212,160,23,0.1); color: var(--gold-dark); }
.service-icon.founder { background: rgba(16,185,129,0.1); color: #059669; }
.service-icon.flight  { background: rgba(239,68,68,0.1);  color: #dc2626; }

.service-card h5 { font-weight: 700; color: var(--navy); margin-bottom: 12px; font-size: 1.1rem; }
.service-card p  { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 14px;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; color: var(--navy); }

/* =========================================
   VISA DETAIL ROWS
   ========================================= */
.visa-graphic {
  position: relative;
  border-radius: 24px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.study-graphic   { background: linear-gradient(135deg, #dbeafe, #eff6ff); }
.talent-graphic  { background: linear-gradient(135deg, #fef3c7, #fffbeb); }
.founder-graphic { background: linear-gradient(135deg, #d1fae5, #ecfdf5); }

.visa-icon-large {
  font-size: 8rem;
  opacity: 0.25;
  position: absolute;
}

.study-graphic   .visa-icon-large { color: #2563eb; }
.talent-graphic  .visa-icon-large { color: var(--gold-dark); }
.founder-graphic .visa-icon-large { color: #059669; }

.visa-deco-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.visa-deco-circle.c1 { width: 250px; height: 250px; top: -60px; left: -60px; }
.visa-deco-circle.c2 { width: 180px; height: 180px; bottom: -40px; right: -40px; }

.study-graphic   .visa-deco-circle { background: #2563eb; }
.talent-graphic  .visa-deco-circle { background: var(--gold); }
.founder-graphic .visa-deco-circle { background: #059669; }

.visa-badge {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.visa-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.study-tag   { background: rgba(37,99,235,0.1);  color: #1d4ed8; }
.talent-tag  { background: rgba(212,160,23,0.1); color: var(--gold-dark); }
.founder-tag { background: rgba(16,185,129,0.1); color: #047857; }

.visa-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}

.visa-desc { color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }

.visa-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.visa-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.visa-list li i { color: var(--success); font-size: 1rem; flex-shrink: 0; }

/* =========================================
   WHY SECTION
   ========================================= */
.why-section { background: var(--navy-dark); }
.why-section .section-tag { background: rgba(212,160,23,0.15); border-color: rgba(212,160,23,0.3); }
.why-section .section-title { color: var(--white); }
.why-section .section-sub   { color: rgba(255,255,255,0.6); }

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 26px;
  height: 100%;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(212,160,23,0.3);
  transform: translateY(-6px);
}

.why-icon {
  width: 60px; height: 60px;
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.why-card h5 { color: var(--white); font-weight: 700; margin-bottom: 10px; }
.why-card p  { color: rgba(255,255,255,0.55); font-size: 0.92rem; line-height: 1.6; }

/* =========================================
   PROCESS STEPS
   ========================================= */
.step-card {
  position: relative;
  padding: 36px 28px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.step-card:not(.last-step)::after {
  content: '';
  position: absolute;
  top: 50px; right: -20px;
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

@media (max-width: 991px) {
  .step-card:not(.last-step)::after { display: none; }
}

.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.step-num {
  position: absolute;
  top: -16px; left: 28px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(212,160,23,0.12);
  line-height: 1;
}

.step-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-light);
  margin: 0 auto 18px;
}

.step-card h5 { font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-card p  { color: var(--text-muted); font-size: 0.9rem; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.testimonial-card.featured {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-color: transparent;
}

.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.quote-icon {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 14px;
}

.testimonial-text {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card.featured .testimonial-text { color: rgba(255,255,255,0.85); }

.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 20px; }

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

.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--navy); }
.testimonial-card.featured .testimonial-author strong { color: var(--white); }

.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }
.testimonial-card.featured .testimonial-author span { color: rgba(255,255,255,0.55); }

.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}

.av1 { background: linear-gradient(135deg, #2563eb, #7c3aed); }
.av2 { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy-dark); }
.av3 { background: linear-gradient(135deg, #059669, #10b981); }

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark), #1a3a7c, var(--navy));
  padding: 100px 0;
  overflow: hidden;
}

.cta-overlay {
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 400"><circle cx="100" cy="200" r="300" fill="rgba(212,160,23,0.06)"/><circle cx="1340" cy="100" r="250" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: cover;
}

.cta-content { position: relative; z-index: 1; }

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.cta-sub { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 480px; margin: 0 auto; }

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-info-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-of-type { border-bottom: none; }

.contact-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item strong { display: block; font-size: 0.85rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-item span   { display: block; font-size: 0.95rem; color: var(--navy); font-weight: 500; margin-top: 2px; }

.social-links { display: flex; gap: 10px; flex-wrap: wrap; }

.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(11,31,75,0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-3px);
}

.footer-section .social-links a { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); color: var(--white); }
.footer-section .social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.custom-input {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: var(--transition);
  color: var(--text-dark);
}

.custom-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,31,75,0.08);
  outline: none;
}

/* =========================================
   FOOTER
   ========================================= */
.footer-section {
  background: var(--navy-dark);
  padding: 70px 0 0;
}

.footer-main { padding-bottom: 50px; }

.footer-desc  { color: rgba(255,255,255,0.5); font-size: 0.92rem; line-height: 1.7; }
.footer-heading { color: var(--white); font-weight: 700; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-links li:not(:has(a)) { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

.newsletter-form .form-control {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form .form-control:focus { background: rgba(255,255,255,0.12); border-color: var(--gold); box-shadow: none; color: var(--white); }

.newsletter-form .btn-gold { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 0 20px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 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.85rem; margin: 0; }

.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.4); font-size: 0.85rem; transition: var(--transition); }
.footer-legal a:hover { color: var(--gold-light); }

/* =========================================
   FLOATING BUTTONS
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.7rem;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}

.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.75); }
}

.back-to-top {
  position: fixed;
  bottom: 96px; right: 28px;
  width: 46px; height: 46px;
  background: var(--navy);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  z-index: 999;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0; visibility: hidden;
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--navy-mid); transform: translateY(-3px); }

/* =========================================
   APPOINTMENT PAGE
   ========================================= */
.appt-page { background: var(--light-bg); }

.appt-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1e3a8a 100%);
  padding: 160px 0 80px;
  overflow: hidden;
}

.appt-hero-overlay {
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 400"><circle cx="100" cy="100" r="350" fill="rgba(212,160,23,0.05)"/><circle cx="1300" cy="300" r="250" fill="rgba(255,255,255,0.03)"/></svg>');
}

.appt-hero-content { position: relative; z-index: 1; }

.appt-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
}

.appt-hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 14px auto;
}

.breadcrumb { background: none; }
.breadcrumb-item a { color: rgba(255,255,255,0.6); }
.breadcrumb-item.active { color: var(--gold-light); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

.appt-main-section { padding: 70px 0 90px; }

/* Appointment Info Panel */
.appt-info-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.appt-info-title { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.appt-info-sub   { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }

.appt-expect-list { list-style: none; padding: 0; }
.appt-expect-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.appt-expect-list li:last-child { border-bottom: none; }
.appt-expect-list li i { color: var(--success); flex-shrink: 0; }

.appt-divider { border-top: 1px solid var(--border); margin: 20px 0; }

.consult-modes { display: flex; flex-direction: column; gap: 14px; }

.consult-mode-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.consult-mode-item i {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(11,31,75,0.08);
  display: flex;
  align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
  flex-shrink: 0;
}

.fa-whatsapp { color: #25D366 !important; }
.consult-mode-item i.fa-brands.fa-whatsapp { background: rgba(37,211,102,0.1); }

.consult-mode-item strong { display: block; font-size: 0.88rem; color: var(--navy); }
.consult-mode-item span   { font-size: 0.8rem; color: var(--text-muted); }

/* Appointment Form Card */
.appt-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

@media (max-width: 576px) {
  .appt-form-card { padding: 28px 20px; }
}

/* Progress Steps */
.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.ps-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--light-bg);
  display: flex;
  align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.progress-step span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  transition: var(--transition);
}

.progress-step.active .ps-circle {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.progress-step.active span { color: var(--navy); }

.progress-step.done .ps-circle {
  background: var(--success);
  border-color: var(--success);
  color: var(--white);
}

.progress-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  min-width: 40px;
  max-width: 80px;
  align-self: flex-start;
  margin-top: 21px;
  transition: var(--transition);
}

.progress-line.done { background: var(--success); }

.step-title {
  font-weight: 800;
  color: var(--navy);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-num-badge {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.required { color: #ef4444; }

.country-code {
  background: var(--light-bg);
  border-color: var(--border);
  font-weight: 600;
  color: var(--navy);
}

/* Service selector */
.service-option-label {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.92rem;
  background: var(--white);
}

.service-option-label i {
  font-size: 1.3rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.btn-check:checked + .service-option-label {
  border-color: var(--navy);
  background: rgba(11,31,75,0.05);
  color: var(--navy);
}

.btn-check:checked + .service-option-label i { color: var(--gold-dark); }

.service-option-label:hover {
  border-color: var(--navy);
  background: rgba(11,31,75,0.03);
}

/* Consultation mode buttons */
.mode-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--white);
}

.btn-check:checked + .mode-label {
  border-color: var(--gold);
  background: rgba(212,160,23,0.08);
  color: var(--gold-dark);
}

/* Review card */
.review-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}

.review-section-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}

@media (max-width: 576px) { .review-grid { grid-template-columns: 1fr; } }

.review-item label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.review-item span  { font-size: 0.95rem; font-weight: 600; color: var(--navy); }

.consent-block {
  background: rgba(11,31,75,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

/* Success state */
.booking-success { padding: 20px 0 10px; }

.success-animation { display: flex; justify-content: center; }

.success-circle {
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--success), #34d399);
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  animation: pop-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 32px rgba(16,185,129,0.4);
}

@keyframes pop-in {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.success-msg { color: var(--text-muted); font-size: 1rem; max-width: 420px; margin: 12px auto; }

.success-details {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.success-detail-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.success-detail-item i { color: var(--gold-dark); }

/* FAQ */
.appt-faq .faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.appt-faq .accordion-button {
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
}

.appt-faq .accordion-button:not(.collapsed) {
  background: rgba(11,31,75,0.04);
  color: var(--navy);
  box-shadow: none;
}

.appt-faq .accordion-button::after {
  filter: invert(15%) sepia(80%) saturate(500%) hue-rotate(200deg);
}

.appt-faq .accordion-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =========================================
   FORM — GLOBAL FIXES
   ========================================= */
.form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,31,75,0.08);
}

.form-check-input:checked {
  background-color: var(--navy);
  border-color: var(--navy);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991px) {
  .section-pad { padding: 65px 0; }
  .hero-title { font-size: 2.4rem; }
  .navbar-collapse { background: var(--navy-dark); padding: 20px; border-radius: var(--radius); margin-top: 12px; }
}

@media (max-width: 767px) {
  .section-pad { padding: 50px 0; }
  .hero-stats .stat-number { font-size: 1.8rem; }
  .appt-form-card { padding: 28px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-card { padding: 28px 20px; }
  .review-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 2rem; }
  .visa-title { font-size: 1.6rem; }
  .btn-lg { padding: 12px 28px; }
}
