/* Import Premium Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* Design Tokens & CSS Variables */
:root {
  --color-primary: #0A3622;      /* Deep Emerald Green */
  --color-primary-light: #125436;/* Lighter Emerald for Hover */
  --color-secondary: #D4AF37;    /* Champagne Gold */
  --color-secondary-dark: #AA8B24;/* Dark Gold */
  --color-bg-light: #FFFFFF;     /* Pure White */
  --color-bg-card: #FFFFFF;      /* White for Cards */
  --color-text-dark: #1A2421;    /* Charcoal Slate */
  --color-text-muted: #556B61;   /* Muted Gray Green */
  --color-border: #E5E0D8;       /* Soft Beige Border */
  --color-gold-opacity: rgba(212, 175, 55, 0.15);
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', Helvetica, Arial, sans-serif;
  
  --shadow-sm: 0 4px 6px -1px rgba(10, 54, 34, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(10, 54, 34, 0.08), 0 4px 6px -2px rgba(10, 54, 34, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(10, 54, 34, 0.12), 0 10px 10px -5px rgba(10, 54, 34, 0.06);
  --shadow-gold: 0 10px 25px rgba(212, 175, 55, 0.2);
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease-in-out;
  
  --max-width: 1280px;
}

/* Global Reset & Styling */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img, video {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: clip;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.25;
}

h2 {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--color-secondary);
}

.text-center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* Component: Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-secondary);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  color: var(--color-primary);
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn-secondary:hover {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: var(--shadow-gold);
}

/* Global Social & Contact Header (Top Bar) */
.top-contact-bar {
  background-color: var(--color-primary);
  color: var(--color-bg-light);
  padding: 0.5rem 2rem;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-body);
}

.top-contact-bar .contact-info {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-contact-bar .contact-info a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.85;
}

.top-contact-bar .contact-info a:hover {
  opacity: 1;
  color: var(--color-secondary);
}

.top-contact-bar .social-info {
  display: flex;
  gap: 1rem;
}

.top-contact-bar .social-info a {
  opacity: 0.85;
}

.top-contact-bar .social-info a:hover {
  opacity: 1;
  color: var(--color-secondary);
}

/* Main Logo Header (Middle Bar) */
.main-header {
  background-color: var(--color-bg-light);
  padding: 1.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--color-border);
}

.main-header .brand-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.main-header .brand-logo {
  height: 90px;
  width: auto;
  margin-bottom: 0.5rem;
}

.main-header h1.brand-name {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--color-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
}

.main-header .brand-tagline {
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-weight: 500;
}

/* Navigation Bar */
.navbar {
  background-color: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar.sticky-shadow {
  box-shadow: var(--shadow-md);
  background-color: rgba(251, 249, 246, 0.95);
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-primary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-secondary);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--color-secondary-dark);
}

/* Mobile Nav Toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

.floating-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
}

.floating-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

.floating-whatsapp {
  background-color: #25D366;
}

.floating-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

/* SPA Page Transitions & View Visibility */
.page-view {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  min-height: calc(100vh - 200px);
}

.page-view.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* PAGE: HOME */
/* Hero Section with Auto-sliding Carousel */
.hero-carousel {
  position: relative;
  height: 75vh;
  min-height: 500px;
  overflow: hidden;
}

.carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.carousel-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.carousel-slide h2 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.8s ease 0.3s, opacity 0.8s ease 0.3s;
}

.carousel-slide.active h2 {
  opacity: 1;
  transform: translateY(0);
}

.carousel-slide h2::after {
  display: none;
}

.carousel-tagline {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--color-secondary);
  letter-spacing: 2px;
  margin-bottom: 2rem;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.8s ease 0.5s, opacity 0.8s ease 0.5s;
}

.carousel-slide.active .carousel-tagline {
  opacity: 1;
  transform: translateY(0);
}

.carousel-slide .btn {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.8s ease 0.7s, opacity 0.8s ease 0.7s;
}

.carousel-slide.active .btn {
  opacity: 1;
  transform: translateY(0);
}

/* Carousel Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 5;
}

.indicator {
  width: 45px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
}

.indicator.active {
  background-color: var(--color-secondary);
}

.indicator-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: var(--color-secondary);
}

.indicator.active .indicator-progress {
  animation: progressFill 6s linear forwards;
}

@keyframes progressFill {
  0% { width: 0; }
  100% { width: 100%; }
}

/* Carousel Navigation Arrows */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 54, 34, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition-smooth);
}

.carousel-nav-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-secondary);
}

.carousel-prev { left: 2rem; }
.carousel-next { right: 2rem; }

/* Vision & Preview Section */
.vision-section {
  padding: 6rem 2rem;
  background-color: var(--color-bg-light);
  text-align: center;
}

.section-container {
  max-width: 900px;
  margin: 0 auto;
}

.vision-slogan {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--color-secondary-dark);
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.vision-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* Destinations Preview Section */
.destinations-preview {
  padding: 6rem 2rem;
  background-color: #fff;
}

.destinations-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto 3.5rem auto;
}

.dest-preview-card {
  height: 350px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.dest-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.dest-preview-card:hover img {
  transform: scale(1.08);
}

.dest-preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 54, 34, 0.85) 0%, rgba(1, 1, 1, 0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: #fff;
  transition: var(--transition-smooth);
}

