/* ==========================================================================
   TUVISA - MODERN STYLESHEET
   Executive, Lightweight & High-Performance Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Nunito:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #00a8d9;
  --primary-dark: #0081a7;
  --primary-light: #e0f6fc;
  --secondary: #2b549a;
  --secondary-dark: #1e3d74;
  --accent: #0284c7;
  --discount: #e11d48;
  --gold: #d97706;
  --gold-light: #fef3c7;
  --emerald: #059669;
  --emerald-light: #d1fae5;
  --dark: #0f172a;
  --dark-light: #334155;
  --text: #475569;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.14);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Anton', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --font-alt: 'Montserrat', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 80px;
}

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

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

a:hover {
  color: var(--secondary);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-white { color: var(--white) !important; }
.text-dark { color: var(--dark) !important; }

/* SVG Icon Helper */
.svg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Executive Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  font-family: var(--font-alt);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #00a8d9 0%, #0087ae 100%);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 168, 217, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0087ae 0%, #006f8f 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 168, 217, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(43, 84, 154, 0.3);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-discount {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.btn-discount:hover {
  background: linear-gradient(135deg, #00a8d9 0%, #0087ae 100%);
  border-color: transparent;
  transform: translateY(-2px);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(0, 168, 217, 0.4);
}

.btn-gold {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #b45309 0%, #92400e 100%);
  transform: translateY(-2px);
  color: var(--white);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #008fc0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.header-logo img {
  height: 48px;
  width: auto;
  transition: var(--transition);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--white);
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 13.5px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}

.nav-link.nav-cta {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.nav-link.nav-cta:hover {
  background: var(--dark);
  border-color: var(--white);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--secondary);
  min-width: 210px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 18px;
  color: var(--white);
  font-family: var(--font-alt);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding-left: 22px;
}

/* Hamburger Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 580px;
  overflow: hidden;
  background: #0f172a;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transform: scale(1.03);
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.45) 100%);
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: 0 20px;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 13.5px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slide-number {
  font-family: var(--font-heading);
  font-size: clamp(55px, 10vw, 130px);
  color: var(--white);
  line-height: 0.9;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.slide-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(20px, 4vw, 40px);
  letter-spacing: 1.5px;
  color: var(--white);
  margin-top: 15px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.slider-controls {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active, .slider-dot:hover {
  background: var(--primary);
  border-color: var(--white);
  transform: scale(1.2);
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section {
  padding: 70px 0;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  text-align: center;
  color: var(--primary);
  margin-bottom: 40px;
}

.section-title.white {
  color: var(--white);
}

/* Ratings Grid */
.ratings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.rating-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 25px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.rating-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 12px;
}

.rating-score {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.rating-stars {
  height: 18px;
  width: auto;
}

/* Why Us Section */
.why-us-section {
  background: linear-gradient(135deg, #007799 0%, #00a8d9 100%);
  color: var(--white);
  position: relative;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px;
}

.why-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 25px 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}

.why-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 15px auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px;
}

.why-text {
  font-size: 14px;
  line-height: 1.4;
  color: var(--white);
}

.why-text strong {
  display: block;
  font-size: 17px;
  color: #fff;
  margin: 4px 0;
}

/* ==========================================================================
   PRICING & PROMOTIONS SECTION (Executive Cards & Clean Badges)
   ========================================================================== */
.pricing-section {
  background: #f1f5f9;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.promo-header-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 25px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 35px auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.promo-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.promo-header-info h4 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 2px;
}

.promo-header-info p {
  font-size: 13px;
  color: #94a3b8;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-family: var(--font-alt);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.badge-discount {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fca5a5;
}

.badge-featured {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.badge-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 25px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 15px 35px -5px rgba(0, 168, 217, 0.2);
}

.pricing-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.pricing-card h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 4px;
}

.pricing-card .pricing-subtitle {
  font-family: var(--font-alt);
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.price-box {
  margin: 15px 0 20px 0;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.price-before {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-now {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--dark);
  line-height: 1;
  margin-top: 4px;
}

.price-now span {
  font-size: 14px;
  font-family: var(--font-alt);
  font-weight: 800;
  color: #b91c1c;
  margin-left: 4px;
}

.pricing-features {
  font-size: 13.5px;
  color: var(--text);
  margin-bottom: 25px;
  line-height: 1.55;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.pricing-features li svg {
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 3px;
}

.transparency-notice {
  background: var(--white);
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  max-width: 900px;
  margin: 30px auto 0 auto;
  font-size: 14px;
  color: var(--dark-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

/* ==========================================================================
   DESTINATIONS / VISAS GRID (Interactive Flip Cards)
   ========================================================================== */
.visas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 25px;
}

.visa-card-wrapper {
  perspective: 1000px;
  height: 340px;
}

.visa-card {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.visa-card-wrapper:hover .visa-card,
.visa-card-wrapper.flipped .visa-card {
  transform: rotateY(180deg);
}

.visa-card-front, .visa-card-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: var(--radius);
  overflow: hidden;
}

.visa-card-front {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
}

.visa-card-front::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.1) 60%);
}

.visa-card-front-title {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 24px;
  text-align: center;
  letter-spacing: 1px;
}

.visa-card-back {
  background: #f8fafc;
  transform: rotateY(180deg);
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid var(--primary);
}

.visa-card-back h3 {
  font-size: 19px;
  color: var(--primary);
  text-align: center;
  margin-bottom: 10px;
}

.visa-list {
  font-size: 13px;
  color: var(--dark);
  line-height: 1.5;
  overflow-y: auto;
  max-height: 190px;
  padding-right: 5px;
}

.visa-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 6px;
}

