@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Playwrite+DE+SAS:wght@100..400&family=Saira+Stencil:ital,wght@0,100..900;1,100..900&display=swap');

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary-teal: #1B6B5E;
      --primary-orange: #E88D1F;
      --primary-gold: #F5D99B;
      --dark-forest: #1E2F2F;
      --sand-light: #FDF9F2;
      --beige-mid: #F0EBE1;
      --stone: #4a5b66;
      --white: #FFFFFF;
      --black: #1A1A1A;
      --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.05);
      --shadow-md: 0 20px 40px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 30px 50px rgba(0, 0, 0, 0.15);
      --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body {
      background: var(--sand-light);
      color: var(--dark-forest);
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: var(--beige-mid); border-radius: 10px; }
    ::-webkit-scrollbar-thumb { background: var(--primary-orange); border-radius: 10px; }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes scaleIn {
      from {
        opacity: 0;
        transform: scale(0.9);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes shimmer {
      0% { background-position: -200% 0; }
      100% { background-position: 200% 0; }
    }

    .animate-on-scroll {
      opacity: 0;
    }

    .animate-on-scroll.animated {
      animation-duration: 0.8s;
      animation-fill-mode: forwards;
    }

    .fade-up.animated { animation-name: fadeInUp; }
    .fade-left.animated { animation-name: fadeInLeft; }
    .fade-right.animated { animation-name: fadeInRight; }
    .scale-in.animated { animation-name: scaleIn; }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 2;
    }

    /* ========== NAVBAR RESPONSIVE ========== */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      position: sticky;
      top: 16px;
      z-index: 1100;
      background: rgba(255, 253, 245, 0.98);
      backdrop-filter: blur(12px);
      border-radius: 60px;
      margin: 0 auto;
      padding: 8px 24px;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(232, 141, 31, 0.3);
      width: calc(100% - 32px);
      max-width: 1300px;
      transition: var(--transition-fast);
    }
   
    .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 img:hover { transform: scale(1.05); }
    .logo span {
      font-size: 1.6rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--primary-teal), var(--primary-orange));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      letter-spacing: -0.3px;
    }

    .nav-links {
      transition: all 0.3s ease;
    }
    .nav-links ul {
      display: flex;
      gap: 1.5rem;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      font-weight: 600;
      color: var(--dark-forest);
      transition: 0.25s;
      position: relative;
      font-size: 0.9rem;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary-orange);
      transition: 0.3s;
    }
    .nav-links a:hover::after { width: 100%; }
    .nav-links a:hover { color: var(--primary-orange); }

    .dropdown { position: relative; }

    .dropdown-menu {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      display: flex;
      flex-direction: column;
      gap: 5px;
      background: rgba(255, 253, 245, 0.98);
      backdrop-filter: blur(12px);
      border-radius: 20px;
      box-shadow: var(--shadow-md);
      min-width: 220px;
      padding: 10px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-12px);
      transition: all 0.25s ease;
      list-style: none;
      border: 1px solid rgba(232, 141, 31, 0.2);
      z-index: 9999;
    }

    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-menu a {
      display: block;
      padding: 10px 18px;
      white-space: nowrap;
      text-align: left;
      transition: 0.2s;
    }

    .dropdown-menu a:hover {
      background: rgba(232, 141, 31, 0.1);
      color: var(--primary-orange);
      padding-left: 24px;
    }

    .dropdown-menu a::after { display: none; }

    .menu-toggle {
      display: none;
      font-size: 1.6rem;
      cursor: pointer;
      color: var(--primary-teal);
      background: none;
      border: none;
      padding: 8px;
    }

    /* ========== HERO ========== */
    .hero-marodoka {
      position: relative;
      min-height: 85vh;
      display: flex;
      align-items: center;
      background: linear-gradient(135deg, rgba(0,0,0,0.65), rgba(0,0,0,0.55)), url('../Img/QE22.jpg');
      background-size: cover;
      background-position: center 30%;
      background-attachment: fixed;
      margin-bottom: 20px;
      border-radius: 0 0 60px 60px;
      padding: 80px 0;
    }

    .hero-grid {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
    }
    .hero-text { flex: 1.2; }
    .badge {
      background: linear-gradient(135deg, var(--primary-orange), #f4a23d);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 20px;
      border-radius: 60px;
      font-weight: 700;
      font-size: 0.8rem;
      margin-bottom: 24px;
      color: white;
      backdrop-filter: blur(2px);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }
    .hero-text h1 {
      font-size: 3.8rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 20px;
      color: white;
      text-shadow: 0 4px 20px rgba(0,0,0,0.4);
      animation: fadeInUp 0.8s ease-out;
    }
    .hero-text p {
      font-size: 1rem;
      line-height: 1.6;
      color: rgba(255,255,255,0.95);
      margin-bottom: 20px;
    }
    .hero-image {
      flex: 0.9;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      transform: rotate(2deg);
      transition: transform 0.5s ease;
    }
    .hero-image:hover { transform: rotate(0deg) scale(1.02); }
    .hero-image img { width: 100%; display: block; transition: transform 0.5s ease; }
    .hero-image:hover img { transform: scale(1.03); }

    section { padding: 80px 0; position: relative; }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      text-align: center;
      margin-bottom: 16px;
      color: var(--dark-forest);
      position: relative;
      display: inline-block;
      width: 100%;
    }
    .section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 3px;
      background: linear-gradient(90deg, var(--primary-orange), var(--primary-teal));
      margin: 20px auto 0;
      border-radius: 3px;
    }
    .section-subtitle {
      text-align: center;
      font-size: 1.1rem;
      color: var(--stone);
      max-width: 700px;
      margin: 0 auto 48px;
      padding: 0 16px;
    }

    /* Image Slider amélioré */
    .image-slider-section {
      width: 100%;
      position: relative;
      overflow: hidden;
    }

    .slider-container {
      position: relative;
      width: 100%;
      height: 85vh;
    }

    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .slide.active {
      opacity: 1;
      z-index: 1;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.85);
    }

    .slide-content {
      position: absolute;
      bottom: 15%;
      left: 10%;
      color: white;
      max-width: 600px;
      z-index: 2;
      animation: fadeInUp 0.8s ease-out;
    }

    .slide-content h2 {
      font-size: 3rem;
      margin-bottom: 15px;
      text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
    }

    .slide-content p {
      font-size: 1.2rem;
      line-height: 1.6;
      text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    }

    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      border: none;
      color: white;
      font-size: 1.5rem;
      padding: 15px 20px;
      cursor: pointer;
      z-index: 3;
      border-radius: 50%;
      transition: 0.3s;
      backdrop-filter: blur(5px);
    }

    .slider-btn:hover {
      background: var(--primary-orange);
      transform: translateY(-50%) scale(1.1);
    }

    .prev { left: 20px; }
    .next { right: 20px; }

    /* Formations section améliorée */
    .formations-section {
      background: linear-gradient(135deg, #1E2F2F, #2A3A32);
      color: white;
      position: relative;
      overflow: hidden;
    }
    .formations-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(232,141,31,0.1) 0%, transparent 70%);
      animation: rotate 20s linear infinite;
    }
    @keyframes rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    .formations-section .section-title,
    .formations-section .section-subtitle {
      color: white;
    }
    .formations-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 20px;
    }
    .formation-card {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 28px;
      overflow: hidden;
      transition: var(--transition-smooth);
      color: var(--dark-forest);
      position: relative;
    }
    .formation-card:hover {
      transform: translateY(-12px);
      box-shadow: var(--shadow-lg);
    }
    .formation-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(232,141,31,0.2), transparent);
      transition: left 0.6s;
    }
    .formation-card:hover::before {
      left: 100%;
    }
    .formation-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .formation-card:hover img {
      transform: scale(1.05);
    }
    .formation-info {
      padding: 24px;
    }

    /* Search section */
    .search-section {
      background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.7)), url('../Img/NosyBe.jpg');
      background-attachment: fixed;
      background-size: cover;
      padding: 60px 0;
    }
    .search-container {
      background: rgba(255, 255, 255, 0.98);
      border-radius: 60px;
      padding: 28px 32px;
      box-shadow: var(--shadow-lg);
      display: flex;
      flex-wrap: wrap;
      align-items: flex-end;
      justify-content: space-between;
      gap: 20px;
      border: 1px solid rgba(232,141,31,0.3);
    }
    .search-item { flex: 1; min-width: 160px; }
    .search-item label {
      font-size: 0.7rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--primary-orange);
      margin-bottom: 6px;
      display: block;
    }
    .search-item input, .search-item select {
      width: 100%;
      padding: 10px 0;
      border: none;
      background: transparent;
      font-weight: 600;
      font-size: 0.95rem;
      outline: none;
      border-bottom: 2px solid #e2e2e2;
      transition: border-color 0.3s;
    }
    .search-item input:focus, .search-item select:focus { border-bottom-color: var(--primary-orange); }
    .btn-go {
      background: linear-gradient(135deg, var(--primary-teal), #0F4A40);
      border: none;
      padding: 14px 36px;
      border-radius: 60px;
      font-weight: 700;
      font-size: 0.95rem;
      color: white;
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      transition: var(--transition-fast);
      white-space: nowrap;
    }
    .btn-go:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(27,107,94,0.3);
    }

    /* Activities grid */
    .activities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    .activity-card {
      background: var(--white);
      border-radius: 28px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition-smooth);
    }
    .activity-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }
    .activity-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .activity-card:hover img {
      transform: scale(1.05);
    }
    .activity-info { padding: 24px 20px; }

    /* CTA Section */
    .camping-cta {
      background: linear-gradient(115deg, #1E2F2F, #0F1E18), url('../Img/P9.jpg');
      background-blend-mode: overlay;
      background-size: cover;
      background-attachment: fixed;
      text-align: center;
      padding: 80px 20px;
      position: relative;
    }
    .camping-cta::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,0.3);
    }
    .camping-cta .container { position: relative; z-index: 1; }
    .camping-cta h2 { font-size: 2.5rem; font-weight: 800; color: white; }
    .camping-cta p { font-size: 1.1rem; margin: 16px 0 28px; color: rgba(255,255,255,0.95); }
    .btn-camping {
      background: linear-gradient(135deg, var(--primary-orange), #f4a23d);
      border: none;
      padding: 16px 42px;
      font-size: 1rem;
      font-weight: 700;
      border-radius: 60px;
      color: var(--dark-forest);
      cursor: pointer;
      transition: var(--transition-fast);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 8px 18px rgba(0,0,0,0.2);
    }
    .btn-camping:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }

    /* Destinations Carousel */
    .destinations-carousel {
      background: var(--beige-mid);
      padding: 80px 0;
    }
    .carousel-container {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .desti-cards {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding: 16px 5px 32px;
      scrollbar-width: thin;
      scroll-snap-type: x mandatory;
    }
    .desti-cards::-webkit-scrollbar { height: 6px; }
    .desti-cards::-webkit-scrollbar-track { background: rgba(0,0,0,0.1); border-radius: 10px; }
    .desti-cards::-webkit-scrollbar-thumb { background: var(--primary-orange); border-radius: 10px; }
    .desti-card {
      min-width: 280px;
      background: var(--white);
      border-radius: 28px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      scroll-snap-align: start;
      flex-shrink: 0;
      transition: var(--transition-smooth);
    }
    .desti-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }
    .desti-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .desti-card:hover img {
      transform: scale(1.05);
    }
    .desti-info { padding: 20px; }
    .btn-book {
      background: linear-gradient(135deg, var(--primary-teal), #0F4A40);
      border: none;
      color: white;
      padding: 10px 24px;
      border-radius: 40px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition-fast);
      font-size: 0.85rem;
    }
    .btn-book:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(27,107,94,0.3);
    }
    .carousel-btn {
      position: absolute;
      top: 45%;
      transform: translateY(-50%);
      background: white;
      border: none;
      width: 48px;
      height: 48px;
      border-radius: 60px;
      box-shadow: var(--shadow-md);
      cursor: pointer;
      color: var(--primary-teal);
      font-size: 1.2rem;
      transition: var(--transition-fast);
      z-index: 10;
    }
    .carousel-btn.left { left: -8px; }
    .carousel-btn.right { right: -8px; }
    .carousel-btn:hover {
      background: var(--primary-orange);
      color: white;
      transform: translateY(-50%) scale(1.1);
    }
    
    /* News section */
    .news-section {
      background: linear-gradient(135deg, #1E2F2F, #2A3A32), url('../Img/MO3.JPG');
      background-blend-mode: overlay;
      background-size: cover;
      background-attachment: fixed;
    }
    .news-section .section-title, .news-section .section-subtitle { color: white; }
    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    .news-card {
      background: rgba(255, 255, 255, 0.96);
      border-radius: 28px;
      overflow: hidden;
      transition: var(--transition-smooth);
    }
    .news-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }
    .news-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .news-card:hover img {
      transform: scale(1.05);
    }
    .news-card .content { padding: 24px; }
    .btn-news {
      background: linear-gradient(135deg, var(--primary-orange), #f4a23d);
      color: white;
      padding: 10px 24px;
      border-radius: 40px;
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 600;
      display: inline-block;
      margin-top: 14px;
      transition: var(--transition-fast);
      border: none;
      cursor: pointer;
    }
    .btn-news:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(232,141,31,0.3);
    }

    /* Presentation section */
    .presentation-section {
      background: var(--sand-light);
      padding: 80px 0;
    }
    .presentation-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 50px;
      align-items: center;
    }
    .presentation-text { flex: 1.2; }
    .presentation-text h2 {
      font-size: 3rem;
      color: var(--dark-forest);
    }
    .presentation-highlight {
      background: linear-gradient(135deg, rgba(27,107,94,0.1), rgba(232,141,31,0.05));
      padding: 20px 26px;
      border-radius: 28px;
      margin-top: 22px;
      border-left: 4px solid var(--primary-orange);
      transition: var(--transition-fast);
    }
    .presentation-highlight:hover {
      transform: translateX(5px);
      background: linear-gradient(135deg, rgba(27,107,94,0.15), rgba(232,141,31,0.08));
    }
    .presentation-image {
      flex: 0.9;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

   /* ========== 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;
  }
}
    /* Loader */
    .loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--sand-light);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 0.5s;
    }
    .loader.hidden {
      opacity: 0;
      visibility: hidden;
    }
    .spinner {
      width: 60px;
      height: 60px;
      border: 4px solid var(--beige-mid);
      border-top-color: var(--primary-orange);
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }
    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* Responsive */
    @media (max-width: 950px) {
      .menu-toggle { display: block; }
      .nav-links {
        display: none;
        width: 100%;
        background: rgba(255, 253, 245, 0.98);
        border-radius: 28px;
        margin-top: 16px;
        padding: 16px 0;
      }
      .nav-links.active { display: block; }
      .nav-links ul { flex-direction: column; gap: 0; align-items: center; }
      .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: rgba(240, 235, 225, 0.95);
      }
      .dropdown.active .dropdown-menu { display: block; }
      .hero-marodoka { min-height: 60vh; }
      .hero-text h1 { font-size: 2.2rem; }
      .search-container { flex-direction: column; }
      .btn-go { justify-content: center; width: 100%; }
    }

    @media (max-width: 768px) {
      .hero-grid { flex-direction: column; text-align: center; }
      .hero-image { display: none; }
      .section-title { font-size: 2rem; }
      .slide-content h2 { font-size: 2rem; }
      .slide-content p { font-size: 1rem; }
      .carousel-btn { display: none; }
      .presentation-grid { flex-direction: column; text-align: center; }
      .footer-grid { flex-direction: column; text-align: center; }
    }

    .more-text { display: none; margin-top: 10px; color: #555; line-height: 1.6; }
    html { scroll-padding-top: 100px; }