/*
* Sahara Sunny Luxury Camp
* Main Stylesheet
* Desert-inspired color palette and responsive design
*/

/* ===== Base Styles ===== */
:root {
    /* Color palette */
    --color-sand: #e9dac1;
    --color-sand-light: #f5f0e5;
    --color-sand-dark: #d1c3a6;
    --color-gold: #c9a66b;
    --color-terracotta: #b95835;
    --color-night-blue: #1d3557;
    --color-text-dark: #333333;
    --color-text-light: #ffffff;
    --color-text-muted: #888888;
    --color-primary: #b95835;
    --color-secondary: #1d3557;
    --color-success: #5a8d5a;
    --color-warning: #ffb74a;
    --color-danger: #c74545;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 6rem 0;
    --section-padding-mobile: 4rem 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: var(--color-sand-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--color-night-blue);
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-terracotta);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: var(--section-padding);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: ruby;
    font-weight: 500;
    text-align: center;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.btn-primary:hover {
    background-color: var(--color-terracotta);
    color: var(--color-text-light);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
}

.btn-secondary:hover {
    background-color: #2a4a74;
    color: var(--color-text-light);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--color-text-light);
}

.btn-whatsapp:hover {
    background-color: #1da851;
    color: var(--color-text-light);
}

.btn-email {
    background-color: #4285F4;
    color: var(--color-text-light);
}

.btn-email:hover {
    background-color: #3367d6;
    color: var(--color-text-light);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--color-night-blue);
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-text-muted);
}

