/* ============================================================
   HAZAL TRAVELS — Modern Travel & Tour Platform Design System
   Theme: Light Blue, Crisp White & Maritime Navy
   Vibe: Adventurous, Aspirational, Modern Travel & Tour Booking
   ============================================================ */

/* ---------- Google Fonts (Modern Travel Typography) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Light Blue & Pure White Travel Palette */
  --sky-50:        #F0F9FF;
  --sky-100:       #E0F2FE;
  --sky-200:       #BAE6FD;
  --sky-300:       #7DD3FC;
  --sky-400:       #38BDF8;
  --sky-500:       #0EA5E9;
  --sky-600:       #0284C7;
  --sky-700:       #0369A1;
  --sky-800:       #075985;
  --sky-900:       #0C4A6E;

  --white:         #FFFFFF;
  --slate-50:      #F8FAFC;
  --slate-100:     #F1F5F9;
  --slate-200:     #E2E8F0;
  --slate-300:     #CBD5E1;
  --slate-400:     #94A3B8;
  --slate-500:     #64748B;
  --slate-600:     #475569;
  --slate-700:     #334155;
  --slate-800:     #1E293B;
  --slate-900:     #0F172A;
  --navy-deep:     #0A192F;

  --accent-gold:   #F59E0B;
  --accent-sunset: #FF6B35;
  --accent-coral:  #F97316;
  --accent-green:  #10B981;

  /* Mapped Legacy Tokens for backward compatibility across all 15 pages */
  --sand:          var(--sky-100);
  --warm-white:    var(--white);
  --charcoal:      var(--slate-900);
  --deep-bronze:   var(--sky-600);
  --terracotta:    var(--sky-700);
  --midnight:      var(--navy-deep);
  --soft-gold:     var(--sky-500);
  --cream:         var(--sky-50);
  --stone:         var(--slate-500);
  --light-sand:    var(--slate-50);

  /* Typography */
  --font-heading:  'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:     'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent:   'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Type Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.125rem;
  --text-lg:   1.25rem;
  --text-xl:   1.5rem;
  --text-2xl:  2rem;
  --text-3xl:  2.5rem;
  --text-4xl:  3.25rem;
  --text-5xl:  4rem;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --max-width:  1200px;
  --max-wide:   1400px;
  --nav-height: 80px;

  /* Transitions */
  --ease-out:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out:  cubic-bezier(0.42, 0, 0.58, 1);
  --duration:     0.25s;
  --duration-slow: 0.5s;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md:  0 4px 14px rgba(2, 132, 199, 0.08), 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-lg:  0 10px 30px -4px rgba(2, 132, 199, 0.12), 0 4px 10px rgba(15, 23, 42, 0.05);
  --shadow-xl:  0 20px 40px -8px rgba(2, 132, 199, 0.18), 0 8px 16px rgba(15, 23, 42, 0.06);

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
}


/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--slate-700);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--sky-600);
  text-decoration: none;
  transition: color var(--duration) var(--ease-out);
}

a:hover {
  color: var(--sky-800);
}

ul, ol { list-style: none; }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button { cursor: pointer; }