.dest-preview-card:hover .dest-preview-overlay {
  background: linear-gradient(to top, rgba(10, 54, 34, 0.95) 0%, rgba(10, 54, 34, 0.2) 100%);
}

.dest-preview-overlay h3 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.dest-preview-overlay p {
  color: var(--color-secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dest-preview-overlay .explore-indicator {
  max-height: 0;
  opacity: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  margin-top: 0.5rem;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.dest-preview-card:hover .explore-indicator {
  max-height: 40px;
  opacity: 1;
}

/* PAGE: TOUR PACKAGES */
.packages-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem;
}

.packages-layout {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}

/* Sidebar Filters */
.sidebar-filters {
  flex: 0 0 280px;
  background-color: #fff;
  padding: 2rem;
  border: 1px solid var(--color-border);
  height: fit-content;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow-sm);
}

.filter-group {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.5rem;
}

.filter-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.filter-group h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

/* Checkbox Styling */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 400;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
}

.checkbox-container:hover input ~ .checkmark {
  background-color: #eee;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 4px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Slider Design */
.range-slider-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--color-border);
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-secondary);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.range-values {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Select Dropdown */
.select-wrapper {
  position: relative;
}

.filter-select {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 0;
  background-color: var(--color-bg-light);
  appearance: none;
  outline: none;
}

.select-wrapper::after {
  content: '▼';
  font-size: 0.65rem;
  color: var(--color-primary);
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Content Area */
.packages-content {
  flex: 1;
}

.packages-intro {
  margin-bottom: 2rem;
}

.packages-intro p {
  font-size: 1.1rem;
  max-width: 1000px;
}

/* Tab Section */
.tab-container {
  display: flex;
  gap: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 2.5rem;
}

.tab-btn {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  padding: 0.75rem 0.5rem;
  cursor: pointer;
  color: var(--color-text-muted);
  position: relative;
  transition: var(--transition-fast);
}

.tab-btn:hover {
  color: var(--color-primary);
}

.tab-btn.active {
  color: var(--color-primary);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-secondary);
}

/* Grid layout for cards */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.no-packages-msg {
  grid-column: span 2;
  text-align: center;
  padding: 4rem;
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

/* Package Card */
.package-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-secondary);
}

.package-image-container {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.package-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.package-card:hover .package-image-container img {
  transform: scale(1.05);
}

/* Creative seasonal indicators */
.seasonal-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--color-primary);
  color: var(--color-secondary);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.4rem 0.8rem;
  box-shadow: var(--shadow-sm);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.seasonal-badge.monsoon {
  background-color: #0b4f6c;
  color: #8bf;
}

.seasonal-badge.winter {
  background-color: #2b506f;
  color: #ade;
}

.seasonal-badge.summer {
  background-color: #6e4e0b;
  color: #fd9;
}

.package-details-summary {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-secondary-dark);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.package-card h3 {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 0.8rem;
}

.package-location {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-secondary-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.package-location svg {
  color: var(--color-secondary);
}

.package-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  color: var(--color-text-muted);
}

.package-highlights-container {
  margin-bottom: 1.5rem;
  background-color: rgba(10, 54, 34, 0.03);
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--color-secondary);
  border-radius: 0 4px 4px 0;
}

.highlights-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-family: var(--font-body);
}

.package-card-highlights {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.package-card-highlights li {
  font-size: 0.8rem;
  color: var(--color-text-dark);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  line-height: 1.35;
  font-weight: 400;
}

.package-card-highlights li::before {
  content: '✦';
  color: var(--color-secondary);
  font-weight: bold;
  font-size: 0.85rem;
}

.package-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
  margin-top: auto;
}