.visa-list li svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.visa-card-back .btn {
  width: 100%;
  padding: 8px 15px;
  font-size: 13px;
  margin-top: 10px;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
  background: var(--secondary);
  color: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: center;
}

.faq-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-header {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
}

.accordion-header:hover {
  color: var(--primary);
}

.accordion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 20px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

.accordion-content p {
  padding-bottom: 16px;
}

/* ==========================================================================
   OFFICES & CONTACT CARDS
   ========================================================================== */
.contact-banner {
  background: linear-gradient(rgba(15,23,42,0.7), rgba(15,23,42,0.7)), url('../../wp-content/uploads/2020/03/bannerContacto1.png') center/cover;
  padding: 60px 20px;
  text-align: center;
  color: var(--white);
}

.contact-banner h1 {
  font-size: clamp(30px, 4.5vw, 50px);
  color: var(--white);
  margin-bottom: 10px;
}

.contact-banner p {
  font-size: 17px;
  max-width: 650px;
  margin: 0 auto 10px auto;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.office-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

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

.office-image {
  height: 190px;
  width: 100%;
  object-fit: cover;
}

.office-body {
  padding: 22px 20px;
}

.office-title {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 8px;
}

.office-address {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.office-phones {
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark);
}

.office-phones a {
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 4px;
}

.office-phones a:hover {
  color: var(--primary);
}

.office-email {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

/* ==========================================================================
   ON-SITE BOOKING FORM SECTION
   ========================================================================== */
.booking-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--white);
  padding: 70px 0;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
  align-items: center;
}

.booking-advisor-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 35px 30px;
  text-align: center;
}

.advisor-badge-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00a8d9 0%, #0087ae 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0, 168, 217, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.booking-advisor-card h3 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 4px;
}

.booking-advisor-card p.advisor-role {
  font-family: var(--font-alt);
  font-size: 13px;
  color: #38bdf8;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.advisor-quote {
  font-size: 14.5px;
  color: #cbd5e1;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.booking-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px 30px;
  box-shadow: var(--shadow-lg);
  color: var(--dark);
}

.booking-form h2 {
  font-size: 25px;
  color: var(--primary);
  margin-bottom: 6px;
}

.booking-form p.form-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.form-group {
  margin-bottom: 15px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-alt);
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.form-input, .form-select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  background: #f8fafc;
  outline: none;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 168, 217, 0.15);
}

/* ==========================================================================
   CONFIRMATION MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
  padding: 35px 30px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.modal-close:hover {
  background: #e2e8f0;
  color: var(--dark);
}

.modal-avatar {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #00a8d9 0%, #0087ae 100%);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 6px 18px rgba(0, 168, 217, 0.35);
}

.modal-card h3 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 8px;
}

.modal-card p {
  font-size: 14.5px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.55;
}

.modal-details {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin: 18px 0;
  text-align: left;
  font-size: 13.5px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.modal-details div {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   STICKY BOTTOM ON-SITE LEAD BAR
   ========================================================================== */
.lead-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1e3d74;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lead-bar-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lead-input {
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: var(--font-body);
  font-size: 13.5px;
  outline: none;
  background: var(--white);
  color: var(--dark);
  min-width: 165px;
  transition: var(--transition);
}

.lead-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 168, 217, 0.3);
}

.lead-btn {
  background: linear-gradient(135deg, #00a8d9 0%, #0087ae 100%);
  color: var(--white);
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.3px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lead-btn:hover {
  background: linear-gradient(135deg, #0087ae 0%, #006f8f 100%);
  transform: translateY(-2px);
}

/* ==========================================================================
   SUBPAGES & DETAIL LAYOUTS
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  padding: 55px 0;
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  font-size: clamp(30px, 4.5vw, 46px);
  color: var(--white);
  margin-bottom: 8px;
}

.page-hero p {
  font-size: 15.5px;
  opacity: 0.9;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

.detail-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.detail-content {
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.detail-content h2 {
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 12px;
}

.detail-content p {
  margin-bottom: 15px;
  font-size: 14.5px;
  color: var(--text);
}

.detail-content ul {
  margin: 15px 0 25px 0;
}

.detail-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14.5px;
}

.detail-content ul li svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.detail-cta-box {
  background: #f8fafc;
  border-left: 4px solid var(--primary);
  padding: 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 25px;
}

.detail-cta-box h4 {
  font-size: 17px;
  color: var(--dark);
  margin-bottom: 6px;
}

.back-to-top {
  position: fixed;
  bottom: 85px;
  right: 25px;
  width: 42px;
  height: 42px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 990;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #172554;
  color: var(--white);
  padding: 28px 0;
  text-align: center;
  font-size: 13.5px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  margin-left: 15px;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
  .mobile-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: var(--secondary);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    box-shadow: var(--shadow-lg);
  }

  .main-nav.open {
    max-height: 500px;
    overflow-y: auto;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    padding: 20px;
    gap: 8px;
    align-items: flex-start;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 12px 15px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0, 0, 0, 0.15);
    box-shadow: none;
    margin-top: 5px;
    padding: 5px 0 5px 20px;
    display: none;
  }

  .nav-item.dropdown-open .dropdown-menu {
    display: block;
  }

  .faq-layout, .detail-layout, .booking-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    height: 480px;
  }

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

@media (max-width: 600px) {
  body {
    padding-bottom: 125px;
  }

  .hero-slider {
    height: 420px;
  }

  .lead-bar-form {
    flex-direction: column;
    padding: 0 15px;
  }

  .lead-input, .lead-btn {
    width: 100%;
  }

  .back-to-top {
    bottom: 135px;
    right: 15px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links a {
    margin: 0 8px;
  }
}