/* ============================================================
   TYPOGRAPHY (Modern Travel Branding)
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
}

h3 {
  font-size: var(--text-xl);
  font-weight: 700;
}

h4 {
  font-size: var(--text-lg);
  font-weight: 600;
}

p {
  margin-bottom: 1em;
  color: var(--slate-600);
}

.accent-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--sky-600);
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sky-600);
  background: var(--sky-100);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: var(--space-sm);
}

.section-title {
  margin-bottom: var(--space-sm);
  color: var(--slate-900);
}

.section-subtitle {
  font-size: var(--text-md);
  color: var(--slate-500);
  max-width: 640px;
  line-height: 1.6;
}


/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--wide {
  max-width: var(--max-wide);
}

.section {
  padding: var(--space-2xl) 0;
}

.section--sand {
  background-color: var(--sky-50);
}

.section--cream {
  background-color: var(--white);
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
}

.section--dark {
  background-color: var(--navy-deep);
  color: var(--white);
}

.section--dark > .container > .text-center > h2,
.section--dark > .container > h2,
.section--dark .section-title {
  color: var(--white);
}

.section--dark > .container > .text-center > p,
.section--dark .section-subtitle {
  color: rgba(224, 242, 254, 0.9);
}

.section--dark .section-label {
  background: rgba(14, 165, 233, 0.25);
  color: var(--sky-300);
  border: 1px solid rgba(125, 211, 252, 0.3);
}

/* Ensure white cards placed inside dark sections have crisp dark text */
.section--dark .testimonial,
.section--dark .testimonial-card,
.section--dark .card,
.section--dark .feature-card {
  background-color: var(--white);
  color: var(--slate-800);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.section--dark .testimonial p,
.section--dark .testimonial__quote,
.section--dark .testimonial-card p,
.section--dark .testimonial-card__quote {
  color: var(--slate-700) !important;
}

.section--dark .testimonial__name,
.section--dark .testimonial-card__author strong {
  color: var(--slate-900) !important;
}

.section--dark .testimonial__meta,
.section--dark .testimonial-card__author span {
  color: var(--slate-500) !important;
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.flex {
  display: flex;
  gap: var(--space-md);
}

.flex--center {
  align-items: center;
  justify-content: center;
}

.text-center { text-align: center; }


/* ============================================================
   NAVIGATION (Airy, Frosted Travel Header)
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--duration) var(--ease-out);
}

.nav--transparent {
  background-color: transparent;
}

.nav--solid {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--sky-100);
  box-shadow: 0 4px 20px rgba(2, 132, 199, 0.08);
}

.nav__inner {
  width: 100%;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  transition: color var(--duration) var(--ease-out);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav--solid .nav__logo {
  color: var(--slate-900);
}

.nav__logo span {
  color: var(--sky-400);
  font-weight: 800;
}

.nav--solid .nav__logo span {
  color: var(--sky-600);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color var(--duration) var(--ease-out);
}

.nav--solid .nav__link {
  color: var(--slate-700);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--sky-400);
  border-radius: 2px;
  transition: width var(--duration) var(--ease-out);
}

.nav--solid .nav__link::after {
  background: var(--sky-600);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--sky-300);
}

.nav--solid .nav__link:hover {
  color: var(--sky-600);
}

.nav__cta {
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--sky-500) 0%, var(--sky-600) 100%);
  color: var(--white);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
  transition: all var(--duration) var(--ease-out);
}

.nav__cta:hover {
  background: linear-gradient(135deg, var(--sky-600) 0%, var(--sky-700) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.45);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav__dropdown-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform var(--duration) var(--ease-out);
}

.nav__dropdown:hover .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--sky-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: var(--space-xs) 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration) var(--ease-out);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--slate-700);
  transition: all var(--duration) var(--ease-out);
}

.nav__dropdown-item:hover {
  background-color: var(--sky-50);
  color: var(--sky-600);
  padding-left: 24px;
}

/* Mobile Menu */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform var(--duration) var(--ease-out),
              opacity var(--duration) var(--ease-out);
}

.nav--solid .nav__hamburger span {
  background-color: var(--slate-900);
}

.nav__hamburger--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger--active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  padding: var(--space-lg);
  flex-direction: column;
  gap: var(--space-xs);
  overflow-y: auto;
  z-index: 999;
}

.nav__mobile-menu.active {
  display: flex;
}

.nav__mobile-link {
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--slate-800);
  padding: 12px 0;
  border-bottom: 1px solid var(--slate-100);
  display: block;
}

.nav__mobile-link:hover {
  color: var(--sky-600);
}


/* ============================================================
   HERO (Aspirational Travel Blue Overlay)
   ============================================================ */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.hero--full {
  min-height: 95vh;
}

.hero--medium {
  min-height: 56vh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 25, 47, 0.45) 0%,
    rgba(2, 132, 199, 0.28) 40%,
    rgba(10, 25, 47, 0.88) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sky-300);
  background: rgba(2, 132, 199, 0.35);
  backdrop-filter: blur(8px);
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.4);
  margin-bottom: var(--space-sm);
}

.hero__title {
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-sm);
  line-height: 1.12;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  font-size: var(--text-xl);
  font-weight: 400;
  color: rgba(240, 249, 255, 0.95);
  margin-bottom: var(--space-lg);
  max-width: 600px;
  line-height: 1.55;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Breadcrumbs (inner pages) */
.hero__breadcrumb {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(224, 242, 254, 0.85);
  margin-bottom: var(--space-sm);
}