.package-price-box {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.price-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.price-amount span {
  font-size: 0.85rem;
  color: var(--color-secondary-dark);
}

/* Offer Highlights Section */
.offer-highlights {
  margin-top: 5rem;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.offer-card {
  background-color: var(--color-primary);
  color: #fff;
  border: 1px solid var(--color-secondary);
  position: relative;
  overflow: hidden;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

.offer-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-card h3 {
  font-size: 1.8rem;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.offer-card p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.offer-price {
  font-size: 2rem;
  font-family: var(--font-heading);
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.offer-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-secondary);
}

/* Detailed Package View Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 54, 34, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background-color: var(--color-bg-light);
  width: 90%;
  max-width: 900px;
  max-height: 85vh;
  overflow-y: auto;
  border: 1px solid var(--color-secondary);
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalSlide 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes modalSlide {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  background-color: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.modal-close-btn:hover {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  transform: rotate(90deg);
}

.modal-hero {
  height: 350px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 3rem;
}

.modal-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 54, 34, 0.95) 0%, rgba(0,0,0,0) 80%);
}

.modal-hero-content {
  position: relative;
  color: #fff;
  z-index: 2;
}

.modal-tagline {
  color: var(--color-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.modal-hero h2 {
  color: #fff;
  font-size: 2.5rem;
  margin: 0;
}

.modal-hero h2::after { display: none; }

.modal-body {
  padding: 3rem;
}

.modal-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  background-color: #fff;
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}

.modal-info-item {
  text-align: center;
}

.modal-info-item label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 1px;
}

.modal-info-item p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-primary);
  font-weight: 700;
}

.modal-section {
  margin-bottom: 2.5rem;
}

.modal-section h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.modal-section p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.activities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  list-style: none;
}

.activities-list li {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.activities-list li::before {
  content: '✦';
  color: var(--color-secondary);
}

.itinerary-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.itinerary-step {
  display: flex;
  gap: 1.5rem;
}

.itinerary-day {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  font-size: 0.85rem;
  font-weight: 700;
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-heading);
}

.itinerary-details h4 {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.itinerary-details p {
  font-size: 0.9rem;
}

.modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
}

.modal-footer-price {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 700;
}

.modal-footer-price span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* PAGE: DESTINATIONS */
.destinations-page {
  padding: 4rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Hero Collage */
.collage-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
  margin-bottom: 5rem;
  margin-top: 2rem;
}

.collage-item {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.collage-item:hover img {
  transform: scale(1.08);
}

.collage-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 54, 34, 0.4);
  transition: var(--transition-smooth);
}

.collage-item:hover .collage-overlay {
  background: rgba(10, 54, 34, 0.1);
}

.collage-item-1 { grid-column: span 2; grid-row: span 2; }
.collage-item-2 { grid-column: span 1; grid-row: span 1; }
.collage-item-3 { grid-column: span 1; grid-row: span 2; }
.collage-item-4 { grid-column: span 1; grid-row: span 1; }
.collage-item-5 { grid-column: span 1; grid-row: span 1; }

/* Destination Cards Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.dest-card {
  background-color: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.dest-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-secondary);
}

.dest-card-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.dest-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.dest-card:hover .dest-card-image img {
  transform: scale(1.05);
}

.dest-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dest-card h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.dest-card p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.dest-card-footer {
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-secondary-dark);
}

.dest-card-footer span {
  font-weight: 700;
  color: var(--color-text-dark);
}

/* PAGE: ABOUT US */
.about-page {
  padding: 4rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
  margin-bottom: 6rem;
}

.about-image {
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-secondary);
  padding: 0.75rem;
  background-color: #fff;
}

.about-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 450px;
}

.about-story h3 {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.about-story p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 6rem;
}

.mission-card {
  background-color: #fff;
  border: 1px solid var(--color-border);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.mission-card:hover {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.mission-icon {
  font-size: 2.5rem;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
}

.mission-card h3 {
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.mission-card p {
  font-size: 0.9rem;
}

/* Interactive Travel Gallery */
.gallery-section {
  margin-bottom: 6rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  height: 250px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 54, 34, 0.7);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
  color: var(--color-secondary);
  font-size: 2.5rem;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* About Collage Grid */
.about-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 210px 210px;
  gap: 0.5rem;
  width: 100%;
}

.collage-tile {
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--color-border);
}

.collage-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.collage-tile:hover img {
  transform: scale(1.05);
}

/* Cute Testimonial Slider Redesign */
.review-slider-section {
  background: linear-gradient(135deg, #f7f9f6 0%, #f1f5ef 100%);
  color: var(--color-primary);
  padding: 5rem 2rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  position: relative;
}

.review-slider-section::before {
  content: '🌸';
  font-size: 2.2rem;
  display: block;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.review-slider-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  height: 310px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  background: #ffffff;
  border: 1px dashed var(--color-secondary);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 25px rgba(10, 54, 34, 0.04);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.8s ease;
  transform: scale(0.95) translateY(10px);
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}

.stars {
  color: var(--color-secondary-dark);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-primary-light);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  text-transform: uppercase;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

/* PAGE: CONTACT */
.contact-page {
  padding: 4rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 4rem auto 0 auto;
}

.contact-info-panel h3 {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.contact-info-panel p {
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  background-color: var(--color-primary-light);
  color: var(--color-secondary);
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-sm);
}

.contact-details h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.contact-details p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.contact-details a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-secondary-dark);
}

.contact-details a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form-panel {
  background-color: #fff;
  border: 1px solid var(--color-border);
  padding: 3.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-panel h3 {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-primary);
}

.form-control {
  padding: 1rem;
  border: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 0.9rem;
  background-color: var(--color-bg-light);
  transition: var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--color-secondary);
  background-color: #fff;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Footer Section */
.footer {
  background-color: #121A18;
  color: rgba(255, 255, 255, 0.75);
  padding: 5rem 2rem 2rem 2rem;
  border-top: 2px solid var(--color-secondary);
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.footer-col h3::after {
  display: none;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-secondary);
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition-fast);
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
  color: var(--color-secondary);
  padding-left: 5px;
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Notification Bar for actions */
.notification {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background-color: var(--color-primary);
  color: #fff;
  border: 1px solid var(--color-secondary);
  padding: 1rem 2rem;
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
}

.notification.show {
  transform: translateY(0);
  opacity: 1;
}

.notification-tick {
  color: var(--color-secondary);
  font-size: 1.2rem;
}

/* RESPONSIVE DESIGN - MEDIA QUERIES */

