* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary-green: #1B5E3F;
      --primary-green-deep: #0E3D28;
      --primary-orange: #C27E46;
      --primary-orange-light: #D6965C;
      --primary-orange-soft: #FBE5D2;
      --dark-bg: #0A1510;
      --light-bg: #FBF7F0;
      --card-bg: #FFFFFF;
      --text-dark: #1E2F28;
      --text-light: #5A6E5E;
      --gold: #EFCD9B;
      --gold-light: #F9E2B7;
      --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.08);
      --shadow-md: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
      --shadow-lg: 0 30px 50px -20px rgba(0, 0, 0, 0.25);
      --transition-smooth: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }

    body {
      background-color: var(--light-bg);
      color: var(--text-dark);
      line-height: 1.5;
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: #EADDCB; border-radius: 10px; }
    ::-webkit-scrollbar-thumb { background: var(--primary-orange); border-radius: 10px; }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* ========== NAVBAR MODERNE ========== */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      background: rgba(255, 252, 245, 0.96);
      backdrop-filter: blur(20px);
      border-radius: 80px;
      padding: 8px 36px;
      box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(194, 126, 70, 0.2);
      width: calc(100% - 40px);
      max-width: 1300px;
      transition: var(--transition-smooth);
    }

    .navbar.scrolled {
      top: 10px;
      padding: 6px 32px;
      background: rgba(255, 252, 245, 0.98);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .logo img {
      height: 44px;
      width: 44px;
      border-radius: 30px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    .logo:hover img {
      transform: scale(1.05);
    }
    .logo span {
      font-size: 1.6rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--primary-green), var(--primary-orange));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      letter-spacing: -0.3px;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.8rem;
      cursor: pointer;
      color: var(--primary-green);
      padding: 8px;
      transition: var(--transition-smooth);
    }

    .navbar ul {
      display: flex;
      gap: 2rem;
      list-style: none;
      align-items: center;
      margin: 0;
    }

    .navbar li { position: relative; }
    .navbar a {
      text-decoration: none;
      font-weight: 600;
      color: #2F4238;
      transition: 0.25s;
      font-size: 0.95rem;
      display: inline-block;
      padding: 8px 0;
    }

    .navbar > ul > li > a::after {
      content: '';
      position: absolute;
      bottom: 0px;
      left: 0;
      width: 0;
      height: 2.5px;
      background: var(--primary-orange);
      transition: 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }

    .navbar > ul > li > a:hover::after { width: 100%; }
    .navbar a:hover { color: var(--primary-orange); }

    .dropdown { position: relative; }
    .dropdown > a { display: flex; align-items: center; gap: 5px; }
    .dropdown > a i { transition: transform 0.3s ease; }
    .dropdown:hover > a i { transform: rotate(180deg); }

    .dropdown-menu {
      position: absolute;
      top: 45px;
      left: 0;
      background: rgba(255, 252, 245, 0.98);
      backdrop-filter: blur(16px);
      border-radius: 20px;
      padding: 12px 0;
      min-width: 210px;
      box-shadow: var(--shadow-md);
      list-style: none;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
      border: 1px solid rgba(194, 126, 70, 0.3);
      z-index: 100;
    }

    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-menu a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 24px;
      color: #2F4238;
      font-weight: 500;
      transition: all 0.25s ease;
    }

    .dropdown-menu a i {
      width: 20px;
      font-size: 1rem;
      color: var(--primary-orange);
      transition: transform 0.25s ease;
    }

    .dropdown-menu a:hover {
      background: rgba(194, 126, 70, 0.12);
      color: var(--primary-orange);
      padding-left: 28px;
    }

    .dropdown-menu a:hover i { transform: translateX(4px); }

    /* ========== HERO ========== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 140px 24px 160px;
      overflow: hidden;
      border-radius: 0 0 100px 100px;
    }

    .hero-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.5) saturate(1.1);
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(5, 25, 18, 0.7), rgba(0, 0, 0, 0.75));
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      animation: fadeInUp 1.2s ease-out;
    }

    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(40px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    .hero-badge {
      background: rgba(0,0,0,0.5);
      backdrop-filter: blur(10px);
      padding: 8px 32px;
      border-radius: 60px;
      color: #FFE8CF;
      letter-spacing: 5px;
      font-size: 0.8rem;
      font-weight: 700;
      margin-bottom: 32px;
      border: 1px solid rgba(245, 190, 100, 0.6);
      display: inline-block;
    }
    .hero h1 {
      font-size: 5.5rem;
      font-weight: 800;
      color: white;
      text-shadow: 0 20px 30px rgba(0,0,0,0.5);
      line-height: 1.05;
    }
    .hero h1 span { color: var(--gold); font-style: italic; }
    .hero p {
      max-width: 680px;
      margin: 28px auto 0;
      font-size: 1.2rem;
      background: rgba(0,0,0,0.45);
      backdrop-filter: blur(8px);
      padding: 14px 32px;
      border-radius: 80px;
      color: #FFF3E2;
    }

    .hero-scroll-indicator {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      color: white;
      font-size: 1.5rem;
      animation: bounce 2s infinite;
      cursor: pointer;
    }

    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(10px); }
    }

    .video-control {
      position: absolute;
      bottom: 100px;
      right: 30px;
      z-index: 3;
      background: rgba(0,0,0,0.5);
      backdrop-filter: blur(8px);
      border: none;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      color: white;
      cursor: pointer;
      transition: 0.3s;
      font-size: 1.2rem;
    }
    .video-control:hover {
      background: var(--primary-orange);
      transform: scale(1.1);
    }

    /* ========== TABS ========== */
    .tabs-section { margin: 60px 0 30px; }
    .tabs-header {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 40px;
    }
    .tab-btn {
      background: white;
      border: none;
      padding: 14px 32px;
      border-radius: 60px;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: var(--transition-smooth);
      box-shadow: var(--shadow-sm);
      color: var(--text-dark);
    }
    .tab-btn.active {
      background: var(--primary-orange);
      color: white;
      box-shadow: 0 8px 20px rgba(194,126,70,0.3);
    }
    .tab-content { display: none; animation: fadeInUp 0.5s ease; }
    .tab-content.active { display: block; }

    /* ========== CARROUSEL EXCURSIONS (MODERN) ========== */
    .slider-title {
      text-align: center;
      margin: 30px 0 30px;
    }
    .slider-title h2 {
      font-size: 2.8rem;
      background: linear-gradient(135deg, var(--primary-green), var(--primary-orange));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 12px;
    }
    .slider-title p { color: var(--text-light); font-size: 1.1rem; }

    .slider-container {
      max-width: 1400px;
      width: 100%;
      margin: 20px auto 30px;
      position: relative;
      border-radius: 2rem;
    }

    .slider-track {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      gap: 0;
    }

    .slider-card {
      min-width: 100%;
      display: flex;
      gap: 40px;
      align-items: center;
      padding: 20px;
      flex-wrap: wrap;
      background: white;
      border-radius: 2rem;
      box-shadow: var(--shadow-lg);
      transition: var(--transition-smooth);
    }

    /* IMAGE CARROUSEL INSIDE CARD */
    .card-slider {
      flex: 1;
      min-width: 380px;
      position: relative;
      height: 450px;
      overflow: hidden;
      border-radius: 28px;
      box-shadow: var(--shadow-md);
    }

    .card-slider img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transform: scale(1.05);
      transition: opacity 0.8s ease, transform 6s ease;
    }

    .card-slider img.active {
      opacity: 1;
      transform: scale(1);
    }

    /* Progress bar for image slider */
    .slider-progress {
      position: absolute;
      bottom: 15px;
      left: 15px;
      right: 15px;
      height: 3px;
      background: rgba(255,255,255,0.3);
      border-radius: 3px;
      overflow: hidden;
      z-index: 10;
    }
    .slider-progress-bar {
      height: 100%;
      width: 0%;
      background: var(--primary-orange);
      border-radius: 3px;
      transition: width 0.1s linear;
    }

    /* CONTENT */
    .card-content {
      flex: 1;
      min-width: 300px;
      padding: 20px;
    }

    .badge {
      display: inline-block;
      background: linear-gradient(135deg, var(--primary-orange), #B45F2E);
      color: white;
      padding: 8px 18px;
      border-radius: 30px;
      font-size: 0.8rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .card-content h3 {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      color: var(--primary-green);
      margin-bottom: 10px;
    }

    .duration {
      color: var(--primary-orange);
      font-weight: 600;
      margin-bottom: 15px;
      display: inline-block;
      background: var(--primary-orange-soft);
      padding: 5px 15px;
      border-radius: 30px;
      font-size: 0.85rem;
    }

    .description {
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 20px;
      font-size: 1rem;
    }

    .card-content ul {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 20px 0;
    }

    .card-content ul li {
      font-size: 0.85rem;
      background: var(--primary-orange-soft);
      padding: 6px 14px;
      border-radius: 50px;
      color: var(--primary-orange);
      font-weight: 600;
    }

    /* Navigation Buttons */
    .slider-nav {
      position: absolute;
      top: 50%;
      width: 100%;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
      pointer-events: none;
      z-index: 20;
    }

    .nav-btn {
      pointer-events: auto;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(8px);
      border: none;
      width: 55px;
      height: 55px;
      border-radius: 50%;
      font-size: 1.8rem;
      color: white;
      cursor: pointer;
      transition: 0.3s;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .nav-btn:hover {
      background: var(--primary-orange);
      transform: scale(1.1);
    }

    /* Dots */
    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin: 30px 0 50px;
    }

    .dot {
      width: 10px;
      height: 10px;
      background: #ccc;
      border-radius: 50%;
      transition: all 0.3s;
      cursor: pointer;
    }

    .dot.active {
      background: var(--primary-orange);
      width: 28px;
      border-radius: 10px;
    }

    /* ========== FESTIVAL SOMAROHO ========== */
    .festival-section {
      margin-top: 60px;
      padding-top: 30px;
      border-top: 2px dashed var(--primary-orange-soft);
    }

    .festival-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      margin: 30px 0 20px;
    }

    .festival-card {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: center;
      padding: 20px;
      background: white;
      border-radius: 2rem;
      box-shadow: var(--shadow-lg);
      transition: var(--transition-smooth);
    }

    .festival-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .festival-card .card-slider {
      flex: 1;
      min-width: 380px;
      height: 450px;
      border-radius: 28px;
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow-md);
    }

    .festival-card .card-content {
      flex: 1;
      min-width: 300px;
      padding: 20px;
    }

    /* TRANSFER GRID */
    .transfer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 30px;
      margin: 40px 0;
    }
    .transfer-card {
      background: white;
      border-radius: 2rem;
      padding: 28px;
      transition: var(--transition-smooth);
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(194,126,70,0.2);
    }
    .transfer-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
      border-color: var(--primary-orange);
    }
    .transfer-icon { font-size: 2.8rem; color: var(--primary-orange); margin-bottom: 16px; }
    .transfer-card h3 { font-size: 1.5rem; margin-bottom: 16px; color: var(--primary-green); }
    .transfer-route {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      margin: 12px 0;
      background: #F6F0E8;
      padding: 8px 12px;
      border-radius: 60px;
      flex-wrap: wrap;
    }
    .transfer-route i { color: var(--primary-orange); }
    .transfer-price { font-weight: 800; font-size: 1.3rem; color: var(--primary-green); margin: 20px 0 12px; }
    .transfer-desc { color: var(--text-light); font-size: 0.85rem; margin-bottom: 20px; }
    .transfer-btn {
      background: linear-gradient(135deg, var(--primary-orange), #B45F2E);
      border: none;
      padding: 12px 24px;
      border-radius: 60px;
      color: white;
      font-weight: 700;
      cursor: pointer;
      transition: 0.3s;
      width: 100%;
    }
    .transfer-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(194,126,70,0.4);
    }

    /* Formulaire */
    .booking-form-section {
      background: linear-gradient(135deg, #0E2F24, #041911);
      border-radius: 64px;
      padding: 56px;
      margin: 60px 0;
      color: white;
      box-shadow: var(--shadow-lg);
    }
    .booking-form-section h2 { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--gold); margin-bottom: 12px; }
    .booking-form-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      margin-top: 16px;
    }
    .form-group { flex: 1; min-width: 200px; }
    .form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.85rem; }
    .form-group input, .form-group select {
      width: 100%;
      padding: 14px 20px;
      border-radius: 60px;
      border: none;
      background: #FEF8F0;
      font-family: inherit;
    }
    .booking-btn {
      background: linear-gradient(135deg, var(--primary-orange), #B45F2E);
      border: none;
      padding: 16px 32px;
      border-radius: 60px;
      font-weight: 800;
      font-size: 1rem;
      cursor: pointer;
      color: white;
      margin-top: 32px;
      width: 100%;
      transition: 0.3s;
    }
    .booking-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(194,126,70,0.5); }

    /* Why section */
    .why-section {
      background: #FCF5E8;
      border-radius: 64px;
      padding: 70px 48px;
      margin: 40px 0;
    }
    .why-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
      max-width: 1100px;
      margin: auto;
    }
    .why-box {
      display: flex;
      gap: 24px;
      background: white;
      padding: 32px;
      border-radius: 48px;
      transition: 0.3s;
    }
    .why-box:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
    .why-box i { font-size: 42px; color: var(--primary-orange); }

    /* Testimonials */
    .testimonials {
      background: #F0E5D6;
      border-radius: 64px;
      padding: 70px 56px;
      margin: 60px 0;
    }
    .testimonial-grid {
      display: flex;
      gap: 35px;
      flex-wrap: wrap;
    }
    .testi-item {
      background: #FFFEF9;
      padding: 38px;
      border-radius: 48px;
      flex: 1;
      border-left: 6px solid var(--primary-orange);
      transition: 0.3s;
    }
    .testi-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

    /* Quad Section */
    .quad-section {
      padding: 90px 0;
      background: #f8fafc;
    }
    .section-header { text-align: center; margin-bottom: 50px; }
    .section-header h2 { font-size: 2.8rem; margin-bottom: 15px; color: var(--primary-green); }
    .section-header p { color: #64748b; max-width: 700px; margin: auto; line-height: 1.7; }
    .quad-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
    }
    .quad-card {
      background: #fff;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: 0.4s;
    }
    .quad-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
    .quad-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .quad-card:hover img { transform: scale(1.05); }
    .quad-content { padding: 25px; }
    .quad-badge {
      display: inline-block;
      background: var(--primary-orange);
      color: white;
      padding: 7px 16px;
      border-radius: 30px;
      font-size: 13px;
      margin-bottom: 15px;
    }
    .quad-content h3 { font-size: 1.8rem; margin-bottom: 15px; color: #111827; }
    .quad-content p { color: #555; line-height: 1.7; margin-bottom: 20px; }
    .quad-content ul { list-style: none; padding: 0; }
    .quad-content ul li { margin-bottom: 10px; color: #334155; font-size: 15px; }

    /* Hero Image */
    .hero-image {
      width: 100%;
      height: 90vh;
      overflow: hidden;
      position: relative;
      border-radius: 64px;
      margin: 40px 0;
    }
    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 6s ease;
    }
    .hero-image:hover img { transform: scale(1.05); }

    /* FAQ */
    .faq-section { padding: 50px 0 70px; }
    .faq-list { max-width: 900px; margin: 0 auto; }
    .faq-item {
      background: white;
      border-radius: 40px;
      margin-bottom: 20px;
      padding: 24px 32px;
      cursor: pointer;
      transition: 0.3s;
    }
    .faq-item:hover { border-left: 4px solid var(--primary-orange); box-shadow: var(--shadow-sm); }
    .faq-question {
      font-weight: 800;
      display: flex;
      justify-content: space-between;
      color: var(--primary-green);
    }
    .faq-answer { max-height: 0; overflow: hidden; transition: 0.4s; }
    .faq-item.active .faq-answer { max-height: 120px; margin-top: 20px; }

    /* ========== FOOTER EMBELLI ========== */
footer {
  background: #0F1E18;
  color: #CFD8D1;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
  border-radius: 50px 50px 0 0;
}

/* Wave SVG */
.footer-wave {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -2px;
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.wave-fill {
  fill: #0F1E18;
}

/* Footer Main */
.footer-main {
  padding: 30px 0 50px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 50px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Brand */
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-brand .footer-logo img {
  height: 55px;
  width: 55px;
  border-radius: 30px;
  object-fit: cover;
  border: 2px solid rgba(232, 141, 31, 0.3);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.footer-brand .footer-logo img:hover {
  transform: scale(1.08) rotate(-3deg);
  border-color: var(--primary-orange);
}

.footer-brand .footer-logo span {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #5BC0A8, var(--primary-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}

.footer-description {
  color: #A8B5B0;
  line-height: 1.8;
  font-size: 0.95rem;
  max-width: 320px;
  margin-bottom: 22px;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  color: #CFD8D1;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--primary-orange);
  color: #0F1E18;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(232, 141, 31, 0.3);
  border-color: var(--primary-orange);
}

/* Footer Columns */
.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.5px;
}

.footer-col h4 i {
  color: var(--primary-orange);
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #A8B5B0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.footer-col ul li a i {
  font-size: 0.6rem;
  color: var(--primary-orange);
  transition: transform 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--primary-orange);
  transform: translateX(6px);
}

.footer-col ul li a:hover i {
  transform: translateX(4px);
}

/* Contact Items */
.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--primary-orange);
  font-size: 1.1rem;
  margin-top: 3px;
  width: 20px;
  text-align: center;
}

.footer-contact-item div {
  display: flex;
  flex-direction: column;
}

.footer-contact-item span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2px;
}

.footer-contact-item a,
.footer-contact-item div span:last-child {
  color: #CFD8D1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: var(--primary-orange);
}

/* Newsletter */
.footer-newsletter-text {
  color: #A8B5B0;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 60px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s ease;
}

.footer-newsletter-form:focus-within {
  border-color: var(--primary-orange);
}

.footer-newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  background: transparent;
  border: none;
  color: white;
  font-size: 0.95rem;
  outline: none;
  min-width: 0;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter-form button {
  background: linear-gradient(135deg, var(--primary-orange), #f4a23d);
  border: none;
  padding: 12px 20px;
  border-radius: 60px;
  color: #0F1E18;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-newsletter-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(232, 141, 31, 0.4);
}

.footer-news-feedback {
  margin-top: 10px;
  font-size: 0.9rem;
  min-height: 24px;
}

.footer-note {
  margin-top: 14px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-note i {
  color: var(--primary-orange);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-bottom-content p {
  color: #8A9B94;
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom-content p strong {
  color: white;
}

.footer-bottom-content p i {
  display: inline-block;
  animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #8A9B94;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  position: relative;
}

.footer-bottom-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-orange);
  transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-orange);
}

.footer-bottom-links a:hover::after {
  width: 100%;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .footer-brand .footer-logo {
    justify-content: center;
  }

  .footer-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-newsletter-form {
    flex-direction: row;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .footer-wave {
    height: 50px;
  }

  .footer-wave svg {
    height: 50px;
  }

  .footer-col h4 {
    justify-content: center;
  }

  .footer-col ul li a {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-newsletter-form {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 10px;
  }

  .footer-newsletter-form input {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 60px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-newsletter-form button {
    width: 100%;
    padding: 14px;
  }

  .footer-social a {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
}
    /* Responsive adjustments */
    @media (max-width: 950px) {
      .navbar { flex-wrap: wrap; padding: 12px 24px; border-radius: 40px; }
      .menu-toggle { display: block; }
      .navbar ul { display: none; width: 100%; flex-direction: column; background: rgba(255,252,245,0.98); border-radius: 32px; padding: 20px; margin-top: 16px; gap: 1rem; }
      .navbar ul.active { display: flex; }
      .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; display: none; box-shadow: none; background: rgba(194,126,70,0.08); margin-top: 8px; }
      .dropdown.active .dropdown-menu { display: block; }
      .hero h1 { font-size: 3rem; }
      .why-container { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .container { padding: 0 20px; }
      .hero h1 { font-size: 2rem; }
      .booking-form-section { padding: 35px 25px; }
      .footer-grid { grid-template-columns: 1fr; text-align: center; }
      .slider-card { flex-direction: column; }
      .card-slider { min-width: 100%; height: 300px; }
      .card-content h3 { font-size: 1.8rem; }
      .hero-image { height: 50vh; }
      .festival-card { flex-direction: column; padding: 15px; }
      .festival-card .card-slider { min-width: 100%; height: 280px; }
      .festival-card .card-content h3 { font-size: 1.8rem; }
    }