.hero__breadcrumb a {
  color: rgba(224, 242, 254, 0.85);
}

.hero__breadcrumb a:hover {
  color: var(--sky-300);
}

.hero__breadcrumb span {
  margin: 0 8px;
}


/* ============================================================
   BUTTONS (Modern Travel CTAs)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--sky-500) 0%, var(--sky-600) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
  border: none;
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--sky-600) 0%, var(--sky-700) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.45);
}

.btn--secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}

.btn--secondary:hover {
  border-color: var(--white);
  color: var(--sky-700);
  background-color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background-color: var(--white);
  color: var(--sky-600);
  border: 1.5px solid var(--sky-600);
}

.btn--outline:hover {
  background-color: var(--sky-50);
  color: var(--sky-800);
  border-color: var(--sky-800);
  transform: translateY(-2px);
}

.btn--dark {
  background-color: var(--slate-900);
  color: var(--white);
}

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

.btn--whatsapp {
  background-color: #25D366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
  background-color: #1eb956;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn--large {
  padding: 16px 36px;
  font-size: var(--text-base);
  border-radius: var(--radius-md);
}

.btn svg {
  width: 18px;
  height: 18px;
}


/* ============================================================
   CARDS (Clean White & Light Blue Travel Style)
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  transition: transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out),
              border-color var(--duration) var(--ease-out);
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--sky-300);
  box-shadow: var(--shadow-xl);
}

.card__image {
  width: 100%;
  height: 230px;
  overflow: hidden;
  position: relative;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.card:hover .card__image img {
  transform: scale(1.06);
}

.card__body {
  padding: var(--space-md);
}

.card__tag {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sky-600);
  background: var(--sky-100);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: var(--space-xs);
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: var(--space-xs);
}

.card__text {
  font-size: var(--text-sm);
  color: var(--slate-500);
  margin-bottom: var(--space-md);
  line-height: 1.55;
}

.card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: var(--text-sm);
  color: var(--slate-500);
  margin-bottom: var(--space-md);
}

.card__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.card__meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--sky-600);
}

.card__footer {
  padding: var(--space-sm) var(--space-md);
  border-top: 1px solid var(--slate-100);
  background: var(--slate-50);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card__price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--sky-600);
}

.card__price small {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--slate-400);
}

/* Feature Card */
.feature-card {
  padding: var(--space-lg);
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease-out);
}

.feature-card:hover {
  border-color: var(--sky-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sky-100);
  border-radius: var(--radius-md);
  color: var(--sky-600);
}

.feature-card__icon svg {
  width: 28px;
  height: 28px;
}

.feature-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--slate-900);
}

.feature-card__text {
  font-size: var(--text-sm);
  color: var(--slate-500);
  line-height: 1.6;
}

/* Comparison Card */
.compare-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease-out);
}

.compare-card:hover {
  border-color: var(--sky-400);
  box-shadow: var(--shadow-lg);
}

.compare-card__header {
  padding: var(--space-md);
  background: var(--sky-50);
  border-bottom: 1px solid var(--sky-100);
}

.compare-card__label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sky-600);
  font-weight: 700;
}

.compare-card__name {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-top: 4px;
  color: var(--slate-900);
}

.compare-card__body {
  padding: var(--space-md);
}

.compare-card__list {
  margin-bottom: var(--space-md);
}

.compare-card__list li {
  padding: 9px 0;
  border-bottom: 1px solid var(--slate-100);
  font-size: var(--text-sm);
  color: var(--slate-600);
  display: flex;
  align-items: center;
  gap: 8px;
}

.compare-card__list li:last-child {
  border-bottom: none;
}

.compare-card__list li svg {
  width: 16px;
  height: 16px;
  color: var(--sky-600);
  flex-shrink: 0;
}

.compare-card__ideal {
  font-size: var(--text-sm);
  color: var(--slate-500);
  margin-bottom: var(--space-md);
}

.compare-card__footer {
  padding: var(--space-sm) var(--space-md) var(--space-md);
}


/* ============================================================
   TESTIMONIALS & REVIEWS
   ============================================================ */
.testimonial,
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--slate-200);
  border-left: 4px solid var(--sky-500);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--duration) var(--ease-out);
}

.testimonial:hover,
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--sky-300);
}