/* ===== Header ===== */
/* Header Styles */
.header {
    padding: 1rem 0;
    position: relative;
    z-index: 1000;
    box-shadow: 0px -1px 10px 5px #dd940e45;
    background: linear-gradient(1deg, #ffffff63, #ffffff);
    border-bottom: none;

    border-radius: 18px;
    bottom: -20px;
    margin-left: 30px;
    margin-right: 30px;
  }
  
  .header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header .logo img {
    max-height: 60px;
    width: auto;
  }
  
  @media (max-width: 992px) {
    .header .logo img {
      max-height: 50px;
    }
  }
  
  /* Desktop Navigation */
  @media (min-width: 993px) {
    .header .main-nav {
      display: flex;
      align-items: center;
    }
    
    .header .main-nav .nav-links {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    
    .header .main-nav .nav-links li {
      margin-left: 1.5rem;
      position: relative;
    }
    
    .header .main-nav .nav-links li a {
      color: #7d5a50;
      text-decoration: none;
      font-weight: 500;
      font-size: 1rem;
      transition: color 0.3s ease;
      position: relative;
      padding: 0.5rem 0;
      display: flex;
      align-items: center;
    }
    
    .header .main-nav .nav-links li a:hover,
    .header .main-nav .nav-links li a.active {
      color: #5d4037;
    }
    
    .header .main-nav .nav-links li a.active:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #7d5a50;
    }
  }

  /* Mobile Navigation */
  @media (max-width: 992px) {
    .header .main-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 320px;
      height: 100vh;
      background-color: #e9dac1;
      padding: 2rem;
      transition: right 0.3s ease;
      overflow-y: auto;
      z-index: 1001;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .header .main-nav.active {
      right: 0;
    }
    
    .header .main-nav .nav-links {
      list-style: none;
      padding: 0;
      margin-top: 2rem;
    }
    
    .header .main-nav .nav-links li {
      margin-bottom: 1.5rem;
    }
    
    .header .main-nav .nav-links li a {
      color: #7d5a50;
      text-decoration: none;
      font-size: 1.1rem;
      display: block;
      padding: 0.5rem 0;
      border-bottom: 1px solid rgba(125, 90, 80, 0.1);
    }
    
    .header .main-nav .nav-links li a.active {
      font-weight: bold;
    }
      /* Language Selector with Flags */
  .header .header-actions .language-selector {
    display: none;
  }

  }
  
  /* Header Actions */
  .header .header-actions {
    display: flex;
    align-items: center;
  }
  
  /* Language Selector with Flags */
  .header .header-actions .language-selector {
    margin-right: 1.5rem;
    position: relative;

  }
  
  .header .header-actions .language-selector .form-select {
    border: 1px solid #7d5a50;
    border-radius: 4px;
    padding: 0.3rem 2rem 0.3rem 0.5rem;
    background-color: transparent;
    color: #7d5a50;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237d5a50' 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 0.5rem center;
    background-size: 1rem;
    min-width: 120px;
  }
  
  /* Flag Icons */
  .flag-icon {
    display: inline-block;
    width: 20px;
    height: 15px;
    margin-right: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
  }
  
  .flag-icon.en {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30' width='60' height='30'%3E%3CclipPath id='s'%3E%3Cpath d='M0,0 v30 h60 v-30 z'/%3E%3C/clipPath%3E%3CclipPath id='t'%3E%3Cpath d='M30,15 h30 v15 z v15 h-30 z h-30 v-15 z v-15 h30 z'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23s)'%3E%3Cpath d='M0,0 v30 h60 v-30 z' fill='%23012169'/%3E%3Cpath d='M0,0 L60,30 M60,0 L0,30' stroke='%23fff' stroke-width='6'/%3E%3Cpath d='M0,0 L60,30 M60,0 L0,30' clip-path='url(%23t)' stroke='%23C8102E' stroke-width='4'/%3E%3Cpath d='M30,0 v30 M0,15 h60' stroke='%23fff' stroke-width='10'/%3E%3Cpath d='M30,0 v30 M0,15 h60' stroke='%23C8102E' stroke-width='6'/%3E%3C/g%3E%3C/svg%3E");
  }
  
  .flag-icon.fr {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 40' width='60' height='40'%3E%3Crect width='20' height='40' fill='%23005296'/%3E%3Crect x='20' width='20' height='40' fill='%23fff'/%3E%3Crect x='40' width='20' height='40' fill='%23EF4135'/%3E%3C/svg%3E");
  }
  
  .flag-icon.es {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 40' width='60' height='40'%3E%3Crect width='60' height='40' fill='%23AA151B'/%3E%3Crect y='8' width='60' height='12' fill='%23F1BF00'/%3E%3Crect y='20' width='60' height='12' fill='%23AA151B'/%3E%3Crect y='32' width='60' height='8' fill='%23F1BF00'/%3E%3C/svg%3E");
  }
  
  /* Social Icons - Desktop Only */
  .header .header-actions .social-icons {
    display: flex;
    margin-right: 1.5rem;
  }
  
  .header .header-actions .social-icons a {
    color: #7d5a50;
    margin-left: 1rem;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  
  .header .header-actions .social-icons a:hover {
    color: #5d4037;
  }
  
  /* Mobile Menu Toggle */
  .header .header-actions .mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
  }
  
  .header .header-actions .mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #7d5a50;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
  }
  
  .header .header-actions .mobile-nav-toggle span:nth-child(1) {
    top: 0;
  }
  
  .header .header-actions .mobile-nav-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  
  .header .header-actions .mobile-nav-toggle span:nth-child(3) {
    bottom: 0;
  }
  
  .header .header-actions .mobile-nav-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  
  .header .header-actions .mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .header .header-actions .mobile-nav-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  
  @media (max-width: 992px) {
    .header .header-actions .mobile-nav-toggle {
      display: block;
    }
    .header .header-actions .social-icons {
      display: none;
    }
  }
  
  /* Mobile Menu Extras */
  .header .mobile-menu-extras {
    display: none;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(125, 90, 80, 0.1);
  }
  
  .header .mobile-menu-extras h4 {
    color: #7d5a50;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .header .mobile-menu-extras .mobile-language-selector {
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  .header .mobile-menu-extras .mobile-language-selector .form-select {
    width: 100%;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
    border: 1px solid #7d5a50;
    border-radius: 4px;
    background-color: transparent;
    color: #7d5a50;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237d5a50' 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 0.5rem center;
    background-size: 1rem;
  }
  
  .header .mobile-menu-extras .mobile-social-icons {
    display: none; /* Removed from mobile header as requested */
  }
  
  @media (max-width: 992px) {
    .header .mobile-menu-extras {
      display: block;
    }
  }
  
  /* Overlay for mobile menu */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* No scroll class */
  .no-scroll {
    overflow: hidden;
  }

/* ===== Hero Section ===== */
.hero {
    position: static;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    color: var(--color-text-light);
    text-align: center;
    z-index: 1;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.review-badge {
    background-color: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

/* ===== Packages Section ===== */
.packages {
    background-color: var(--color-sand-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background-color: var(--color-text-light);
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem;
    position: relative;
    align-items: end;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.package-icon {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--color-night-blue);
}

.package-card p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.package-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.package-features li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.package-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
}

.package-price {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-night-blue);
}

/* ===== Gallery Section ===== */
.gallery {
    position: relative;
    background-color: var(--color-text-light);
}

.gallery-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-slider {
    position: relative;
    height: 550px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    color: var(--color-text-light);
}

.gallery-caption h3 {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.gallery-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .gallery-controls {
        display: none;
    }
}
.gallery-prev,
.gallery-next {
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--color-text-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.gallery-prev:hover,
.gallery-next:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.gallery-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gallery-dot.active {
    background-color: var(--color-text-light);
}

/* ===== Map Section ===== */
.map-section {
    background-color: #f8f9fa;
    position: relative;
}

.map-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #f0f0f0;
    border: 15px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(20%) contrast(1.1) saturate(1.2);
    transition: all 0.3s ease;
}

.map-iframe:hover {
    filter: grayscale(0%);
}

.section-title {
    color: #333;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, #A3785E, transparent);
    bottom: -10px;
    left: 25%;
}
/* ===== Booking Section ===== */
.booking-section {
    background-color: var(--color-text-light);
    padding: 2rem 0.1rem;
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--color-sand-light);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
    overflow-x: revert;
    padding-bottom: 1rem;
}

.booking-progress:before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-sand-dark);
    z-index: 1;
}

