/* Dream Destination - Styles */
:root {
  --color-primary: #1a365d;
  --color-primary-light: #2c5282;
  --color-gold: #c9a227;
  --color-gold-light: #e5c76b;
  --color-dark: #1a202c;
  --color-text: #2d3748;
  --color-text-light: #718096;
  --color-bg: #f7fafc;
  --color-white: #ffffff;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 8px;
  --transition: 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

ul {
  list-style: none;
}

/* Preloader - logo with subtle animation */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--color-white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner,
.preloader-img,
.preloader-logo {
  object-fit: contain;
}

.preloader-logo {
  width: 280px;
  max-width: 85vw;
  animation: preloader-pulse 1.2s ease-in-out infinite;
}

@keyframes preloader-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.02); }
}

.preloader-inner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--color-bg);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Top Bar */
.top-bar {
  background: var(--color-dark);
  color: var(--color-white);
  font-size: 13px;
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-phone {
  margin-left: auto;
  font-weight: 600;
}

/* Hide top bar on Hot Deals page (removes Hot Deals badge above logo) */
.page-hot-deals .top-bar {
  display: none;
}

/* Header */
.main-header {
  background: var(--color-white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
}

.logo-img {
  height: 88px;
  width: auto;
}

.logo:hover {
  color: var(--color-primary);
  opacity: 0.9;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav li {
  position: relative;
}

.main-nav > ul > li > a {
  display: block;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.main-nav > ul > li.has-dropdown--mega:hover > a,
.main-nav > ul > li.has-dropdown--nav-mega:hover > a {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

.main-nav .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

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

.main-nav .dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--color-text);
}

.main-nav .dropdown a:hover {
  background: var(--color-bg);
  color: var(--color-gold);
}

/* Mega dropdown (Packages) - two-column like Fayyaz Travels */
.main-nav .mega-dropdown {
  min-width: 220px;
  padding: 0;
  left: 0;
  width: 580px;
  max-width: 90vw;
}

.mega-dropdown-inner {
  display: flex;
  min-height: 280px;
}

.mega-dropdown-left {
  width: 220px;
  flex-shrink: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}

.mega-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.mega-category:hover,
.mega-category.is-active {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
  background: rgba(201, 162, 39, 0.06);
}

.mega-arrow {
  font-size: 16px;
  opacity: 0.7;
}

.mega-dropdown-right {
  flex: 1;
  min-width: 0;
  padding: 20px 24px;
}

.mega-panel {
  display: none;
}

.mega-panel.is-visible {
  display: block;
}

.mega-panel-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-gold);
}

.mega-panel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mega-panel-list--cols2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}

.mega-panel-list a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--color-text);
}

.mega-panel-list a:hover {
  color: var(--color-gold);
}

.mega-panel-cta {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 13px;
}

.mega-panel-cta a {
  color: var(--color-gold);
  font-weight: 600;
}

.mega-panel-cta a:hover {
  color: var(--color-primary);
}

/* Mega menu inside mobile nav: stack columns */
.mobile-nav .mega-dropdown-inner {
  flex-direction: column;
  min-height: 0;
}

.mobile-nav .mega-dropdown-left {
  width: 100%;
  border-right: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-nav .mega-dropdown-right {
  max-height: 280px;
  overflow-y: auto;
}

/* Deals & About nav mega (two-column: list + featured) */
.main-nav .dropdown--nav-mega {
  padding: 0;
  min-width: 220px;
  width: 520px;
  max-width: 90vw;
  left: 0;
}

.main-nav li:last-child .dropdown--nav-mega {
  left: auto;
  right: 0;
}

.nav-mega-inner {
  display: flex;
  min-height: 240px;
}

.nav-mega-left {
  width: 220px;
  flex-shrink: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px 0 20px 20px;
}

.nav-mega-heading {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-gold);
}

.nav-mega-heading--dark {
  color: var(--color-dark);
}

.nav-mega-list {
  list-style: none;
}

.nav-mega-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-mega-list li:last-child {
  border-bottom: none;
}

.nav-mega-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 0;
  font-size: 14px;
  color: var(--color-text);
}

