/* ==========================================================================
   TRAVELWAALA - Modern, Premium Tour & Travel Agency Stylesheet
   Color Palette: Deep Navy Blue, Sky Blue Accents, Vibrant CTA Orange, Crisp White
   ========================================================================== */

:root {
  --primary: #0A2240;
  --primary-dark: #061528;
  --primary-light: #123766;
  --accent-sky: #0284C7;
  --accent-sky-light: #E0F2FE;
  --accent-sky-glow: rgba(2, 132, 199, 0.15);
  --accent-orange: #F97316;
  --accent-orange-hover: #EA580C;
  --accent-gold: #F59E0B;
  --whatsapp-green: #25D366;
  --whatsapp-green-dark: #1EBE5B;
  --success: #10B981;
  
  --bg-body: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-subtle: #F1F5F9;
  
  --text-main: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;
  
  --border-light: #E2E8F0;
  --border-subtle: #F1F5F9;
  --border-focus: #0284C7;
  
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 35px -5px rgba(10, 34, 64, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 15px 30px rgba(10, 34, 64, 0.14);

  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s ease;
  --transition-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-secondary);
  background-color: var(--bg-body);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2rem, 4vw + 1rem, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 2.5vw + 0.8rem, 2.35rem); }
h3 { font-size: clamp(1.25rem, 1.8vw + 0.5rem, 1.55rem); }
h4 { font-size: 1.15rem; }

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

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

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container-narrow {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

/* Top Bar */
.top-bar {
  background-color: var(--primary-dark);
  color: #cbd5e1;
  font-size: 12.5px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-info-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #cbd5e1;
}

.top-info-item a {
  color: #cbd5e1;
}

.top-info-item a:hover {
  color: #38bdf8;
}

.top-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-size: 12px;
  transition: all var(--transition-fast);
}

.top-social-link:hover {
  background: var(--accent-sky);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Main Navbar */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-normal);
}

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

/* Logo */
.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.site-logo {
  height: 64px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
}

.footer-logo {
  height: 62px;
  width: auto;
  object-fit: contain;
  background: #ffffff;
  border-radius: 12px;
  padding: 6px 10px;
  display: inline-block;
  margin-bottom: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition-fast);
}

.footer-logo:hover {
  transform: scale(1.03);
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-main);
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-sky);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-sky);
  transition: width var(--transition-normal);
  border-radius: 2px;
}

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

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.dropdown-trigger svg {
  transition: transform var(--transition-fast);
}

.nav-dropdown:hover .dropdown-trigger svg,
.nav-dropdown.open .dropdown-trigger svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 100;
}

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

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.dropdown-item:hover,
.dropdown-item.active {
  background-color: var(--accent-sky-light);
  color: var(--accent-sky);
  padding-left: 18px;
  font-weight: 600;
}

/* Header CTAs */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--primary);
  padding: 8px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.btn-header-call:hover {
  border-color: var(--accent-sky);
  color: var(--accent-sky);
  background: var(--accent-sky-light);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ea580c 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fb923c 0%, var(--accent-orange) 100%);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
  transform: translateY(-1px);
  color: #ffffff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-light);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  border-color: var(--accent-sky);
  color: var(--accent-sky);
  background: var(--accent-sky-light);
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 24px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(10, 34, 64, 0.25);
  transition: all var(--transition-fast);
}

.btn-navy:hover {
  background: var(--primary-light);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
  padding: 6px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 560px;
  background: linear-gradient(180deg, rgba(6, 21, 40, 0.78) 0%, rgba(10, 34, 64, 0.88) 100%),
              url('https://images.unsplash.com/photo-1548013146-72479768bada?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  color: #ffffff;
  padding: 70px 0 90px;
  display: flex;
  align-items: center;
}

.hero-content {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  color: #f8fafc;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 10px var(--accent-orange);
}

.hero-title {
  color: #ffffff;
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title span {
  background: linear-gradient(120deg, #38bdf8 0%, #facc15 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.25rem);
  color: #e2e8f0;
  max-width: 720px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

/* Hero Search / Booking Widget */
.booking-search-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  margin-top: 20px;
  color: var(--text-main);
  text-align: left;
}

.search-form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.field-input, .field-select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  background-color: var(--bg-body);
  color: var(--text-main);
  font-weight: 500;
  font-size: 14px;
  transition: all var(--transition-fast);
}

.field-input:focus, .field-select:focus {
  outline: none;
  border-color: var(--accent-sky);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.search-submit-btn {
  height: 48px;
  padding: 0 26px;
  border: none;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ea580c 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.search-submit-btn:hover {
  background: linear-gradient(135deg, #fb923c 0%, var(--accent-orange) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.45);
}

/* Quick Trust Highlights below Hero */
.trust-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
  box-shadow: var(--shadow-sm);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

.trust-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-sky-light);
  color: var(--accent-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.trust-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.trust-text p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ==========================================================================
   Section Headers & Common Blocks
   ========================================================================== */
.section {
  padding: 70px 0;
}

.section-subtle {
  background-color: var(--bg-subtle);
}

.section-navy {
  background-color: var(--primary);
  color: #ffffff;
}

.section-navy h2, .section-navy h3, .section-navy h4 {
  color: #ffffff;
}

.section-navy p {
  color: #cbd5e1;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 45px;
}

.section-subtitle-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-sky);
  background: var(--accent-sky-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  font-size: 15.5px;
  color: var(--text-secondary);
}

/* ==========================================================================
   Destination Cards
   ========================================================================== */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: #cbd5e1;
}

.destination-image-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.destination-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover .destination-image-wrap img {
  transform: scale(1.08);
}

.destination-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10, 34, 64, 0.75);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.3px;
}

.destination-content {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.destination-content h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--text-main);
}