.progress-step {
    position: relative;
    z-index: 2;
    text-align: center;
    min-width: 60px;
    flex-shrink: 0;
    padding: 0 0.5rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--color-sand-dark);
    color: var(--color-text-light);
    border-radius: 50%;
    margin: 0 auto 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.progress-step.active .step-number {
    background-color: var(--color-primary);
    transform: scale(1.1);
}

.progress-step.completed .step-number {
    background-color: var(--color-success);
}

.step-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.progress-step.active .step-label {
    color: var(--color-primary);
    font-weight: 500;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .booking-container {
        padding: 1.5rem;
    }
    
    .booking-progress {
        justify-content: flex-start;
        gap: 0.5rem;
        padding-bottom: 1.5rem;
    }
    
    .booking-progress:before {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
    }
    
    .progress-step {
        min-width: 50px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-label {
        font-size: 0.8rem;
    }
    
    /* Add scroll snap for better mobile UX */
    .booking-progress {
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .progress-step {
        scroll-snap-align: center;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .booking-progress {
        gap: 0.2rem;
    }
    
    .progress-step {
        min-width: 45px;
        padding: 0 0.3rem;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .step-label {
        font-size: 0.7rem;
    }
}

/* Rest of your existing styles... */
.booking-form {
    margin-top: 3rem;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    margin-bottom: 1.5rem;
    color: var(--color-night-blue);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-sand-dark);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--color-gold);
    outline: none;
}

.form-check {
    margin-bottom: 0.5rem;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.5rem;
}

.form-row .form-group {
    padding: 0 0.5rem;
    flex: 1;
    min-width: 200px;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.activities-group {
    display: flex;
        gap: 0.1rem;
        margin-top: 1rem;
        justify-content: end;
        align-items: flex-start;
        flex-wrap: wrap;
        flex-direction: column;
        align-content: flex-start;
}

.form-summary {
    background-color: var(--color-sand-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.form-summary h4 {
    margin-bottom: 1rem;
    color: var(--color-night-blue);
}

.terms-check {
    margin-bottom: 1.5rem;
}

.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating input {
    display: none;
}

.rating label {
    cursor: pointer;
    width: 30px;
    height: 30px;
    margin: 0 2px;
    position: relative;
    background-color: var(--color-sand-dark);
    border-radius: 3px;
}

.rating label:before {
    content: '★';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text-light);
}

.rating input:checked ~ label {
    background-color: var(--color-gold);
}

.submission-method {
    margin-top: 2rem;
}

.submission-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

/* Responsive adjustments for form elements */
@media (max-width: 768px) {
    .form-row .form-group {
        flex: 1 1 100%;
        margin-bottom: 1rem;
    }
    
    .activities-group {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-navigation .btn {
        width: 100%;
    }
}

/* ===== FAQ Section ===== */
.faq-section {
    background-color: var(--color-sand-light);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--color-text-light);
    border-radius: 6px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background-color: var(--color-text-light);
    padding: 1.2rem 1.5rem;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-night-blue);
    position: relative;
}

.accordion-button:not(.collapsed) {
    color: var(--color-primary);
    background-color: var(--color-sand-light);
}

.accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.accordion-body {
    padding: 1.5rem;
    border-top: 1px solid var(--color-sand-dark);
}

/* ===== Contact Section ===== */
.contact-section {
    background-color: #333333;
    color: var(--color-text-light);
}

.contact-section .section-title,
.contact-section .section-subtitle {
    color: var(--color-text-light);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--color-gold);
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
}

.contact-item p,
.contact-item a {
    color: var(--color-text-light);
    font-size: 12px;
}

.quick-contact {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--color-night-blue);
    color: var(--color-text-light);
    padding: 4rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
    margin-bottom: 2rem;
}

.footer-logo .tagline {
    color: var(--color-sand-light);
    margin-top: 0.5rem;
}

.footer-links {
    flex: 1;
    min-width: 200px;
    margin-bottom: 2rem;
}

.footer-links h3,
.footer-social h3 {
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--color-text-light);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-social {
    flex: 1;
    min-width: 200px;
    margin-bottom: 2rem;
}

.footer-social .social-icons {
    display: flex;
    gap: 1rem;
}

.footer-social .social-icons a {
    color: var(--color-text-light);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social .social-icons a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.copyright {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
}

.language-footer select {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--color-text-light);
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
    border-radius: 4px;
}

/* ===== Modal Styles ===== */
.modal-content {
    border-radius: 8px;
    overflow: hidden;
}

.modal-header {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border-bottom: none;
}

.modal-title {
    font-family: var(--font-heading);
}

.btn-close {
    color: var(--color-text-light);
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Mobile Menu Extras */
.mobile-menu-extras {
    display: none;
    border-top: 1px solid var(--color-sand-dark);
    margin-top: 2rem;
    padding-top: 2rem;
}

.mobile-menu-extras h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-night-blue);
    font-family: var(--font-heading);
}