.testimonial__quote,
.testimonial-card__quote {
  font-size: var(--text-md);
  color: var(--slate-700) !important;
  margin-bottom: var(--space-md);
  line-height: 1.65;
  font-style: italic;
}

.testimonial__author,
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-card__author {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  border-top: 1px solid var(--slate-100);
  padding-top: var(--space-sm);
}

.testimonial-card__author strong {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--slate-900);
}

.testimonial-card__author span {
  font-size: var(--text-xs);
  color: var(--slate-500);
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sky-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--sky-700);
  font-size: var(--text-sm);
}

.testimonial__name {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--slate-900) !important;
}

.testimonial__meta {
  font-size: var(--text-xs);
  color: var(--slate-500) !important;
}

.testimonial__stars,
.testimonial-card__stars {
  display: flex;
  gap: 2px;
  color: var(--accent-gold);
  margin-bottom: var(--space-xs);
}

.testimonial-card__stars {
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.testimonial__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-gold);
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease-out);
}

.review-card:hover {
  border-color: var(--sky-300);
  box-shadow: var(--shadow-md);
}

.review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}

.review-card__stars {
  display: flex;
  gap: 2px;
}

.review-card__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-gold);
}

.review-card__tour {
  font-size: var(--text-xs);
  color: var(--sky-600);
  font-weight: 700;
  text-transform: uppercase;
  background: var(--sky-50);
  padding: 3px 8px;
  border-radius: 4px;
}

.review-card__text {
  font-size: var(--text-base);
  color: var(--slate-700);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.review-card__footer {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sky-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--sky-700);
  font-size: var(--text-sm);
}

.review-card__name {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--slate-900);
}

.review-card__date {
  font-size: var(--text-xs);
  color: var(--slate-400);
}


/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--slate-800);
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--slate-800);
  transition: border-color var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--sky-600);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--slate-400);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748B' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-sm);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--sky-600);
  flex-shrink: 0;
  margin-top: 2px;
}

.form-error {
  font-size: var(--text-xs);
  color: #dc2626;
  margin-top: 4px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-lg);
}


/* ============================================================
   STEPS / PROCESS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  counter-reset: step-counter;
}

.step {
  position: relative;
  padding: var(--space-lg);
  padding-top: calc(var(--space-lg) + 20px);
  counter-increment: step-counter;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
}

.step::before {
  content: counter(step-counter, decimal-leading-zero);
  position: absolute;
  top: 14px;
  left: var(--space-lg);
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--sky-200);
  line-height: 1;
}

.step__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--slate-900);
}

.step__text {
  font-size: var(--text-sm);
  color: var(--slate-500);
  line-height: 1.6;
}


/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--slate-200);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  font-family: var(--font-heading);
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--slate-900);
  text-align: left;
  cursor: pointer;
  transition: color var(--duration) var(--ease-out);
}

.faq__question:hover {
  color: var(--sky-600);
}

.faq__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background-color: var(--sky-600);
  transition: transform var(--duration) var(--ease-out);
}

.faq__icon::before {
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
}

.faq__icon::after {
  top: 2px;
  left: 9px;
  width: 2px;
  height: 16px;
}

.faq__item.active .faq__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out);
}

.faq__item.active .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding-bottom: var(--space-md);
  font-size: var(--text-sm);
  color: var(--slate-600);
  line-height: 1.6;
}


/* ============================================================
   CHECKLIST
   ============================================================ */
.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-sm);
  color: var(--slate-700);
}

.checklist__item svg {
  width: 18px;
  height: 18px;
  color: var(--sky-600);
  flex-shrink: 0;
  margin-top: 2px;
}