.destination-content p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 16px;
  flex-grow: 1;
}

.destination-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
}

.destination-link-btn {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-sky);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition-fast);
}

.destination-link-btn:hover {
  gap: 8px;
  color: var(--primary);
}

/* ==========================================================================
   Tour Package Cards
   ========================================================================== */
.package-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}

.filter-tab-btn {
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-tab-btn:hover, .filter-tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(10, 34, 64, 0.2);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.package-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

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

.package-image-holder {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.package-image-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover .package-image-holder img {
  transform: scale(1.06);
}

.package-duration-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(10, 34, 64, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.package-loc-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ffffff;
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.package-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

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

.package-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.package-itinerary-preview {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 16px;
  background: var(--bg-body);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent-sky);
}

/* Inclusions icons */
.package-inclusions {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.inclusion-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-secondary);
}

.inclusion-pill svg {
  color: var(--accent-sky);
}

.package-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.price-box {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  font-weight: 600;
}

.price-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
}

.package-action-btns {
  display: flex;
  gap: 8px;
}

.btn-card-enquire {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ea580c 100%);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-card-enquire:hover {
  background: linear-gradient(135deg, #fb923c 0%, var(--accent-orange) 100%);
  transform: translateY(-1px);
}

.btn-card-details {
  background: #ffffff;
  color: var(--primary);
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.btn-card-details:hover {
  border-color: var(--accent-sky);
  color: var(--accent-sky);
  background: var(--accent-sky-light);
}

/* ==========================================================================
   Services Grid
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: #cbd5e1;
}

.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-sky-light) 0%, #bae6fd 100%);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background: var(--primary);
  color: #ffffff;
}

.service-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--text-main);
}

.service-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-btn {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-sky);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.service-btn:hover {
  gap: 9px;
  color: var(--primary);
}

/* ==========================================================================
   Why Choose Us & Process
   ========================================================================== */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.why-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

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

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f0fdf4;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.why-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--text-main);
}

.why-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* 4-Step Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.process-step-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  text-align: center;
  border: 1px solid var(--border-light);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-sky) 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3);
}

.process-step-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.process-step-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   About Section Component
   ========================================================================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image-stack {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-floating-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 14px;
}

.floating-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-orange);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.floating-text h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.floating-text p {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
}

.about-text-content h2 {
  margin-bottom: 18px;
}

.about-text-content p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.65;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

.highlight-item svg {
  color: var(--success);
  flex-shrink: 0;
}

/* ==========================================================================
   Realistic Testimonials
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.testimonial-rating {
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-sky) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}

.author-info h4 {
  font-size: 14.5px;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 12px;
  color: var(--accent-sky);
  font-weight: 600;
}

/* ==========================================================================
   Blog & Travel Inspiration
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.blog-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

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

.blog-img-holder {
  height: 190px;
  overflow: hidden;
  position: relative;
}

.blog-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-img-holder img {
  transform: scale(1.05);
}

.blog-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.blog-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-title {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--text-main);
  line-height: 1.35;
}

.blog-title a {
  color: inherit;
}

.blog-title a:hover {
  color: var(--accent-sky);
}

.blog-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.blog-read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-sky);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #0d3868 100%);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.25) 0%, rgba(2, 132, 199, 0) 70%);
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

.cta-banner p {
  color: #e2e8f0;
  font-size: 16px;
  margin-bottom: 30px;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   Contact Section & Layout
   ========================================================================== */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--primary);
  color: #ffffff;
  padding: 36px 30px;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-card h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 12px;
}

.contact-info-card p {
  color: #cbd5e1;
  font-size: 14px;
  margin-bottom: 28px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon-bubble {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 2px;
}

.contact-detail-text a, .contact-detail-text span {
  color: #cbd5e1;
  font-size: 13.5px;
}

.contact-detail-text a:hover {
  color: #38bdf8;
}

.delhi-coverage-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 14px;
  font-size: 12.5px;
  color: #cbd5e1;
}