/* Desktop & Laptop sizes */
@media (max-width: 1024px) {
  h2 { font-size: 2.2rem; }
  .destinations-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .packages-layout {
    gap: 2rem;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .about-intro-grid {
    gap: 2.5rem;
  }
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

/* Tablet viewports */
@media (max-width: 768px) {
  html { font-size: 15px; }
  
  .top-contact-bar {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    text-align: center;
  }
  
  .top-contact-bar .contact-info {
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .main-header h1.brand-name {
    font-size: 1.8rem;
  }
  
  .nav-container {
    justify-content: space-between;
    padding: 0 1.5rem;
  }
  
  .mobile-menu-btn {
    display: block;
    order: 2;
  }
  .mobile-menu-btn.active {
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 1002;
  }
  
  .hero-carousel {
    height: 60vh;
  }
  
  .carousel-slide h2 {
    font-size: 2.5rem;
  }
  
  .destinations-preview-grid {
    grid-template-columns: 1fr;
  }
  
  .packages-layout {
    flex-direction: column;
  }
  
  .sidebar-filters {
    flex: none;
    width: 100%;
    position: static;
  }
  
  .offer-grid {
    grid-template-columns: 1fr;
  }
  
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  
  .collage-section {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  
  .collage-item-1 { grid-column: span 2; grid-row: span 2; }
  .collage-item-3 { grid-column: span 1; grid-row: span 2; }
  
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image img {
    height: 350px;
  }
  
  .about-mission-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .contact-form-panel {
    padding: 2rem;
  }
  
  .modal-hero {
    height: 250px;
    padding: 2rem;
  }
  
  .modal-hero h2 {
    font-size: 1.8rem;
  }
  
  .modal-body {
    padding: 2rem;
  }
  
  .modal-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .activities-list {
    grid-template-columns: 1fr;
  }
  
  .modal-footer {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
  
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .modal-two-column-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .about-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  html { font-size: 14px; }
  
  .main-header h1.brand-name {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }
  
  .hero-carousel {
    height: 50vh;
  }
  
  .carousel-slide h2 {
    font-size: 2rem;
  }
  
  .carousel-tagline {
    font-size: 0.95rem;
  }
  
  .carousel-nav-btn {
    width: 40px;
    height: 40px;
  }
  
  .carousel-prev { left: 0.5rem; }
  .carousel-next { right: 0.5rem; }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .floating-actions {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .floating-btn {
    width: 45px;
    height: 45px;
  }
}

/* ==================== THE ORDINARY TRAVELS - NEW LUXURY STYLES ==================== */

/* Top contact bar overrides */
.top-contact-bar {
  justify-content: flex-start !important;
  gap: 2.5rem !important;
}

.top-contact-bar .contact-info {
  gap: 2rem !important;
}

/* Brand Logo display styling */
.brand-logo {
  max-height: 100px;
  width: auto;
  margin-bottom: 0.5rem;
}

/* Parallax Banner Scrolling */
.parallax-banner,
.parallax-divider {
  position: relative;
  background-attachment: fixed;
  background-position: center 50%;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.parallax-divider {
  padding: 8rem 2rem;
  text-align: center;
  color: #fff;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(10, 54, 34, 0.75), rgba(10, 54, 34, 0.5));
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.parallax-divider h2 {
  color: var(--color-secondary) !important;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.parallax-divider h2::after {
  background-color: var(--color-secondary);
}

.parallax-divider p {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

/* Category Section Cards */
.category-cards-section {
  padding: 3rem 0;
  max-width: var(--max-width);
  margin: 0 auto;
}

.category-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.category-card {
  height: 220px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  z-index: 1;
  transition: var(--transition-smooth);
}

/* Background image representations for category cards */
.card-beach {
  background-image: url('https://images.unsplash.com/photo-1590523277543-a94d2e4eb00b?auto=format&fit=crop&w=400&q=80');
  background-size: cover;
  background-position: center;
}
.card-forest {
  background-image: url('https://images.unsplash.com/photo-1544735716-392fe2489ffa?auto=format&fit=crop&w=400&q=80');
  background-size: cover;
  background-position: center;
}
.card-hills {
  background-image: url('https://images.unsplash.com/photo-1593693397690-362cb9666fc2?auto=format&fit=crop&w=400&q=80');
  background-size: cover;
  background-position: center;
}
.card-backwaters {
  background-image: url('https://images.unsplash.com/P3uA-pZ54aM?auto=format&fit=crop&w=400&q=80');
  background-size: cover;
  background-position: center;
}
.card-heritage {
  background-image: url('https://images.unsplash.com/photo-1599946347371-68eb71b16afc?auto=format&fit=crop&w=400&q=80');
  background-size: cover;
  background-position: center;
}

.category-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 54, 34, 0.9) 0%, rgba(10, 54, 34, 0.3) 100%);
  z-index: -1;
  transition: var(--transition-smooth);
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(212, 175, 55, 0.95) 0%, rgba(10, 54, 34, 0.4) 100%);
}

.category-card-content {
  color: #fff;
  transition: var(--transition-smooth);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: var(--color-secondary);
}

.category-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.category-card:hover .category-icon {
  transform: scale(1.15) translateY(-5px);
}

.category-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  letter-spacing: 0.5px;
}

.category-card-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 400;
}

/* Seasonal Trends Slider styles */
.seasonal-trends {
  padding: 6rem 2rem;
  background-color: #fff;
}

.trends-slider-container {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  background-color: var(--color-bg-light);
}

.trends-track {
  position: relative;
  height: 480px;
}

.trend-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.trend-slide.active {
  opacity: 1;
  visibility: visible;
}

.trend-image-container {
  height: 100%;
  overflow: hidden;
}

.trend-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trend-text-content {
  padding: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--color-bg-light);
}

.trend-season {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--color-secondary-dark);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.trend-text-content h3 {
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.trend-text-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.trend-meta-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.trends-controls {
  position: absolute;
  bottom: 2rem;
  right: 4.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 10;
}

.trend-nav-btn {
  background: var(--color-primary);
  color: #fff;
  border: 1px solid transparent;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition-fast);
}

.trend-nav-btn:hover {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.trend-dots {
  display: flex;
  gap: 0.5rem;
}

.trend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-border);
  cursor: pointer;
  transition: var(--transition-fast);
}

.trend-dot.active {
  background-color: var(--color-primary);
  transform: scale(1.3);
}

/* Themed sub-page custom styles */
.section-hero {
  height: 45vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.section-hero h2 {
  color: #fff;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.section-hero h2::after {
  background-color: var(--color-secondary);
}

.section-hero p {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 300;
  max-width: 750px;
  margin: 0 auto;
}

.section-packages-content {
  padding: 5rem 2rem;
}

.theme-intro {
  max-width: 1000px;
  margin: 0 auto 4rem auto;
  text-align: center;
}

.theme-explanation {
  font-size: 1.15rem;
  line-height: 1.8;
  font-style: italic;
  font-weight: 300;
}

/* Category sub-pages specific theme coloring overrides */
.theme-beach {
  --color-primary: #123C5E; /* Ocean Deep Blue */
  --color-primary-light: #1A5482;
  --color-secondary: #E0A949; /* Sandy Gold Accent */
  --color-secondary-dark: #C28E34;
  --color-bg-light: #F7F5F0;
}
.theme-beach h2 {
  color: #FFFFFF;
}

.theme-forest {
  --color-primary: #0F3D24; /* Deep Forest Green */
  --color-primary-light: #185E39;
  --color-secondary: #C89F38; /* Leafy Gold */
  --color-secondary-dark: #A58025;
  --color-bg-light: #F2F7F4;
}
.theme-forest h2 {
  color: #FFFFFF;
}

.theme-hills {
  --color-primary: #2B4E4D; /* Mist Slate Green */
  --color-primary-light: #3F6D6B;
  --color-secondary: #D9AF3A; /* Tea Plantation Gold */
  --color-secondary-dark: #B5902B;
  --color-bg-light: #F4F7F7;
}
.theme-hills h2 {
  color: #FFFFFF;
}

.theme-backwaters {
  --color-primary: #0C4E4F; /* Lagoon Blue Green */
  --color-primary-light: #147475;
  --color-secondary: #DCA93C; /* Reed Gold */
  --color-secondary-dark: #B6892C;
  --color-bg-light: #F2F7F7;
}
.theme-backwaters h2 {
  color: #FFFFFF;
}

.theme-heritage {
  --color-primary: #45241C; /* Historic Mahogany Brown */
  --color-primary-light: #6E3D31;
  --color-secondary: #D1A43F; /* Antique Gold */
  --color-secondary-dark: #AE852C;
  --color-bg-light: #F7F3EE;
}
.theme-heritage h2 {
  color: #FFFFFF;
}

.theme-honeymoon {
  --color-primary: #5A1827; /* Rich Wine Red */
  --color-primary-light: #7E2237;
  --color-secondary: #DCA93C; /* Romantic Gold */
  --color-secondary-dark: #B6892C;
  --color-bg-light: #FAF6F7;
}
.theme-honeymoon h2 {
  color: #FFFFFF;
}

.theme-international {
  --color-primary: #1F2E43; /* Deep Royal Navy */
  --color-primary-light: #2D425E;
  --color-secondary: #DCA93C; /* Champagne Gold */
  --color-secondary-dark: #B6892C;
  --color-bg-light: #F4F6F9;
}
.theme-international h2 {
  color: #FFFFFF;
}

/* Category card overrides for mobile responsiveness */
@media (max-width: 1024px) {
  .category-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .category-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trend-slide {
    grid-template-columns: 1fr;
    height: auto;
  }
  .trends-track {
    height: auto;
    min-height: 550px;
  }
  .trend-image-container {
    height: 200px;
  }
  .trend-text-content {
    padding: 2rem;
  }
  .trends-controls {
    right: 2rem;
    bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .category-cards-grid {
    grid-template-columns: 1fr;
  }
  .section-hero h2 {
    font-size: 2.2rem;
  }
  .section-hero p {
    font-size: 1rem;
  }
}

/* Redesigned Tour Packages themed grid & cards */
.packages-redesign-desc {
  max-width: 1000px;
  margin: 1.5rem auto 3.5rem auto;
  color: var(--color-text-muted);
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 300;
  text-align: center;
}

.packages-redesign-desc strong {
  color: var(--color-primary);
  font-weight: 600;
}

.themes-redesign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: var(--max-width);
  margin: 0 auto 5rem auto;
  padding: 0 1rem;
}

.theme-redesign-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.theme-redesign-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}

.theme-card-img {
  height: 250px;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}

.theme-redesign-card:hover .theme-card-img {
  transform: scale(1.05);
}

.theme-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.theme-card-content h3 {
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.theme-card-content p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
  flex: 1;
}

.theme-explore-btn {
  align-self: flex-start;
  margin-top: auto;
  padding: 0.75rem 2rem;
}

/* Responsiveness for Redesigned Grid */
@media (max-width: 992px) {
  .themes-redesign-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .themes-redesign-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .theme-card-img {
    height: 200px;
  }
}

/* ==================== CATEGORY FILTER BAR & PRICE-LESS CARDS ==================== */

.category-filter-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.category-filter-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background-color: rgba(10, 54, 34, 0.03);
  padding: 1.5rem 2rem;
  border: 1px solid var(--color-border);
  width: 100%;
  max-width: 700px;
}

.category-filter-bar .filter-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  min-width: 180px;
}

