/* ==========================================================================
   BLOSSOM LAND KASHMIR TRAVELS - PREMIUM DESIGN SYSTEM
   Theme: Luxury Himalayan Travel & Kashmir Hospitality
   Colors: Kashmir Deep Sapphire, Saffron Gold, Pine Emerald, Crisp Snow
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Tokens */
  --primary-deep: #061121;
  --primary-navy: #0B1E36;
  --primary-surface: #102644;
  --primary-card: rgba(16, 38, 68, 0.7);
  --primary-border: rgba(255, 255, 255, 0.1);
  --primary-border-hover: rgba(245, 158, 11, 0.4);

  --accent-gold: #F59E0B;
  --accent-gold-dark: #D97706;
  --accent-gold-light: #FDE68A;
  --accent-saffron: #F97316;
  --accent-pine: #059669;
  --accent-pine-light: #10B981;
  --accent-sky: #38BDF8;

  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  --text-dark: #0F172A;

  --surface-light: #FFFFFF;
  --surface-light-muted: #F1F5F9;
  --surface-light-card: #FFFFFF;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 10px 25px rgba(245, 158, 11, 0.25);
  --shadow-glow: 0 0 30px rgba(245, 158, 11, 0.2);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --font-serif: 'Playfair Display', serif;
  --font-royal: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Outfit', sans-serif;

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--primary-deep);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* Container & Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

/* Typography Utilities */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-title span.highlight {
  color: var(--accent-gold);
  font-style: italic;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #061121;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.4);
  filter: brightness(1.05);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20BA56;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.45);
}

.btn-outline-gold {
  background: transparent;
  color: var(--accent-gold);
  border: 1.5px solid var(--accent-gold);
}