/* ============================================================
   CTA BANNER (Aspirational Travel Blue)
   ============================================================ */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--sky-600) 0%, var(--sky-800) 60%, var(--navy-deep) 100%);
  color: var(--white);
  padding: var(--space-3xl) 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.28) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-banner__title {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-banner__text {
  font-size: var(--text-lg);
  color: rgba(240, 249, 255, 0.9);
  margin-bottom: var(--space-lg);
}

.cta-banner__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================================
   FOOTER (Modern Travel Platform Footer)
   ============================================================ */
.footer {
  background-color: #07162c;
  color: var(--white);
  padding: var(--space-3xl) 0 var(--space-md);
  border-top: 4px solid var(--sky-500);
  position: relative;
}

/* Newsletter bar inside footer */
.footer__newsletter {
  background: rgba(2, 132, 199, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__newsletter-text h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.footer__newsletter-text p {
  font-size: var(--text-sm);
  color: rgba(240, 249, 255, 0.8);
  margin: 0;
}

.footer__newsletter-form {
  display: flex;
  gap: 8px;
  min-width: 320px;
}

.footer__newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--slate-900);
  outline: none;
}

.footer__newsletter-input:focus {
  background: #ffffff;
  box-shadow: 0 0 0 2px var(--sky-400);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1.3fr 1.3fr 1.2fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand {
  max-width: 380px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-xs);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer__logo span {
  color: var(--sky-400);
}

.footer__tagline {
  font-size: var(--text-sm);
  color: rgba(224, 242, 254, 0.75);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--space-md);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--text-sm);
  color: rgba(240, 249, 255, 0.85);
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--sky-400);
  flex-shrink: 0;
}

.footer__contact-item a {
  color: rgba(240, 249, 255, 0.85);
  transition: color var(--duration) var(--ease-out);
}

.footer__contact-item a:hover {
  color: var(--sky-400);
}

.footer__heading {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sky-300);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: 8px;
}

.footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--sky-500);
  border-radius: 2px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  color: rgba(240, 249, 255, 0.7);
  transition: all var(--duration) var(--ease-out);
  text-decoration: none;
}

.footer__link:hover {
  color: var(--sky-300);
  transform: translateX(4px);
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: var(--space-sm);
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240, 249, 255, 0.8);
  transition: all var(--duration) var(--ease-out);
}

.footer__social a:hover {
  background: var(--sky-600);
  border-color: var(--sky-500);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.4);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: var(--text-xs);
  color: rgba(224, 242, 254, 0.6);
}

.footer__badges {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  color: rgba(240, 249, 255, 0.8);
}


/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 900;
  transition: transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}


/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* ============================================================
   ITINERARY TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15px;
  width: 2px;
  height: 100%;
  background: var(--sky-200);
}

.timeline__item {
  position: relative;
  padding-bottom: var(--space-lg);
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sky-600);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--sky-400);
}

.timeline__day {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--sky-600);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.timeline__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.timeline__text {
  font-size: var(--text-sm);
  color: var(--slate-500);
  line-height: 1.6;
}


/* ============================================================
   CONTENT BLOCK (Story / Feature Rows)
   ============================================================ */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.content-block--reverse {
  direction: rtl;
}

.content-block--reverse > * {
  direction: ltr;
}

.content-block__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.content-block__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}


/* ============================================================
   TABS (Itineraries & Filters)
   ============================================================ */
.tabs {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
  border-bottom: 2px solid var(--sky-100);
  overflow-x: auto;
}

.tab {
  padding: 12px 24px;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--slate-500);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--duration) var(--ease-out);
  white-space: nowrap;
}

.tab:hover {
  color: var(--sky-600);
}

.tab.active {
  color: var(--sky-600);
  border-bottom-color: var(--sky-600);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}


/* ============================================================
   TOUR SEARCH FORM (Desktop & Responsive)
   ============================================================ */
.tour-search-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 35px -6px rgba(2, 132, 199, 0.18), 0 4px 12px rgba(15, 23, 42, 0.06);
  border: 1.5px solid var(--sky-200);
  padding: 22px 28px;
}

.tour-search-form {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.2fr auto;
  gap: 16px;
  align-items: end;
}

.tour-search-features {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--sky-100);
  font-size: var(--text-xs);
  color: var(--slate-500);
  font-weight: 600;
}


/* ============================================================
   RESPONSIVE DESIGN (Flawless Mobile & Tablet UX)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --text-5xl: 3rem;
    --text-4xl: 2.35rem;
    --text-3xl: 1.85rem;
    --space-3xl: 5rem;
    --space-2xl: 4rem;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .tour-search-form {
    grid-template-columns: 1.5fr 1fr auto;
  }
}

@media (max-width: 900px) {
  .tour-search-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tour-search-form button {
    width: 100%;
    margin-top: 4px;
  }

  .tour-search-box {
    margin-top: -36px;
    padding: 18px 20px;
  }

  .tour-search-features {
    justify-content: flex-start;
    gap: 10px 18px;
  }
}

/* Mobile Nav Open State (guarantees header is crisp white and readable) */
.nav.nav--menu-open,
.nav:has(.nav__hamburger--active) {
  background-color: var(--white) !important;
  box-shadow: var(--shadow-md) !important;
}