.category-filter-bar .filter-item label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--color-primary);
}

/* Adjustments for price-less package cards with dual action buttons */
.package-card .package-pricing {
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
  margin-top: auto;
}

.package-card .package-pricing .btn {
  flex: 1;
  padding: 0.7rem 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .category-filter-bar {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem;
  }
  .category-filter-bar .filter-item {
    width: 100%;
    min-width: 0;
  }
  .package-card .package-pricing {
    flex-direction: column;
    gap: 0.5rem;
  }
  .package-card .package-pricing .btn {
    width: 100%;
  }
}

/* ==================== CUSTOMIZE TOUR FORM MODAL STYLING ==================== */

.customize-modal-content {
  max-width: 850px;
  border-radius: 16px;
  padding: 3.5rem 3rem 3rem 3rem;
  border: 2px solid var(--color-secondary);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  background: linear-gradient(to bottom, #ffffff, #faf9f6);
}

.customize-modal-content .modal-close-btn {
  top: 1.5rem;
  right: 1.5rem;
  background-color: var(--color-bg-light);
  border: 1.5px solid var(--color-border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  color: var(--color-text-muted);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  z-index: 10;
}

.customize-modal-content .modal-close-btn:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  transform: rotate(90deg);
}

.customize-modal-header {
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
}

.customize-modal-header h2 {
  font-size: 2.4rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.customize-modal-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-secondary);
  margin: 0.75rem auto 0 auto;
  border-radius: 2px;
}