.mobile-language-selector {
    margin-bottom: 2rem;
}

.mobile-language-selector select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--color-sand-dark);
    border-radius: 4px;
    font-size: 1rem;
    background-color: var(--color-sand-light);
    color: var(--color-night-blue);
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.mobile-language-selector select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.mobile-social-icons .social-links {
    display: flex;
    gap: 1.5rem;
}

.mobile-social-icons .social-links a {
    font-size: 1.8rem;
    color: var(--color-night-blue);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-social-icons .social-links a:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

.mobile-social-icons .social-links a:active {
    transform: scale(0.95);
}

/* ===== Media Queries ===== */
/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    section {
        padding: var(--section-padding-mobile);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .packages-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .gallery-slider {
        height: 450px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .header-content {
        position: relative;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 320px;
        height: 100vh;
        background-color: var(--color-text-light);
        z-index: 1000;
        transition: right 0.3s ease, box-shadow 0.3s ease;
        padding: 6rem 2rem 2rem;
        box-shadow: none;
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-menu-extras {
        display: block;
    }
    
    .nav-links {
        flex-direction: column;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .mobile-nav-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .tagline {
        font-size: 1.2rem;
    }
    
    .gallery-slider {
        height: 400px;
    }
    
    .booking-progress {
        overflow-x: auto;
        padding-bottom: 1rem;
        justify-content: flex-start;
    }
    
    .progress-step {
        margin-right: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content .tagline {
        font-size: 1.1rem;
    }
    
    .review-badge {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }
    
    .gallery-slider {
        height: 350px;
    }
    
    .gallery-caption h3 {
        font-size: 1.4rem;
    }
    
    .activities-group {
        grid-template-columns: 1fr;
    }
    
    .submission-options {
        flex-direction: column;
    }
    
    .submission-options button {
        width: 100%;
    }
}










.sslc-gallery-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.sslc-gallery-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.sslc-gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-items: center;
}

.sslc-gallery-item {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.sslc-gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.sslc-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

/* Responsive layout for mobile */
@media (max-width: 768px) {
    .sslc-gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Blog Section Styles */
.blog-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.blog-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #d4af37; /* Gold color accent */
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #222;
    line-height: 1.4;
}

.blog-date {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.blog-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    color: #d4af37;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.read-more::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.read-more:hover {
    color: #b5942b;
}

.read-more:hover::after {
    width: 100%;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .blog-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .blog-container {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .blog-item {
        margin-bottom: 0;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 1.2rem;
    }
}

/* Tablet Responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
    .blog-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-item:last-child {
        grid-column: span 2;
        max-width: calc(50% - 15px);
        margin: 0 auto;
    }
}


.eapps-widget-toolbar {
    display: none !important;
}


