/* ============================================
   AGAFAY ADVENTURE PACKAGES - Premium CSS
   Luxury Desert Tourism Website
   ============================================ */
   /* Inter */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/inter-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/inter-v20-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/inter-v20-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/inter-v20-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/inter-v20-latin-800.woff2') format('woff2');
}

/* Playfair Display */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/playfair-display-v40-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/playfair-display-v40-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/playfair-display-v40-latin-800.woff2') format('woff2');
}
   
   

/* CSS Custom Properties */
:root {
  --sand: #E8D5B7;
  --sand-light: #F5EDE0;
  --sand-dark: #C4A882;
  --sunset-orange: #E8743B;
  --sunset-orange-dark: #D4622B;
  --gold: #D4A853;
  --gold-light: #F0D48A;
  --deep-black: #1A1A1A;
  --charcoal: #2D2D2D;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --gray-light: #F0F0F0;
  --gray: #888888;
  --gray-dark: #555555;
  --success: #4CAF50;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s ease;
  --max-width: 1200px;
}


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

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

body {
  font-family: var(--font-body);
  color: var(--deep-black);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}


/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 8px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo span {
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}


.nav-cta {
  background: var(--sunset-orange);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
}

.nav-cta:hover {
  background: var(--sunset-orange-dark);
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26,26,26,0.7), rgba(26,26,26,0.4)),
    url('../images/hero-agafay-desert.webp') center/cover no-repeat;
  text-align: center;
  padding: 120px 20px 80px;
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 1s ease;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  line-height: 1.8;
}


.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--sunset-orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--sunset-orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

.btn-gold {
  background: var(--gold);
  color: var(--deep-black);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.trust-indicators {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}


/* ============================================
   SECTIONS - General
   ============================================ */
.section {
  padding: 80px 0;
}

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

.section-sand {
  background: var(--sand-light);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 12px;
  color: var(--deep-black);
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-dark);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.7);
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sunset-orange);
  margin-bottom: 8px;
}

/* ============================================
   PACKAGES GRID
   ============================================ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

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

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

.package-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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


.package-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--sunset-orange);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.package-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 700;
}

.package-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.package-highlights span {
  background: var(--sand-light);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--charcoal);
}

.package-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
}

.package-price .price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--sunset-orange);
}

.package-price .price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray);
}

.package-price .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
}

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

.feature-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--sand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--sunset-orange);
}

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-dark);
}


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

.review-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.review-card p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  margin-bottom: 16px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--charcoal);
  font-size: 0.9rem;
}

.review-author-info strong {
  display: block;
  font-size: 0.9rem;
}

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

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

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}


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

.faq-item {
  border-bottom: 1px solid var(--gray-light);
  padding: 20px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  gap: 16px;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--sunset-orange);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--gray-dark);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 12px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--deep-black);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 24px;
}

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

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  padding: 4px 0;
  color: rgba(255,255,255,0.7);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}


/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

.book-now-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  background: var(--sunset-orange);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  display: none;
}

.book-now-float:hover {
  background: var(--sunset-orange-dark);
  transform: translateY(-2px);
}

/* ============================================
   SERVICE PAGE STYLES
   ============================================ */
.page-hero {
  position: relative;
  padding: 160px 20px 80px;
  background: linear-gradient(135deg, rgba(26,26,26,0.75), rgba(26,26,26,0.5)),
    url('../images/hero-agafay-desert.webp') center/cover no-repeat;
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 24px;
  opacity: 0.9;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  opacity: 0.8;
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb span {
  color: rgba(255,255,255,0.6);
}


/* Service Page Content */
.service-content {
  padding: 60px 0;
}

.service-content h2 {
  font-size: 1.8rem;
  margin: 40px 0 16px;
  color: var(--deep-black);
}

.service-content h3 {
  font-size: 1.3rem;
  margin: 28px 0 12px;
  color: var(--charcoal);
}

.service-content p {
  margin-bottom: 16px;
  color: var(--gray-dark);
}

.service-content ul, .service-content ol {
  margin: 16px 0;
  padding-left: 20px;
}

.service-content ul li, .service-content ol li {
  position: relative;
  padding: 6px 0 6px 24px;
  color: var(--gray-dark);
}

.service-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sunset-orange);
  font-weight: 700;
}

.service-content ol {
  counter-reset: step;
  list-style: none;
}

.service-content ol li {
  counter-increment: step;
}

.service-content ol li::before {
  content: counter(step) '.';
  position: absolute;
  left: 0;
  color: var(--sunset-orange);
  font-weight: 700;
}

/* Pricing Box */
.pricing-box {
  background: linear-gradient(135deg, var(--sand-light), var(--white));
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin: 40px 0;
}

.pricing-box .price-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--sunset-orange);
  margin-bottom: 8px;
}

.pricing-box .price-note {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* Itinerary */
.itinerary {
  position: relative;
  padding-left: 32px;
  margin: 24px 0;
}

.itinerary::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
}

.itinerary-step {
  position: relative;
  padding: 16px 0;
}

.itinerary-step::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sunset-orange);
  border: 3px solid var(--gold);
}

.itinerary-step h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.itinerary-step p {
  font-size: 0.9rem;
}


/* ============================================
   BLOG STYLES
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

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

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

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

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

.blog-card-body h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  margin-bottom: 12px;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--gray);
}

.blog-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.blog-article h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 16px;
}

.blog-article h2 {
  font-size: 1.5rem;
  margin: 32px 0 12px;
}

.blog-article h3 {
  font-size: 1.2rem;
  margin: 24px 0 10px;
}

.blog-article p {
  margin-bottom: 16px;
  color: var(--gray-dark);
}

.blog-article ul, .blog-article ol {
  margin: 16px 0;
  padding-left: 20px;
}

.blog-article ul li, .blog-article ol li {
  padding: 4px 0 4px 24px;
  position: relative;
  color: var(--gray-dark);
}

.blog-article ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--sunset-orange);
  font-weight: 700;
}


/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--sunset-orange), var(--gold));
  padding: 60px 20px;
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 12px;
  color: var(--white);
}

.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  opacity: 0.95;
}

.cta-banner .btn {
  background: var(--white);
  color: var(--sunset-orange);
  font-weight: 700;
}

.cta-banner .btn:hover {
  background: var(--deep-black);
  color: var(--white);
}

/* ============================================
   EXIT INTENT MODAL
   ============================================ */
.exit-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.exit-modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
}

.exit-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray);
  background: none;
  border: none;
}

.exit-modal-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.exit-modal-content p {
  color: var(--gray-dark);
  margin-bottom: 24px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--deep-black);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transition: var(--transition);
    padding: 40px;
  }

  .nav-links.active {
    right: 0;
  }

  .mobile-toggle {
    display: flex;
  }

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

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

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

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

  .trust-indicators {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .book-now-float {
    display: block;
  }

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

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

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 60px 0;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-orange { color: var(--sunset-orange); }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