.customize-modal-header p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0.9rem auto 0 auto;
  line-height: 1.5;
}

.customize-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}

.customize-form-grid .form-group.full-width {
  grid-column: span 2;
}

.customize-form-grid .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.customize-form-grid .form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.customize-form-grid .form-group label::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: var(--color-secondary);
  border-radius: 50%;
}

.customize-form-grid .form-control {
  border-radius: 8px;
  border: 1.5px solid var(--color-border);
  padding: 0.85rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-dark);
  background-color: #ffffff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.customize-form-grid .form-control::placeholder {
  color: #a0b0a8;
  font-size: 0.9rem;
}

.customize-form-grid .form-control:hover {
  border-color: var(--color-text-muted);
  background-color: #fefefe;
}

.customize-form-grid .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-gold-opacity);
  background-color: #ffffff;
  outline: none;
}

.customize-form-grid select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A3622' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.1em;
  padding-right: 2.5rem;
  height: 48px;
  cursor: pointer;
}

.customize-form-grid textarea.form-control {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

.customize-modal-footer {
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
}

.btn-submit-custom {
  min-width: 280px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 1.1rem 3rem;
  background-color: var(--color-primary);
  color: #ffffff;
  border: 2px solid var(--color-primary);
  border-radius: 30px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-submit-custom:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-submit-custom:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .customize-modal-content {
    padding: 2rem 1.5rem;
    margin: 1rem;
    border-radius: 12px;
  }
  
  .customize-modal-header h2 {
    font-size: 1.8rem;
  }
  
  .customize-form-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .customize-form-grid .form-group.full-width {
    grid-column: span 1;
  }
  
  .btn-submit-custom {
    width: 100%;
  }
}

/* Custom additions for international package details modal */
.modal-two-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.inclusions-list, .exclusions-list, .prearrival-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.inclusions-list li, .exclusions-list li, .prearrival-list li {
  font-size: 0.9rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.inclusions-list li::before {
  content: '✓';
  color: #2e7d32;
  font-weight: bold;
  font-size: 1.1rem;
}

.exclusions-list li::before {
  content: '✕';
  color: #c62828;
  font-weight: bold;
  font-size: 1rem;
  margin-right: 2px;
}

#modal-prearrival-section {
  background-color: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--color-secondary);
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 2.5rem;
}

#modal-prearrival-section h3 {
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding-bottom: 0.5rem;
  margin-top: 0;
}

.prearrival-list li::before {
  content: '✦';
  color: var(--color-secondary);
}

.resort-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.resort-option-card {
  background: #fff;
  border: 2px solid var(--color-border);
  border-radius: 6px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
}

.resort-option-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-md);
}

