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

    html{
      scroll-behavior:smooth;
    }

    body{
      font-family:Arial, sans-serif;
      background:#fff;
      color:#222;
      line-height:1.6;
      overflow-x:hidden;
    }

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

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

    .container{
      width:92%;
      max-width:1250px;
      margin:0 auto;
    }

    .section{
      padding:75px 0;
    }

    .section-light{
      background:#faf7f1;
    }

    .section-title{
      text-align:center;
      margin-bottom:40px;
    }

    .section-title h2{
      font-size:38px;
      color:#111;
      margin-bottom:10px;
    }

    .section-title p{
      max-width:760px;
      margin:0 auto;
      color:#666;
      font-size:17px;
    }

    .btn{
      display:inline-block;
      background:#c89b3c;
      color:#fff;
      padding:13px 26px;
      border-radius:30px;
      font-weight:700;
      transition:0.3s ease;
    }

    .btn:hover{
      background:#a67d2f;
    }

    .btn-outline{
      display:inline-block;
      border:2px solid #fff;
      color:#fff;
      padding:11px 24px;
      border-radius:30px;
      font-weight:700;
      transition:0.3s ease;
    }

    .btn-outline:hover{
      background:#fff;
      color:#222;
    }

    /* HERO SLIDER */
    .hero{
      position:relative;
      min-height:92vh;
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      padding:120px 20px 80px;
      overflow:hidden;
    }

    .hero-slider{
      position:absolute;
      inset:0;
      z-index:1;
    }

    .hero-slide{
      position:absolute;
      inset:0;
      background-size:cover;
      background-position:center;
      opacity:0;
      transition:opacity 1.2s ease-in-out;
      transform:scale(1.05);
    }

    .hero-slide.active{
      opacity:1;
    }

    .hero-overlay{
      position:absolute;
      inset:0;
      background:linear-gradient(rgba(0,0,0,0.50), rgba(0,0,0,0.50));
      z-index:2;
    }

    .hero-content{
      position:relative;
      z-index:3;
      max-width:980px;
    }

    .hero h1{
      font-size:56px;
      line-height:1.15;
      margin-bottom:18px;
    }

    .hero p{
      font-size:20px;
      color:#f0f0f0;
      max-width:800px;
      margin:0 auto 28px;
    }

    .hero-buttons{
      display:flex;
      justify-content:center;
      flex-wrap:wrap;
      gap:15px;
    }

    .slider-dots{
      position:absolute;
      bottom:30px;
      left:50%;
      transform:translateX(-50%);
      display:flex;
      gap:10px;
      z-index:4;
    }

    .slider-dot{
      width:12px;
      height:12px;
      border-radius:50%;
      background:rgba(255,255,255,0.5);
      cursor:pointer;
      transition:0.3s ease;
    }

    .slider-dot.active{
      background:#c89b3c;
      transform:scale(1.15);
    }

    .mini-intro{
      margin-top:-45px;
      position:relative;
      z-index:5;
    }

    .mini-intro-box{
      background:#fff;
      border-radius:22px;
      box-shadow:0 12px 35px rgba(0,0,0,0.10);
      padding:30px;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:20px;
    }

    .mini-item{
      text-align:center;
      padding:15px;
    }

    .mini-item h3{
      font-size:20px;
      color:#111;
      margin-bottom:8px;
    }

    .mini-item p{
      font-size:14px;
      color:#666;
    }

    .about-grid{
      display:grid;
      grid-template-columns:1.1fr 1fr;
      gap:40px;
      align-items:center;
    }

    .about-text h2{
      font-size:36px;
      margin-bottom:18px;
      color:#111;
    }

    .about-text p{
      color:#555;
      font-size:17px;
      margin-bottom:15px;
    }

    .about-image img{
      width:100%;
      height:450px;
      object-fit:cover;
      border-radius:22px;
      box-shadow:0 10px 30px rgba(0,0,0,0.10);
    }

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

    .departure-card{
      background:#fff;
      border-radius:20px;
      box-shadow:0 8px 24px rgba(0,0,0,0.06);
      padding:26px 22px;
      text-align:center;
      transition:0.3s ease;
    }

    .departure-card:hover{
      transform:translateY(-6px);
    }

    .departure-card h3{
      font-size:24px;
      margin-bottom:10px;
      color:#111;
    }

    .departure-card p{
      color:#666;
      font-size:15px;
      margin-bottom:18px;
    }

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

    .card{
      background:#fff;
      border-radius:22px;
      overflow:hidden;
      box-shadow:0 10px 30px rgba(0,0,0,0.08);
      transition:0.3s ease;
    }

    .card:hover{
      transform:translateY(-6px);
    }

    .card img{
      width:100%;
      height:240px;
      object-fit:cover;
    }

    .card-content{
      padding:24px;
    }

    .tag{
      display:inline-block;
      background:#f3e5c2;
      color:#8a6420;
      font-size:12px;
      font-weight:700;
      padding:6px 10px;
      border-radius:20px;
      margin-bottom:12px;
    }

    .card-content h3{
      font-size:22px;
      margin-bottom:10px;
      color:#111;
    }

    .card-content p{
      color:#666;
      font-size:15px;
      margin-bottom:16px;
    }

    .tour-meta{
      font-size:14px;
      color:#888;
      margin-bottom:15px;
    }

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

    .feature-box{
      background:#fff;
      border-radius:20px;
      padding:28px 24px;
      box-shadow:0 8px 24px rgba(0,0,0,0.06);
      text-align:center;
    }

    .feature-box h3{
      font-size:22px;
      margin-bottom:10px;
      color:#111;
    }

    .feature-box p{
      color:#666;
      font-size:15px;
    }

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

    .review{
      background:#fff;
      border-radius:20px;
      padding:28px;
      box-shadow:0 8px 24px rgba(0,0,0,0.06);
    }

    .stars{
      color:#c89b3c;
      font-size:18px;
      margin-bottom:10px;
      letter-spacing:2px;
    }

    .review p{
      color:#555;
      font-style:italic;
      margin-bottom:14px;
    }

    .review h4{
      font-size:16px;
      color:#111;
    }

    .cta{
      background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80') center center/cover no-repeat;
      color:#fff;
      border-radius:24px;
      text-align:center;
      padding:85px 25px;
    }

    .cta h2{
      font-size:40px;
      margin-bottom:14px;
    }

    .cta p{
      max-width:760px;
      margin:0 auto 25px;
      color:#f0f0f0;
      font-size:18px;
    }

    .seo-box{
      background:#f5f5f5;
      border-radius:22px;
      padding:40px;
    }

    .seo-box h2{
      font-size:32px;
      margin-bottom:16px;
      color:#111;
    }

    .seo-box p{
      font-size:16px;
      color:#555;
      margin-bottom:14px;
    }

    .contact-box{
      background:#111;
      color:#fff;
      text-align:center;
      border-radius:22px;
      padding:50px 25px;
    }

    .contact-box h2{
      font-size:34px;
      margin-bottom:14px;
    }

    .contact-box p{
      color:#ddd;
      font-size:17px;
      margin-bottom:8px;
    }

    .contact-buttons{
      margin-top:22px;
      display:flex;
      flex-wrap:wrap;
      justify-content:center;
      gap:14px;
    }

    .contact-buttons a{
      display:inline-block;
      background:#c89b3c;
      color:#fff;
      padding:14px 24px;
      border-radius:30px;
      font-weight:700;
    }

    @media (max-width: 1100px){
      .mini-intro-box,
      .departures-grid,
      .cards,
      .feature-grid,
      .reviews{
        grid-template-columns:repeat(2,1fr);
      }

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

    @media (max-width: 768px){
      .hero{
        min-height:82vh;
        padding:110px 18px 70px;
      }

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

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

      .section{
        padding:60px 0;
      }

      .section-title h2,
      .about-text h2,
      .cta h2,
      .seo-box h2,
      .contact-box h2{
        font-size:28px;
      }

      .mini-intro{
        margin-top:30px;
      }

      .mini-intro-box,
      .departures-grid,
      .cards,
      .feature-grid,
      .reviews{
        grid-template-columns:1fr;
      }

      .about-image img{
        height:320px;
      }
    }