.btn-outline-gold:hover {
  background: var(--accent-gold);
  color: #061121;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ==========================================================================
   TOP BAR & NAVIGATION
   ========================================================================== */
.topbar {
  background: rgba(6, 17, 33, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 8px 0;
  position: relative;
  z-index: 101;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

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

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-item a:hover {
  color: var(--accent-gold);
}

.topbar {
  display: none !important;
}

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(6, 17, 33, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(6, 17, 33, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo .logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #F59E0B, #EA580C);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
}

.brand-logo-img {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  display: block;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.04);
}

.brand-logo .logo-text {
  display: flex;
  flex-direction: column;
}

.brand-logo .brand-title {
  font-family: var(--font-royal);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #FFFFFF;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-logo .brand-subtitle {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 1.2px;
  color: var(--accent-gold);
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: #E2E8F0;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.25s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 26px;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0 140px;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroKenBurns 24s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(6, 17, 33, 0.75) 0%,
    rgba(6, 17, 33, 0.55) 40%,
    rgba(6, 17, 33, 0.88) 85%,
    #061121 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -1px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.hero-title .accent {
  color: var(--accent-gold);
  font-style: italic;
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #E2E8F0;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 36px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  font-weight: 400;
}

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

.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #CBD5E1;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust-item svg {
  color: var(--accent-gold);
}

/* ==========================================================================
   FLOATING TRIP PLANNER / SEARCH BOX
   ========================================================================== */
.trip-planner-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -80px;
  margin-bottom: 40px;
}

.planner-card {
  background: rgba(11, 30, 54, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
}

.planner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.planner-header h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 10px;
}

.planner-badge {
  font-size: 0.8rem;
  background: rgba(5, 150, 105, 0.15);
  color: var(--accent-pine-light);
  border: 1px solid rgba(5, 150, 105, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.planner-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

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

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-control {
  background: rgba(6, 17, 33, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
  width: 100%;
}

.form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.form-control option {
  background: #0B1E36;
  color: #FFFFFF;
}

.planner-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.planner-info {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   DESTINATIONS SECTION ("EXPLORE KASHMIR")
   ========================================================================== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.destination-card {
  background: var(--primary-surface);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.destination-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-border-hover);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.dest-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.dest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.dest-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(6, 17, 33, 0.85);
  backdrop-filter: blur(8px);
  color: var(--accent-gold);
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dest-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dest-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.dest-tag {
  font-size: 0.8rem;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.dest-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
  min-height: 4.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dest-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-gold);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.dest-link:hover {
  gap: 12px;
  color: #FFFFFF;
}

/* ==========================================================================
   POPULAR KASHMIR PACKAGES
   ========================================================================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.package-card {
  background: var(--primary-surface);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-border-hover);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.package-img-wrap {
  position: relative;
  height: 240px;
  flex-shrink: 0;
  overflow: hidden;
}

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

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

.package-duration-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(6, 17, 33, 0.85);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 6px;
}

.package-category-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #061121;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.package-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.25;
  min-height: 3.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.package-route {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.package-highlight-box {
  background: rgba(6, 17, 33, 0.6);
  border: 1px dashed rgba(245, 158, 11, 0.3);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  color: #E2E8F0;
  margin-bottom: 18px;
}

.package-overview {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
  flex-grow: 1;
  min-height: 4.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.package-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: 12px;
  flex-wrap: nowrap;
}

.package-pricing {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.price-unit {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   EXPERIENCES SECTION
   ========================================================================== */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.exp-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.exp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.exp-card:hover .exp-img {
  transform: scale(1.1);
}

.exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 17, 33, 0.2) 0%, rgba(6, 17, 33, 0.95) 90%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.exp-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.exp-desc {
  font-size: 0.82rem;
  color: #CBD5E1;
  line-height: 1.45;
  margin-bottom: 10px;
}

.exp-btn {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--primary-surface);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-border-hover);
  background: rgba(16, 38, 68, 0.9);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 24px;
  margin-bottom: 20px;
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.why-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   HONEYMOON SPECIAL SECTION
   ========================================================================== */
.honeymoon-section {
  position: relative;
  background: linear-gradient(135deg, #131E38 0%, #1A142A 100%);
  border-top: 1px solid rgba(245, 158, 11, 0.2);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  overflow: hidden;
}

.honeymoon-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.honeymoon-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(245, 158, 11, 0.3);
}

.honeymoon-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.honeymoon-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 36px;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #E2E8F0;
}

.perk-item svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* ==========================================================================
   WINTER KASHMIR SECTION
   ========================================================================== */
.winter-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.12), transparent 50%),
              linear-gradient(180deg, #061121 0%, #0A1B30 100%);
  border-top: 1px solid rgba(56, 189, 248, 0.2);
}

.winter-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.winter-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.winter-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.winter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px;
}

.winter-tag {
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #BAE6FD;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   HOTELS & HOUSEBOATS ("STAY YOUR WAY")
   ========================================================================== */
.category-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cat-tab {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.cat-tab:hover, .cat-tab.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #061121;
}

.stays-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.stay-card {
  background: var(--primary-surface);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.stay-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-border-hover);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.stay-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px 14px 24px;
  background: rgba(6, 17, 33, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stay-cat-badge {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold);
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stay-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.stay-location {
  font-size: 0.82rem;
  color: #38BDF8;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stay-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.3;
}

.stay-room-type {
  font-size: 0.84rem;
  color: #FDE68A;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.stay-desc {
  font-size: 0.86rem;
  color: #CBD5E1;
  line-height: 1.5;
  margin-bottom: 14px;
}

.stay-amenities-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.amenity-pill {
  font-size: 0.76rem;
  color: #94A3B8;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3px 10px;
  border-radius: 6px;
}

.stay-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 2.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stay-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: 8px;
  flex-wrap: nowrap;
}

.stay-price-wrap {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.stay-price-wrap .price-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.stay-price-wrap .price-val {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 800;
  color: var(--accent-gold);
  white-space: nowrap;
  line-height: 1.2;
}

.stay-price-wrap .price-val span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stay-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.stay-actions .btn {
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  border-radius: var(--radius-full);
}

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

.transport-card {
  background: var(--primary-surface);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.transport-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-border-hover);
  box-shadow: var(--shadow-lg);
}

.transport-img-wrap {
  height: 200px;
  position: relative;
}

.transport-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.transport-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.transport-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.transport-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: rgba(6, 17, 33, 0.6);
  padding: 12px;
  border-radius: var(--radius-sm);
  margin: 14px 0 18px;
  font-size: 0.82rem;
  color: #E2E8F0;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.transport-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  flex-wrap: nowrap;
  gap: 10px;
}