.resort-option-card.selected {
  border-color: var(--color-secondary);
  background-color: rgba(212, 175, 55, 0.03);
  box-shadow: var(--shadow-gold);
}

.resort-option-card.selected::before {
  content: '✓ Selected';
  position: absolute;
  top: -12px;
  right: 15px;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.resort-option-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.75rem;
}

.resort-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.resort-stars {
  color: var(--color-secondary);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.resort-details-meta {
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.resort-meta-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.resort-meta-label {
  font-weight: 600;
  color: var(--color-primary);
  min-width: 75px;
}

.resort-meta-val {
  color: var(--color-text-dark);
}

.resort-value-adds {
  background-color: rgba(10, 54, 34, 0.03);
  padding: 0.75rem;
  border-radius: 4px;
  border-left: 2px solid var(--color-secondary);
  margin-bottom: 1rem;
}

.resort-value-adds-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}

.resort-value-adds ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.resort-value-adds li {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
  line-height: 1.3;
}

.resort-value-adds li::before {
  content: '✦';
  color: var(--color-secondary);
}

.resort-price-box {
  margin-top: auto;
  border-top: 1px solid var(--color-border);
  padding-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.resort-price-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.resort-price-amount span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.resort-select-btn {
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid var(--color-primary);
  background-color: transparent;
  color: var(--color-primary);
  font-weight: 600;
  transition: var(--transition-fast);
}

.resort-option-card.selected .resort-select-btn {
  background-color: var(--color-primary);
  color: #fff;
}

.resort-option-card:hover .resort-select-btn {
  border-color: var(--color-secondary);
}

@media (max-width: 768px) {
  .modal-two-column-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Premium Destination Card Highlight Animation */
@keyframes pulse-highlight {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.8);
    border-color: var(--color-secondary);
    transform: scale(1.03);
  }
  50% {
    box-shadow: 0 0 0 18px rgba(212, 175, 55, 0);
    border-color: var(--color-secondary);
    transform: scale(1.03);
  }
  100% {
    box-shadow: var(--shadow-sm);
    border-color: var(--color-border);
    transform: scale(1);
  }
}

.dest-card.highlight,
.package-card.highlight {
  animation: pulse-highlight 2.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  position: relative;
  z-index: 10;
}

/* ==========================================================================
   International Packages Section (Home Page)
   ========================================================================== */
.international-packages-section {
  padding: 6rem 2rem;
  background-color: #fbf9f6;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.international-carousel-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  padding: 0 1rem;
}

.international-carousel-track {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  padding: 1.5rem 0.5rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.international-carousel-track::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.international-carousel-track {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* International Card */
.international-card {
  flex: 0 0 300px;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  cursor: pointer;
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
}

.international-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}

.international-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.international-card:hover img {
  transform: scale(1.08);
}

.international-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 54, 34, 0.95) 0%, rgba(10, 54, 34, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem;
  transition: var(--transition-smooth);
}

.international-card:hover .international-card-overlay {
  background: linear-gradient(to top, rgba(10, 54, 34, 1) 0%, rgba(10, 54, 34, 0.5) 60%, rgba(10, 54, 34, 0.1) 100%);
}

.international-card h3 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.international-card:hover h3 {
  color: var(--color-secondary);
  transform: translateY(-2px);
}

/* Carousel Buttons */
.int-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 54, 34, 0.9);
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  font-size: 1.2rem;
}

.int-carousel-btn:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: var(--shadow-gold);
}

.int-prev {
  left: -1rem;
}

.int-next {
  right: -1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .international-packages-section {
    padding: 4rem 1rem;
  }
  .international-carousel-track {
    gap: 1.25rem;
  }
  .international-card {
    flex: 0 0 250px;
    height: 320px;
  }
  .int-carousel-btn {
    display: none; /* Hide arrows on mobile and rely on swipe */
  }
}

/* =====================================================================
   GLOBAL RESPONSIVE FIXES (320px - 1920px)
   ===================================================================== */

/* Base Layout & Elements */
html, body {
  overflow-x: clip;
  width: 100%;
}

/* =========================================
   TABLET & SMALL DESKTOP (Max 1024px)
   ========================================= */