.nav-mega-list a:hover {
  color: var(--color-gold);
  background: transparent;
}

.nav-mega-right {
  flex: 1;
  min-width: 0;
  padding: 20px;
}

.nav-mega-featured {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow var(--transition);
}

.nav-mega-featured:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.nav-mega-featured-img {
  height: 140px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.nav-mega-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-gold);
  color: var(--color-dark);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}

.nav-mega-badge--text {
  background: var(--color-primary);
  color: var(--color-white);
}

.nav-mega-featured-title {
  background: var(--color-gold);
  color: var(--color-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 14px;
  line-height: 1.35;
}

.nav-mega-featured--about .nav-mega-featured-title {
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 500;
}

/* Mobile: Deals & About mega stack */
.mobile-nav .nav-mega-inner {
  flex-direction: column;
}

.mobile-nav .nav-mega-left {
  width: 100%;
  border-right: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-nav .nav-mega-right {
  padding-top: 12px;
}

.btn-enquiry {
  background: var(--color-gold);
  color: var(--color-dark);
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}

.btn-enquiry:hover {
  background: var(--color-gold-light);
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  transition: transform var(--transition), opacity var(--transition);
}

body.menu-open {
  overflow: hidden;
}

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

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

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

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  max-width: 800px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 18px;
  margin-bottom: 28px;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-dark);
  border-color: var(--color-gold);
}

.btn-primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  color: var(--color-dark);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

.btn-small {
  padding: 10px 20px;
  font-size: 13px;
}

.btn-block {
  width: 100%;
  text-align: center;
}

/* Promo Cards */
.promo-cards {
  padding: 60px 0;
  background: var(--color-bg);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.promo-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.promo-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.promo-card-content {
  padding: 24px;
}

.promo-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.promo-card p {
  color: var(--color-text-light);
  margin-bottom: 16px;
  font-size: 15px;
}

/* Section titles */
.section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-dark);
}

/* Hot Deals */
.hot-deals {
  padding: 80px 0;
}

.deals-carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.deals-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 16px 0;
  scrollbar-width: none;
}

.deals-track::-webkit-scrollbar {
  display: none;
}

.deal-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

/* Inner pages: deals grid (full listing) */
.deals-grid-page {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.deals-grid-page .deal-card {
  flex: none;
}

/* Page banner (inner pages) */
.page-banner {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 32px 0;
  margin-bottom: 48px;
}

.page-banner .container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-banner h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
}

.breadcrumb {
  font-size: 14px;
  opacity: 0.9;
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

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

.breadcrumb span {
  margin: 0 8px;
  opacity: 0.7;
}

.deal-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.deal-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-gold);
  color: var(--color-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
}

.deal-content {
  padding: 24px;
}

.deal-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--color-dark);
  line-height: 1.3;
}

.deal-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--color-text-light);
}

.deal-content p {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 1.5;
}

.deal-price {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.deal-price--cta {
  text-decoration: none;
  cursor: pointer;
}

.deal-price--cta:hover {
  color: var(--color-gold);
  text-decoration: underline;
}

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

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid #e2e8f0;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  z-index: 2;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
}

.carousel-prev {
  left: -24px;
}

.carousel-next {
  right: -24px;
}

/* Trending Destinations */
.trending-destinations {
  padding: 80px 0;
  background: var(--color-bg);
}

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

.dest-card {
  position: relative;
  height: 220px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  overflow: hidden;
}

.dest-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 50%);
  border-radius: var(--radius);
}

.dest-card span {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.dest-card:hover {
  transform: scale(1.02);
  transition: transform var(--transition);
}

/* Our Services */
.our-services {
  padding: 80px 0;
  background: var(--color-white);
}

.our-services .section-title {
  text-align: center;
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-white);
  padding: 20px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  font-weight: 500;
  color: var(--color-dark);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.service-item:hover {
  box-shadow: var(--shadow);
  border-color: rgba(0, 0, 0, 0.1);
}

.service-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
}

.service-icon svg {
  width: 36px;
  height: 36px;
}

.service-name {
  font-size: 15px;
  line-height: 1.4;
}

.service-item--highlight .service-name {
  color: var(--color-gold);
  font-weight: 600;
}