.nav.nav--menu-open .nav__logo,
.nav:has(.nav__hamburger--active) .nav__logo {
  color: var(--slate-900) !important;
}

.nav.nav--menu-open .nav__hamburger span,
.nav:has(.nav__hamburger--active) .nav__hamburger span {
  background-color: var(--slate-900) !important;
}

.nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(100vh - var(--nav-height));
  height: calc(100dvh - var(--nav-height));
  background-color: var(--white);
  padding: 16px 20px 90px;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 999;
}

.nav__mobile-menu.active {
  display: flex;
}

.nav__mobile-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-800);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  min-height: 48px;
  transition: all var(--duration) var(--ease-out);
}

.nav__mobile-link:hover,
.nav__mobile-link:active {
  background-color: var(--sky-50);
  color: var(--sky-600);
  padding-left: 18px;
}

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

@media (max-width: 768px) {
  :root {
    --text-5xl: 2.15rem;
    --text-4xl: 1.75rem;
    --text-3xl: 1.4rem;
    --text-2xl: 1.25rem;
    --space-3xl: 3.5rem;
    --space-2xl: 2.5rem;
    --space-xl: 2rem;
    --nav-height: 64px;
  }

  body {
    font-size: 0.95rem;
  }

  .hero {
    min-height: auto;
    padding: 115px 0 55px;
    align-items: center;
  }

  .hero--full {
    min-height: auto;
    padding: 125px 0 70px;
  }

  .hero--medium {
    min-height: auto;
    padding: 105px 0 45px;
  }

  .hero__title {
    font-size: 2.15rem;
    margin-bottom: 12px;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 22px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .content-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .content-block__image img {
    height: 240px;
    width: 100%;
    object-fit: cover;
  }

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

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px !important; /* Prevents auto-zoom on iOS */
    padding: 12px 14px;
    min-height: 46px;
    width: 100%;
  }

  .form-card {
    padding: 24px 18px;
  }

  /* Reset sticky sidebars on mobile so they don't break flow */
  .sticky-sidebar,
  [style*="position:sticky"] {
    position: static !important;
    top: auto !important;
  }

  /* Tabs horizontal touch scroll on mobile */
  .tabs {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 16px;
    margin: 0 -16px;
    gap: 8px;
    white-space: nowrap;
    flex-wrap: nowrap;
  }

  .tabs::-webkit-scrollbar {
    display: none;
  }

  .tab {
    padding: 10px 18px;
    font-size: var(--text-xs);
    flex-shrink: 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* Footer Mobile */
  .footer {
    padding: 48px 0 24px;
  }

  .footer__newsletter {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 20px 16px;
    gap: 16px;
  }

  .footer__newsletter-form {
    flex-direction: column;
    min-width: 0;
    width: 100%;
  }

  .footer__newsletter-form button {
    width: 100%;
    min-height: 48px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__brand {
    max-width: 100%;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer__badges {
    justify-content: center;
  }

  .footer__social {
    justify-content: center;
  }

  .checklist {
    grid-template-columns: 1fr;
  }

  .nav__inner {
    padding: 0 16px;
  }

  .btn--large {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .cta-banner {
    padding: 48px 0;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cta-banner__actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__title {
    font-size: 1.85rem;
    line-height: 1.18;
  }

  .hero__label {
    font-size: 10px;
    padding: 4px 10px;
  }

  .card__image {
    height: 180px;
  }

  .card__body {
    padding: 14px;
  }

  .card__footer {
    padding: 10px 14px;
  }

  .card__price {
    font-size: 1.2rem;
  }

  .feature-card {
    padding: 20px 16px;
  }

  .form-card {
    padding: 20px 14px;
  }

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

  .section {
    padding: 40px 0;
  }

  .footer__contact-item {
    font-size: var(--text-xs);
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .hero__title {
    font-size: 1.65rem;
  }

  .hero__subtitle {
    font-size: 0.9rem;
  }

  .card__body {
    padding: 12px;
  }

  .footer__badge-item {
    font-size: 11px;
    padding: 4px 8px;
  }
}