@media (max-width: 1024px) {
  /* Grid Refactors */
  .destinations-preview-grid,
  .themes-redesign-grid,
  .packages-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Two Column Modal Grid */
  .modal-two-column-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  
  .collage-section {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* =========================================
   TABLET & MOBILE (Max 768px)
   ========================================= */
@media (max-width: 768px) {
  h2 {
    font-size: 2rem !important;
  }
  
  /* Top Contact Bar */
  .top-contact-bar {
    flex-direction: column;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    text-align: center;
  }
  .top-contact-bar .contact-info {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  /* Main Header */
  .main-header {
    padding: 1rem;
  }
  .main-header h1.brand-name {
    font-size: 1.8rem !important;
    letter-spacing: 1px;
    text-align: center;
  }
  .main-header .brand-tagline {
    font-size: 0.8rem !important;
    letter-spacing: 2px;
    text-align: center;
  }

  /* Navbar Mobile Menu */
  .nav-container {
    justify-content: space-between;
    padding: 0 1.5rem;
  }
  .mobile-menu-btn {
    display: block !important;
    z-index: 1001;
  }
  .mobile-menu-btn.active {
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 1002;
  }
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--color-bg-light);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 5rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    z-index: 1000;
    overflow-y: auto;
  }
  .nav-links.active {
    left: 0;
  }
  .nav-links a {
    display: block;
    padding: 1rem 2rem;
  }

  /* Hero Carousel */
  .carousel-slide h2 {
    font-size: 2.2rem !important;
  }
  .carousel-content {
    padding: 0 1.5rem;
  }
  .carousel-nav-btn {
    width: 40px;
    height: 40px;
  }

  /* Grid Layouts for Mobile */
  .destinations-preview-grid,
  .themes-redesign-grid,
  .packages-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  /* Collage Section Fixes */
  .collage-section {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    height: auto;
    gap: 1rem;
  }
  .collage-item {
    grid-column: auto !important;
    grid-row: auto !important;
    height: 250px;
  }
  
  /* Package Layout (Sidebar + Content) */
  .packages-layout {
    flex-direction: column;
    gap: 2rem;
  }
  .sidebar-filters {
    position: relative;
    top: 0;
    width: 100%;
    flex: none;
  }

  /* Customize Form Grid */
  .customize-form-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .footer-contact, .footer-social {
    align-items: center;
  }
  
  /* Floating Actions */
  .floating-actions {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .floating-btn {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }
}

/* =========================================
   SMALL MOBILE (Max 480px)
   ========================================= */
@media (max-width: 480px) {
  h2 {
    font-size: 1.6rem !important;
  }
  
  /* Main Header Adjustments */
  .main-header .brand-logo {
    height: 60px !important;
  }
  .main-header h1.brand-name {
    font-size: 1.4rem !important;
  }

  /* Top Contact Bar text */
  .top-contact-bar .contact-info span {
    font-size: 0.85rem;
  }

  .carousel-slide h2 {
    font-size: 1.8rem !important;
  }
  
  .carousel-nav-btn {
    display: none !important;
  }

  .modal-hero h2 {
    font-size: 1.5rem !important;
  }
  
  .modal-info-grid {
    grid-template-columns: 1fr !important;
  }

  /* Floating Actions Adjustment */
  .floating-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* --- New Landing Page Modal Styles --- */
.landing-page-modal {
  /* Full screen cover on mobile */
  padding: 0;
}
.landing-page-modal .landing-page-content {
  width: 100%;
  max-width: 1000px;
  height: 100vh;
  margin: 0 auto;
  border-radius: 0;
  overflow-y: auto;
  background: #0a0b10;
  color: #e0e6ed;
}
@media (min-width: 768px) {
  .landing-page-modal {
    padding: 2rem;
  }
  .landing-page-modal .landing-page-content {
    height: 90vh;
    border-radius: 12px;
  }
}
.landing-hero {
  position: relative;
  width: 100%;
  min-height: 50vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  color: white;
}
.landing-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.85));
}
.landing-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.landing-tagline {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  display: block;
}
.landing-title {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.2);
}
.landing-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.landing-hero-ctas {
  display: flex;
  gap: 1rem;
}
.landing-body {
  padding: 2rem;
  background: transparent;
}
.landing-section {
  margin-bottom: 3rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 0.5rem;
  display: inline-block;
}
.overview-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #c5c6c7;
  margin-bottom: 1rem;
}
.places-covered-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  font-size: 0.95rem;
  color: #ffffff;
}
.landing-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
}
.landing-highlights-grid li {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  font-weight: 500;
  display: flex;
  align-items: center;
  color: #ffffff;
}
.landing-highlights-grid li::before {
  content: "?";
  margin-right: 8px;
}
.landing-itinerary .itinerary-step {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: flex;
  overflow: hidden;
}
.landing-itinerary .itinerary-day {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-accent);
  padding: 1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
}
.landing-itinerary .itinerary-details {
  padding: 1rem;
}
.landing-itinerary .itinerary-details h4 {
  color: #ffffff;
}
.landing-itinerary .itinerary-details p {
  color: #e0e6ed;
}
.inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .inc-exc-grid {
    grid-template-columns: 1fr;
  }
}
.card-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.card-title {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: #ffffff;
}
.tick-list, .cross-list {
  list-style: none;
  padding: 0;
}
.tick-list li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}
.tick-list li::before {
  content: "?";
  color: green;
  position: absolute;
  left: 0;
  font-weight: bold;
}
.cross-list li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}
.cross-list li::before {
  content: "?";
  color: red;
  position: absolute;
  left: 0;
  font-weight: bold;
}
.cta-box {
  text-align: center;
  background: linear-gradient(135deg, var(--color-primary), #1a2a3a);
  color: white;
}
.cta-box h2 {
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.cta-box p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.final-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-lg {
  padding: 12px 24px;
  font-size: 1.1rem;
}

/* --- Gallery & Reviews Styles --- */
.landing-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.landing-gallery-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.landing-gallery-grid img:hover {
  transform: scale(1.03);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  color: #e0e6ed;
}
.review-card p {
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.review-card .reviewer {
  font-weight: bold;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-card .reviewer::before {
  content: '??';
}
.review-card .stars {
  color: #FFD700;
  margin-bottom: 0.5rem;
}