.delhi-coverage-badge strong {
  color: #facc15;
}

/* Contact Form Card */
.contact-form-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.contact-form-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.contact-form-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 14px;
  background-color: var(--bg-body);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-sky);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

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

.btn-form-submit {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ea580c 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
  transition: all var(--transition-fast);
}

.btn-form-submit:hover {
  background: linear-gradient(135deg, #fb923c 0%, var(--accent-orange) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
}

/* Map area */
.map-embed-wrapper {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  height: 320px;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--primary-dark);
  color: #94a3b8;
  font-size: 13.5px;
  padding: 70px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.3fr;
  gap: 36px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: var(--accent-orange);
}

.footer-about p {
  color: #cbd5e1;
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  color: #cbd5e1;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-nav-list a:hover {
  color: #38bdf8;
  transform: translateX(4px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #cbd5e1;
}

.footer-contact-item svg {
  color: #38bdf8;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: #cbd5e1;
}

.footer-contact-item a:hover {
  color: #38bdf8;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12.5px;
}

.footer-legal-links {
  display: flex;
  gap: 18px;
}

.footer-legal-links a {
  color: #94a3b8;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

/* ==========================================================================
   Subpage Elements (Breadcrumbs, Inner Hero, Tabs, Detail Layouts)
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #ffffff;
  padding: 50px 0 50px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(2, 132, 199, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-title {
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  margin-bottom: 12px;
}

.page-hero-subtitle {
  color: #cbd5e1;
  font-size: 16px;
  max-width: 700px;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  margin-bottom: 16px;
  color: #94a3b8;
}

.breadcrumbs a {
  color: #cbd5e1;
}

.breadcrumbs a:hover {
  color: #38bdf8;
}

.breadcrumbs .sep {
  opacity: 0.5;
}

.breadcrumbs .current {
  color: #38bdf8;
  font-weight: 600;
}

/* Itinerary Timeline */
.itinerary-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.timeline-day-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
}

.day-badge {
  background: var(--primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  height: fit-content;
  white-space: nowrap;
}

.day-body h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.day-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-main);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-toggle-icon {
  font-size: 18px;
  transition: transform var(--transition-fast);
  color: var(--accent-sky);
}

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

.faq-answer {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   Conversion Widgets (Sticky WhatsApp, Quick Call, Modal, Toast)
   ========================================================================== */

/* Floating WhatsApp button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08) translateY(-3px);
  background: var(--whatsapp-green-dark);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.floating-whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: #ffffff;
  color: var(--text-main);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile Sticky Bottom Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
  z-index: 998;
  padding: 8px 14px;
}

.mobile-sticky-inner {
  display: flex;
  gap: 10px;
}

.mobile-sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}

.m-btn-call {
  background: var(--bg-subtle);
  color: var(--primary);
  border: 1px solid var(--border-light);
}

.m-btn-whatsapp {
  background: var(--whatsapp-green);
  color: #ffffff;
}

.m-btn-enquire {
  background: var(--accent-orange);
  color: #ffffff;
}

/* Global Quick Enquiry Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 34, 64, 0.7);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

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

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: modalPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--bg-subtle);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 18px;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: #fee2e2;
  color: #ef4444;
}

/* Toast notification */
.toast-msg {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xl);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3000;
  opacity: 0;
  transition: all var(--transition-normal);
}

.toast-msg.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1080px) {
  .nav-menu {
    gap: 14px;
  }
  .nav-link {
    font-size: 13.5px;
  }
  .header-actions {
    gap: 8px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .search-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 868px) {
  .top-bar {
    display: none;
  }

  .site-logo {
    height: 50px;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border-light);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    gap: 12px;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-link {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 6px 0 6px 14px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    width: 100%;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }
  
  .header-actions .btn-header-call {
    display: none;
  }
  
  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-split {
    grid-template-columns: 1fr;
  }
  
  .about-floating-card {
    right: 10px;
    bottom: -15px;
  }
  
  .contact-split {
    grid-template-columns: 1fr;
  }
  
  .mobile-sticky-bar {
    display: block;
  }
  
  body {
    padding-bottom: 60px;
  }
  
  .floating-whatsapp-btn {
    bottom: 74px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 580px) {
  .search-form-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-strip-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .form-grid-2col {
    grid-template-columns: 1fr;
  }
  
  .cta-banner {
    padding: 40px 20px;
  }
  
  .booking-search-card {
    padding: 20px 16px;
  }
  
  .package-grid {
    grid-template-columns: 1fr;
  }
  
  .destination-grid {
    grid-template-columns: 1fr;
  }
}