/* ==========================================================================
   CUSTOMIZED KASHMIR HOLIDAY FORM
   ========================================================================== */
.custom-holiday-section {
  background: linear-gradient(180deg, #0B1E36 0%, #061121 100%);
  position: relative;
}

.custom-box {
  background: rgba(16, 38, 68, 0.85);
  border: 1px solid rgba(245, 158, 11, 0.3);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.custom-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.custom-full-col {
  grid-column: 1 / -1;
}

/* ==========================================================================
   TESTIMONIALS & REVIEWS
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--primary-surface);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.3);
}

.review-stars {
  color: var(--accent-gold);
  margin-bottom: 14px;
  font-size: 1.1rem;
  display: flex;
  gap: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: #E2E8F0;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
}

.review-author-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F59E0B, #EA580C);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #FFFFFF;
}

.author-info h5 {
  font-size: 0.95rem;
  color: #FFFFFF;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   POSTCARDS FROM KASHMIR (GALLERY)
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 17, 33, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--primary-surface);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(245, 158, 11, 0.4);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */
.final-cta-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: radial-gradient(circle at center, #102644 0%, #061121 100%);
  border-top: 1px solid rgba(245, 158, 11, 0.2);
  text-align: center;
}

.final-cta-card {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.final-cta-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.final-cta-subtitle {
  font-size: 1.25rem;
  color: #CBD5E1;
  margin-bottom: 36px;
  line-height: 1.6;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #030A14;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 0 30px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  line-height: 1.7;
  margin: 18px 0 22px;
  color: var(--text-muted);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-item svg {
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 4px;
}

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

/* ==========================================================================
   MOBILE STICKY BAR & HAMBURGER DRAWER
   ========================================================================== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(6, 17, 33, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 999;
  padding: 10px 16px;
}

.mobile-bottom-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 10px;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: #0B1E36;
  z-index: 1000;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.35s ease;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
}

.mobile-nav-drawer.open {
  right: 0;
}

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

.drawer-close {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 28px;
  cursor: pointer;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.drawer-links a {
  font-size: 1.1rem;
  font-weight: 600;
  color: #E2E8F0;
}

/* ==========================================================================
   MODALS (PACKAGE ITINERARY & DESTINATION DRAWER)
   ========================================================================== */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-backdrop.show {
  display: flex;
  opacity: 1;
}

.modal-dialog {
  background: #0B1E36;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  max-width: 840px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #FFFFFF;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.modal-hero {
  position: relative;
  height: 260px;
}

.modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, #0B1E36 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 32px;
}

.modal-body {
  padding: 32px;
}

/* Day by Day Itinerary in Modal */
.itinerary-timeline {
  position: relative;
  margin: 24px 0;
  padding-left: 32px;
}

.itinerary-timeline::before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 11px;
  width: 2px;
  background: rgba(245, 158, 11, 0.35);
}

.itinerary-day-card {
  position: relative;
  margin-bottom: 26px;
  background: rgba(6, 17, 33, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
}

.day-marker {
  position: absolute;
  left: -43px;
  top: 16px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #061121;
  font-weight: 800;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.5);
}

.day-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.day-meta {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--accent-gold);
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.day-activities {
  font-size: 0.9rem;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 12px;
}

.day-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.day-tag-pill {
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #0B1E36;
  border: 1px solid var(--accent-gold);
  color: #FFFFFF;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  animation: toastSlideIn 0.3s ease;
}

@keyframes toastSlideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   INNER PAGE HEADER & BREADCRUMBS
   ========================================================================== */
.page-header {
  position: relative;
  padding: 100px 0 50px;
  background: linear-gradient(180deg, rgba(6, 17, 33, 0.85) 0%, rgba(6, 17, 33, 0.98) 100%),
              url('../images/hero_kashmir_dal_lake.jpg') center/cover no-repeat;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-header-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.page-header-subtitle {
  font-size: 1.15rem;
  color: #CBD5E1;
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
  background: rgba(16, 38, 68, 0.6);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.breadcrumbs a {
  color: var(--accent-gold);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* Responsive Table Wrapper */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--primary-border);
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--primary-surface);
  font-size: 0.92rem;
  min-width: 580px;
}

.rate-table th {
  background: rgba(6, 17, 33, 0.85);
  padding: 14px 18px;
  color: #F59E0B;
  text-align: left;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.rate-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #E2E8F0;
}

.rate-table tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* ==========================================================================
   ABOUT & CONTACT PAGES STYLES
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.about-text h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text p {
  color: #CBD5E1;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.about-badge-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(6, 17, 33, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  color: #FFFFFF;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.about-feature-card {
  background: var(--primary-surface);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
}

.about-feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(245, 158, 11, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin-bottom: 18px;
}

.about-feature-card h4 {
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.about-feature-card p {
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Contact Page Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-channel-card {
  background: var(--primary-surface);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

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

.contact-channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-channel-body {
  flex: 1;
}

.contact-channel-body h4 {
  color: #FFFFFF;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.contact-channel-body p {
  color: #94A3B8;
  font-size: 0.92rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

.contact-channel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-gold);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.92rem;
}

.contact-channel-link:hover {
  text-decoration: underline;
}

.contact-form-box {
  background: var(--primary-surface);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   VERIFIED PAYMENT METHODS & BANKING PARTNERS SECTION STYLING
   ========================================================================== */
.partners-payment-section {
  background: var(--primary-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.payment-card {
  background: var(--primary-surface);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.payment-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.payment-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-icon {
  font-size: 2rem;
  width: 52px;
  height: 52px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.payment-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 2px;
}

.payment-card-header p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.payment-methods-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.payment-method-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(6, 17, 33, 0.6);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.88rem;
  color: var(--text-main);
}

.method-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 0.5px;
}

.bank-details-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.bank-item h5 {
  font-size: 1rem;
  color: var(--accent-sky);
  margin-bottom: 6px;
}

.bank-meta {
  font-size: 0.85rem;
  color: #CBD5E1;
  line-height: 1.6;
}

.guarantee-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  font-size: 0.88rem;
  color: #CBD5E1;
}

.guarantee-list li {
  position: relative;
  padding-left: 24px;
  line-height: 1.5;
}

.guarantee-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent-pine-light);
  font-weight: bold;
}

/* Category Filter Tabs Base */
.category-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.cat-tab {
  background: rgba(16, 38, 68, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cat-tab:hover {
  border-color: var(--accent-gold);
  color: var(--text-main);
  background: rgba(245, 158, 11, 0.1);
}

.cat-tab.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #0F172A;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

/* Drawer Backdrop Overlay */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

/* Modal Popup Display Control */
.modal-backdrop.show {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* ==========================================================================
   HAPPY GUESTS & PHOTO REVIEWS STYLES
   ========================================================================== */
.happy-guests-hero {
  position: relative;
  padding: 120px 0 60px;
  background: linear-gradient(135deg, rgba(6, 17, 33, 0.95), rgba(11, 30, 54, 0.98)), url('../images/hero_kashmir_dal_lake.jpg') center/cover no-repeat;
  text-align: center;
  border-bottom: 1px solid var(--primary-border);
}

.happy-guests-stats-bar {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.happy-stat-card {
  background: rgba(16, 38, 68, 0.7);
  border: 1px solid rgba(245, 158, 11, 0.25);
  backdrop-filter: blur(12px);
  padding: 16px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  flex: 1 1 160px;
  max-width: 240px;
}

.happy-stat-number {
  font-family: var(--font-royal);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1.2;
}

.happy-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Featured Photo Showcase Banner */
.featured-guest-showcase {
  background: linear-gradient(145deg, #0B1E36, #102644);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  margin-bottom: 45px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
}

.guest-showcase-img-wrap {
  position: relative;
  min-height: 320px;
  max-height: 390px;
  overflow: hidden;
  background: #061121;
}

.guest-showcase-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
}

.guest-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s ease;
}

.carousel-slide:hover .guest-showcase-img {
  transform: scale(1.04);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.75);
  color: var(--accent-gold);
  border: 1px solid rgba(245, 158, 11, 0.5);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 5;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.carousel-btn:hover {
  background: var(--accent-gold);
  color: #0F172A;
  border-color: var(--accent-gold);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: 12px; }
.next-btn { right: 12px; }

.carousel-thumbs-bar {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
  background: rgba(6, 17, 33, 0.85);
  padding: 5px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(245, 158, 11, 0.3);
  backdrop-filter: blur(8px);
  max-width: 90%;
  overflow-x: auto;
}

.thumb-item {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.thumb-item:hover, .thumb-item.active {
  opacity: 1;
  border-color: var(--accent-gold);
  transform: scale(1.12);
}

.guest-showcase-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(245, 158, 11, 0.95);
  color: #0F172A;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  z-index: 2;
  backdrop-filter: blur(4px);
}

.guest-showcase-content {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.guest-showcase-stars {
  color: var(--accent-gold);
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.guest-showcase-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #F8FAFC;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}

.guest-showcase-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
}

/* Enhanced Review Cards with Photos */
.review-card-with-photo {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.3);
  background: var(--primary-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.review-image-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #061121;
}

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

.review-card-with-photo:hover .review-img {
  transform: scale(1.05);
}

.photo-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(6, 17, 33, 0.85);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.review-card-body {
  padding: 24px;
}

.review-pkg-tag {
  display: inline-block;
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent-gold);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin: 10px 0 14px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.verified-tick {
  color: var(--accent-pine-light);
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.15);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-left: 6px;
}

/* Review Filter Buttons */
.review-filter-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.review-filter-btn {
  background: rgba(16, 38, 68, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.review-filter-btn:hover {
  border-color: var(--accent-gold);
  color: var(--text-main);
  background: rgba(245, 158, 11, 0.1);
}

.review-filter-btn.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #0F172A;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}

/* ==========================================================================
   CONSOLIDATED AUTHORITATIVE MEDIA QUERIES (100% MOBILE RESPONSIVE)
   ========================================================================== */

/* --- TABLETS & MEDIUM LAPTOPS (<= 1024px) --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .honeymoon-container, .winter-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .honeymoon-img, .winter-img {
    height: 380px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .featured-guest-showcase {
    grid-template-columns: 1fr;
  }
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* --- MOBILE DEVICES & TABLETS IN PORTRAIT (<= 768px) --- */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
  }

  body {
    padding-bottom: 74px !important; /* Space for sticky bottom bar */
  }

  .container, .container-narrow {
    padding: 0 16px !important;
    width: 100% !important;
  }

  /* Inputs & Forms: Prevent iOS Auto-Zoom (Minimum 16px) */
  input, select, textarea, button {
    font-size: 16px !important;
  }

  .form-control {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Topbar & Navbar */
  .topbar {
    display: none !important;
  }

  .navbar .container {
    height: 64px !important;
    padding: 0 14px !important;
  }

  .nav-links, .nav-actions .btn {
    display: none !important;
  }

  .nav-hamburger {
    display: block !important;
    padding: 6px 10px;
    font-size: 28px;
    line-height: 1;
  }

  /* Mobile Drawer */
  .mobile-nav-drawer {
    width: 86% !important;
    max-width: 320px !important;
    height: 100vh !important;
    height: 100dvh !important;
    padding: 24px 18px !important;
  }

  .drawer-header {
    margin-bottom: 24px !important;
  }

  .drawer-links {
    gap: 14px !important;
    margin-bottom: 24px !important;
  }

  .drawer-links a {
    font-size: 1rem !important;
  }

  /* Page Headers on Inner Pages */
  .page-header {
    padding: 70px 0 35px !important;
  }

  .page-header-title {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
  }

  .page-header-subtitle {
    font-size: 0.95rem !important;
    padding: 0 8px;
  }

  /* Hero Section (Front Page) */
  .hero-section {
    padding: 60px 0 90px !important;
    min-height: auto !important;
  }

  .hero-content {
    text-align: center !important;
    padding: 0 12px !important;
  }

  .hero-title {
    font-size: 2rem !important;
    line-height: 1.25 !important;
    letter-spacing: -0.5px !important;
  }

  .hero-subtitle {
    font-size: 0.92rem !important;
    margin: 0 auto 20px !important;
    line-height: 1.6 !important;
  }

  .hero-cta-group {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
    align-items: stretch !important;
  }

  .hero-cta-group .btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 13px 18px !important;
    font-size: 0.92rem !important;
  }

  .hero-trust-bar {
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 0.82rem !important;
    margin-top: 24px !important;
  }

  /* Floating Trip Planner / Forms */
  .trip-planner-wrapper {
    margin-top: -30px !important;
    padding: 0 10px !important;
  }

  .planner-card {
    padding: 18px 14px !important;
    border-radius: var(--radius-md) !important;
  }

  .planner-header {
    flex-direction: column !important;
    text-align: center !important;
    gap: 8px !important;
  }

  .planner-header h3 {
    justify-content: center !important;
    font-size: 1.15rem !important;
  }

  .planner-form-grid, .custom-form-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .planner-footer {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    text-align: center !important;
  }

  .planner-footer .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Sections & Padding */
  .section-padding {
    padding: 44px 0 !important;
  }

  .section-title-wrap {
    text-align: center !important;
    margin-bottom: 28px !important;
    padding: 0 10px !important;
  }

  .section-title {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
  }

  .section-subtitle {
    font-size: 0.90rem !important;
    max-width: 100% !important;
    line-height: 1.55 !important;
  }

  /* Category Filter Tabs - Smooth Touch Horizontal Swipe */
  .category-tabs, .review-filter-bar {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 4px 4px 12px !important;
    gap: 8px !important;
    margin-bottom: 20px !important;
    justify-content: flex-start !important;
    scrollbar-width: none !important;
  }

  .category-tabs::-webkit-scrollbar, .review-filter-bar::-webkit-scrollbar {
    display: none !important;
  }

  .cat-tab, .review-filter-btn {
    flex-shrink: 0 !important;
    padding: 8px 14px !important;
    font-size: 0.82rem !important;
    white-space: nowrap !important;
  }

  /* Grids: Single Column on Mobile */
  .packages-grid, .destinations-grid, .stays-grid, .experiences-grid, 
  .about-features-grid, .payment-partners-grid, .reviews-grid, .why-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  /* Cards Mobile Formatting */
  .package-card, .dest-card, .stay-card, .transport-card, .review-card-with-photo, .why-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  .pkg-img-wrap, .dest-img-wrap, .stay-img-wrap, .transport-img-wrap, .review-image-wrap {
    height: 190px !important;
  }

  .pkg-body, .dest-body, .stay-body, .transport-body, .review-card-body {
    padding: 16px 14px !important;
  }

  .pkg-title, .dest-title, .stay-title, .transport-title {
    font-size: 1.15rem !important;
  }

  .pkg-card-footer, .stay-footer, .transport-footer {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    padding-top: 12px !important;
  }

  .pkg-price-wrap, .stay-price-wrap {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
  }

  .pkg-actions, .stay-actions, .transport-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .pkg-actions .btn, .stay-actions .btn, .transport-actions .btn {
    flex: 1 !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 10px 8px !important;
    font-size: 0.82rem !important;
    white-space: nowrap !important;
  }

  /* Honeymoon & Winter Promo Sections */
  .honeymoon-container, .winter-container {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .honeymoon-img, .winter-img {
    height: 240px !important;
    border-radius: var(--radius-lg) !important;
  }

  .honeymoon-perks {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin: 18px 0 24px !important;
  }

  .winter-tags {
    gap: 8px !important;
    margin: 18px 0 24px !important;
  }

  .winter-tag {
    font-size: 0.78rem !important;
    padding: 5px 10px !important;
  }

  /* Happy Guests Page */
  .happy-guests-hero {
    padding: 80px 0 40px !important;
  }

  .happy-guests-stats-bar {
    gap: 12px !important;
  }

  .happy-stat-card {
    flex: 1 1 120px !important;
    padding: 12px 14px !important;
  }

  .happy-stat-number {
    font-size: 1.4rem !important;
  }

  .guest-showcase-img-wrap {
    min-height: 240px !important;
    height: 240px !important;
  }

  .guest-showcase-content {
    padding: 20px 16px !important;
  }

  .guest-showcase-quote {
    font-size: 1.05rem !important;
  }

  /* About & Contact Details */
  .about-img-wrap img {
    height: 250px !important;
  }

  .about-badge-float {
    position: static !important;
    margin-top: 14px !important;
    padding: 14px !important;
  }

  .about-text h3 {
    font-size: 1.6rem !important;
  }

  .contact-form-box {
    padding: 22px 16px !important;
  }

  .contact-channel-card {
    padding: 16px 14px !important;
    gap: 14px !important;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 28px !important;
  }

  .footer-brand {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
  }

  /* Modals */
  .modal-backdrop {
    padding: 10px !important;
  }

  .modal-dialog {
    width: 96% !important;
    max-width: 96% !important;
    margin: auto !important;
    border-radius: var(--radius-lg) !important;
    max-height: 90vh !important;
    max-height: 90dvh !important;
    overflow-y: auto !important;
  }

  .modal-hero {
    height: 160px !important;
  }

  .modal-hero-overlay {
    padding: 14px 16px !important;
  }

  .modal-hero-overlay h2 {
    font-size: 1.3rem !important;
  }

  .modal-body {
    padding: 18px 14px !important;
  }

  .itinerary-timeline {
    padding-left: 24px !important;
  }

  .itinerary-timeline::before {
    left: 8px !important;
  }

  .itinerary-day-card {
    padding: 14px !important;
    margin-bottom: 18px !important;
  }

  .day-marker {
    left: -32px !important;
    width: 20px !important;
    height: 20px !important;
    font-size: 0.7rem !important;
  }

  /* Mobile Sticky Bottom Action Bar */
  .mobile-bottom-bar {
    display: block !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 998 !important;
    background: rgba(6, 17, 33, 0.96) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    padding: 8px 10px !important;
  }

  .mobile-bottom-actions {
    display: flex !important;
    gap: 6px !important;
    width: 100% !important;
  }

  .mobile-bottom-actions .btn {
    flex: 1 !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 10px 4px !important;
    font-size: 0.80rem !important;
    white-space: nowrap !important;
  }
}

/* --- SMALL COMPACT SMARTPHONES (<= 480px) --- */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem !important;
  }

  .section-title {
    font-size: 1.55rem !important;
  }

  .brand-logo-img {
    height: 36px !important;
  }

  .brand-logo .brand-title {
    font-size: 0.82rem !important;
  }

  .brand-logo .brand-subtitle {
    font-size: 0.55rem !important;
  }

  .happy-stat-card {
    flex: 1 1 100% !important;
  }

  .custom-box {
    padding: 18px 12px !important;
  }
}