.service-item--highlight .service-icon {
  color: var(--color-gold);
}

/* Why Choose Us */
.why-choose {
  padding: 80px 0;
  background: var(--color-bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.why-card {
  background: var(--color-white);
  padding: 36px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.why-card p {
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
}

.testimonials-slider {
  overflow: hidden;
  margin-bottom: 32px;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 16px 0;
}

.testimonial-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: var(--color-white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--color-gold);
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 18px;
  margin-bottom: 12px;
}

.testimonial-card p {
  margin-bottom: 16px;
  font-style: italic;
  color: var(--color-text);
}

.testimonial-card cite {
  font-size: 14px;
  color: var(--color-text-light);
  font-style: normal;
}

.testimonials .btn {
  display: block;
  margin: 0 auto;
}

/* Blog */
.blog-section {
  padding: 80px 0;
  background: var(--color-bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.blog-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.blog-card .blog-cat {
  display: inline-block;
  margin: 16px 20px 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
}

.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin: 8px 20px 12px;
  color: var(--color-dark);
  line-height: 1.4;
}

.blog-card p {
  font-size: 14px;
  color: var(--color-text-light);
  margin: 0 20px 16px;
  line-height: 1.5;
}

.blog-card a {
  display: inline-block;
  margin: 0 20px 20px;
  font-weight: 600;
  color: var(--color-primary);
}

.blog-card a:hover {
  color: var(--color-gold);
}

.blog-section .btn {
  display: block;
  margin: 0 auto;
}

/* CTA Banners */
.cta-banners {
  padding: 60px 0;
}

.banners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cta-banner {
  position: relative;
  height: 280px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  transition: background var(--transition);
}

.cta-banner:hover::before {
  background: rgba(0,0,0,0.3);
}

.cta-label {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
}

.cta-cta {
  position: relative;
  z-index: 1;
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
}

/* Newsletter */
.newsletter {
  padding: 60px 0;
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
}

.newsletter h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  margin-bottom: 12px;
}

.newsletter p {
  margin-bottom: 24px;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
}

.newsletter-form .btn-primary {
  background: var(--color-gold);
  color: var(--color-dark);
}

/* Footer */
.main-footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 60px 0 0;
}

.footer-featured {
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-featured h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  opacity: 0.8;
}

.footer-logos {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 48px 0;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--color-gold);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255,255,255,0.85);
}

.footer-col a:hover {
  color: var(--color-gold);
}

.footer-col.contact p {
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.7);
}

/* Quote Bar */
.quote-bar {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-white);
  padding: 48px 0;
  text-align: center;
}

.quote-bar h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 12px;
}

.quote-bar p {
  margin-bottom: 24px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

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

.modal {
  background: var(--color-white);
  border-radius: var(--radius);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 40px;
  transform: scale(0.95);
  transition: transform var(--transition);
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-text-light);
  line-height: 1;
}

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

.modal h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.modal p {
  margin-bottom: 24px;
  color: var(--color-text-light);
  font-size: 15px;
}

.enquiry-form .form-row {
  margin-bottom: 20px;
}

.enquiry-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-body);
}

.enquiry-form .group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.enquiry-form .group label {
  margin-bottom: 4px;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.mobile-nav.active {
  max-height: 80vh;
  overflow-y: auto;
}

.mobile-nav-inner {
  padding: 24px;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-weight: 500;
}

/* Cart sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -360px;
  width: 360px;
  height: 100vh;
  background: var(--color-white);
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  z-index: 999;
  padding: 24px;
  transition: right var(--transition);
}

.cart-sidebar.active {
  right: 0;
}

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

.cart-header h3 {
  font-size: 16px;
}

.cart-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.cart-empty {
  margin-bottom: 24px;
  color: var(--color-text-light);
}

/* Responsive */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .carousel-prev,
  .carousel-next {
    display: none;
  }
}

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

  .main-nav {
    display: none;
  }

  .btn-enquiry {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .hero {
    min-height: 60vh;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 16px;
  }

  .deal-card {
    flex: 0 0 300px;
  }

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

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

  .newsletter-form {
    flex-direction: column;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }

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

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

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