/* ... all CSS from previous version (keep as is) ... */
    /* (I'll paste the CSS from the last answer for consistency) */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: #fefcf5;
      color: #1e2a1e;
      line-height: 1.5;
      overflow-x: hidden;
      padding-top: calc(48px + 80px);
    }

    html {
      scroll-behavior: smooth;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .top-bar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 48px;
      background-color: #ffb255ff;
      color: #1e2a1e;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2rem;
      font-size: 0.95rem;
      font-weight: 500;
      z-index: 1001;
      box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    }

    .top-bar-left {
      display: flex;
      gap: 2rem;
      align-items: center;
    }

    .top-bar-left i {
      margin-right: 6px;
      color: #1e2a1e;
    }

    .top-bar-right {
      display: flex;
      gap: 1.2rem;
      align-items: center;
    }

    .top-bar-right a {
      color: #1e2a1e;
      background: rgba(0,0,0,0.08);
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: 0.3s;
      text-decoration: none;
      border: 1px solid #2c5f2d;
    }

    .top-bar-right a:hover {
      background: #2c5f2d;
      color: #ffb255ff;
      transform: translateY(-2px);
    }

    .navbar {
      position: fixed;
      top: 48px;
      left: 0;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.6rem 2rem;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 2px solid #ffb255ff;
      box-shadow: 0 6px 18px rgba(0,0,0,0.25);
      z-index: 1000;
      flex-wrap: wrap;
      gap: 1rem;
      min-height: 80px;
    }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      color: white;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
    }
    .nav-logo span {
      color: #ffb255ff;
      margin-left: 5px;
    }
    .logo-img {
      height: 60px;
      width: auto;
      border-radius: 5px;
      transition: transform 0.3s ease;
    }
    .logo-img:hover {
            transform: rotate(-5deg) scale(1.05);
        }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      font-size: 1.05rem;
      padding: 0.5rem 0;
      border-bottom: 2px solid transparent;
      transition: 0.2s;
    }
    .nav-links a:hover {
      border-bottom-color: #ffb255ff;
      color: #ffcf8a;
    }

    .nav-book {
      background: #ffb255ff;
      color: #1e2a1e;
      font-weight: 600;
      padding: 8px 24px;
      border-radius: 40px;
      text-decoration: none;
      font-size: 1rem;
      border: 1px solid #2c5f2d;
      transition: 0.3s;
      white-space: nowrap;
    }
    .nav-book:hover {
      background: #2c5f2d;
      color: white;
      border-color: #ffb255ff;
      transform: scale(1.02);
    }
/* .............................................................. */
            /* adjust for fixed header (scroll margin) */
    section, .hero {
      scroll-margin-top: calc(48px + 80px + 10px);
    }

    /* ----- HERO (full screen carousel) ----- */
    .hero {
      position: relative;
      height: 100vh;
      width: 100%;
      overflow: hidden;
      color: white;
      margin-top: 0;
    }

    .carousel {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .carousel-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1.5s ease-in-out;
      z-index: 0;
    }

    .carousel-slide.active {
      opacity: 1;
      z-index: 1;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(125deg, 
        rgba(232, 98, 16, 0.55) 0%,
        rgba(46, 125, 50, 0.45) 45%,
        rgba(0, 0, 0, 0.75) 100%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 120px 20px 20px 20px; /* extra top padding for fixed bars */
      box-sizing: border-box;
    }

    .hero-content {
      max-width: 900px;
      animation: fadeInUp 1.2s ease;
    }

    .hero-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 10vw, 5.5rem);
      font-weight: 700;
      line-height: 1.1;
      text-shadow: 2px 4px 20px rgba(0,0,0,0.5);
      margin-bottom: 0.5rem;
    }

    .hero-content p {
      font-size: 1.4rem;
      font-weight: 300;
      margin-bottom: 2rem;
      text-shadow: 1px 2px 8px rgba(0,0,0,0.5);
      letter-spacing: 1px;
    }

    .hero-btn {
      display: inline-block;
      background-color: #ffb255ff;
      color: #1e2a1e;
      font-weight: 600;
      padding: 14px 38px;
      border-radius: 40px;
      text-decoration: none;
      font-size: 1.2rem;
      letter-spacing: 0.5px;
      border: 2px solid rgba(255,255,240,0.7);
      box-shadow: 0 8px 25px rgba(0,0,0,0.3);
      transition: 0.3s;
    }

    .hero-btn:hover {
      background-color: #2c5f2d;
      color: white;
      border-color: #ffb255ff;
      transform: scale(1.05);
    }

    .carousel-controls {
      position: absolute;
      bottom: 30px;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      z-index: 10;
    }

    .carousel-arrow {
      background-color: rgba(0,0,0,0.5);
      backdrop-filter: blur(4px);
      color: white;
      border: none;
      font-size: 1.6rem;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: 0.3s;
      border: 1px solid rgba(255,255,200,0.5);
    }

    .carousel-arrow:hover {
      background-color: #ffb255ff;
      color: black;
    }

    .dot-container {
      display: flex;
      gap: 12px;
    }

    .dot {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background-color: rgba(255,255,255,0.6);
      cursor: pointer;
      transition: 0.3s;
      border: 1px solid #2c5f2d;
    }

    .dot.active-dot {
      background-color: #ffb255ff;
      transform: scale(1.3);
      border-color: white;
    }

    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(30px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* ----- general sections styling (unchanged) ----- */
    section {
      padding: 80px 0;
    }

    .section-title {
      font-size: 2.5rem;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
    }
    .section-title:after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #ffb255ff, #2c5f2d);
      margin-top: 10px;
      border-radius: 2px;
    }

    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .feature-list {
      list-style: none;
      margin: 25px 0;
    }
    .feature-list li {
      margin-bottom: 12px;
      font-weight: 400;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .feature-list i {
      color: #ffb255ff;
      font-size: 1.3rem;
      width: 28px;
      text-align: center;
    }

    .image-collage {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .image-collage img {
      width: 100%;
      border-radius: 24px;
      object-fit: cover;
      box-shadow: 0 20px 30px -10px rgba(0,0,0,0.3);
      border: 3px solid #ffb255ff;
      transition: 0.3s;
    }
    .image-collage img:hover {
      transform: scale(1.02);
      border-color: #2c5f2d;
    }

    .highlight-quote {
      background: rgba(242,133,0,0.1);
      border-left: 8px solid #2c5f2d;
      padding: 25px 30px;
      font-size: 1.4rem;
      font-weight: 500;
      border-radius: 0 30px 30px 0;
      margin: 40px 0;
      color: #1e3a1e;
    }

    .expedition-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .expedition-card {
      background: white;
      border-radius: 28px;
      padding: 30px 20px;
      box-shadow: 0 15px 30px -12px rgba(0,0,0,0.2);
      transition: all 0.3s;
      border: 1px solid rgba(46,125,50,0.2);
      text-align: center;
    }
    .expedition-card:hover {
      transform: translateY(-12px);
      border-color: #ffb255ff;
      box-shadow: 0 25px 35px -8px #2c5f2d55;
    }
    .expedition-card i {
      font-size: 2.6rem;
      background: linear-gradient(145deg, #ffb255ff, #2c5f2d);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 20px;
    }
    .expedition-card h3 {
      font-size: 1.5rem;
      margin-bottom: 12px;
    }
    .expedition-card p {
      font-size: 0.95rem;
      color: #2d3a2d;
    }

    .model-badge {
      background-color: #2c5f2d;
      color: white;
      padding: 18px 28px;
      border-radius: 60px;
      display: inline-block;
      font-weight: 600;
      margin-top: 20px;
      box-shadow: 0 8px 0 #1a3a1a;
    }

    .conservation-block {
      background: linear-gradient(135deg, #1e2a1e 0%, #2c5f2d 100%);
      color: #fefcf0;
      border-radius: 48px;
      padding: 50px 40px;
      margin-top: 40px;
    }
    .conservation-block h2 {
      color: #fbd38d;
    }
    .conservation-block .section-title:after {
      background: #ffb255ff;
    }
/* responsive adjustments */
    @media (max-width: 1024px) {
      .navbar {
        padding: 0.6rem 1.5rem;
      }
      .nav-links {
        gap: 1.2rem;
      }
    }

    @media (max-width: 800px) {
      body { padding-top: calc(48px + 120px); } /* allow for wrapped navbar */
      .navbar {
        flex-direction: column;
        align-items: flex-start;
        top: 48px;
        min-height: 120px;
        padding: 0.8rem 1rem;
      }
      .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
      }
      .top-bar {
        padding: 0 1rem;
        font-size: 0.85rem;
      }
      .top-bar-left {
        gap: 0.8rem;
        flex-wrap: wrap;
      }
      .two-col {
        grid-template-columns: 1fr;
      }
      .hero-content h1 {
        font-size: 3rem;
      }
      .hero-content p {
        font-size: 1.2rem;
      }
      .hero-overlay {
        padding-top: 160px; /* extra for two bars */
      }
    }

    @media (max-width: 500px) {
      .top-bar-left span:first-child {
        display: none; /* hide email on very small if needed, but we keep */
      }
      .nav-book {
        padding: 6px 16px;
      }
    }

    /* DESTINATIONS GRID */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.destination-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px -10px rgba(0,0,0,0.2);
  transition: 0.3s;
  cursor: pointer;
}

/* IMAGE */
.destination-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* CONTENT */
.destination-content {
  padding: 20px;
}

.destination-content h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.destination-content p {
  color: #555;
  font-size: 0.95rem;
}

/* HOVER EFFECT */
.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 40px -10px rgba(0,0,0,0.3);
}
/* BLOG GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px -10px rgba(0,0,0,0.2);
  transition: 0.3s;
}

/* IMAGE */
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* CONTENT */
.blog-content {
  padding: 20px;
}

.blog-content h3 {
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 0.95rem;
  color: #555;
}

/* READ MORE */
.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #ffb255ff;
  font-weight: 600;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* HOVER */
.blog-card:hover {
  transform: translateY(-10px);
}
/* .............................................................. */
    section, .booking-hero {
      scroll-margin-top: calc(48px + 80px + 10px);
    }

    .booking-hero {
      background: linear-gradient(135deg, #1e3a1e 0%, #2c5f2d 100%);
      color: white;
      text-align: center;
      padding: 70px 20px 60px;
      position: relative;
      overflow: hidden;
    }
    .booking-hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('https://images.unsplash.com/photo-1547970810-dc1eac37d174?w=1600&auto=format') center/cover no-repeat;
      opacity: 0.15;
      z-index: 0;
    }
    .booking-hero .container {
      position: relative;
      z-index: 2;
    }
    .booking-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      margin-bottom: 0.75rem;
      letter-spacing: -0.5px;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    }
    .booking-hero p {
      font-size: 1.25rem;
      opacity: 0.9;
    }

    .booking-section {
      padding: 70px 0 90px;
      background: #fefaf0;
    }

    .booking-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: start;
    }

    .form-card {
      background: white;
      border-radius: 32px;
      padding: 36px 32px;
      box-shadow: 0 25px 45px -12px rgba(0,0,0,0.25);
      border: 1px solid rgba(255,178,85,0.3);
      transition: transform 0.2s ease;
    }

    .form-card h3 {
      font-size: 1.9rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: #1e3a1e;
      font-family: 'Playfair Display', serif;
    }
    .form-card h3 i {
      color: #ffb255ff;
      margin-right: 12px;
    }
    .form-card p {
      color: #4a5b4a;
      margin-bottom: 28px;
      border-left: 3px solid #ffb255ff;
      padding-left: 16px;
    }

    .booking-form {
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .input-group {
      position: relative;
    }
    .input-group i {
      position: absolute;
      left: 18px;
      top: 50%;
      transform: translateY(-50%);
      color: #ffb255ff;
      font-size: 1.1rem;
      pointer-events: none;
    }
    .booking-form input,
    .booking-form select,
    .booking-form textarea {
      width: 100%;
      padding: 14px 18px 14px 48px;
      border-radius: 60px;
      border: 1.5px solid #e2e0d4;
      font-family: 'Poppins', sans-serif;
      font-size: 1rem;
      transition: 0.25s;
      background: #fefef8;
    }
    .booking-form textarea {
      border-radius: 28px;
      padding: 14px 18px;
      resize: vertical;
      min-height: 100px;
    }
    .booking-form input:focus,
    .booking-form select:focus,
    .booking-form textarea:focus {
      outline: none;
      border-color: #ffb255ff;
      box-shadow: 0 0 0 3px rgba(255,178,85,0.2);
    }

    .booking-form select {
      appearance: none;
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23ffb255ff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
      background-repeat: no-repeat;
      background-position: right 20px center;
    }

    .submit-btn {
      background: #ffb255ff;
      color: #1e2a1e;
      font-weight: 700;
      border: none;
      padding: 16px 28px;
      border-radius: 50px;
      font-size: 1.2rem;
      cursor: pointer;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      box-shadow: 0 6px 14px rgba(255,178,85,0.3);
      border: 1px solid #2c5f2d;
    }
    .submit-btn:hover {
      background: #2c5f2d;
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 12px 20px -8px #2c5f2d;
    }

    .video-card {
      background: #fff;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 25px 40px -15px rgba(0,0,0,0.3);
      transition: transform 0.3s ease;
    }
    .video-container {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
      background: #000;
    }
    .video-container video,
    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border: none;
    }
    .video-caption {
      padding: 24px 28px;
      background: linear-gradient(145deg, #ffffff, #faf7ed);
    }
    .video-caption h4 {
      font-size: 1.6rem;
      font-weight: 700;
      color: #2c5f2d;
      margin-bottom: 8px;
    }
    .video-caption p {
      color: #4a5b4a;
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 500;
    }
    .video-caption i {
      color: #ffb255ff;
      font-size: 1.5rem;
    }
    .trust-badge {
      margin-top: 20px;
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      border-top: 1px solid #ede6d5;
      padding-top: 20px;
    }
    .trust-badge span {
      font-size: 0.85rem;
      font-weight: 500;
      background: #f1eee6;
      padding: 6px 14px;
      border-radius: 40px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    footer {
      background: #0f1a0f;
      color: #ccc;
      text-align: center;
      padding: 40px 20px;
      border-top: 5px solid #ffb255ff;
    }
    footer a {
      color: #f7b267;
      text-decoration: none;
    }
    footer a:hover {
      text-decoration: underline;
    }
    .footer-social a {
      color: white;
      background: #2c5f2d;
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin: 0 6px;
      transition: 0.2s;
    }
    .footer-social a:hover {
      background: #ffb255ff;
      color: #0f1a0f;
    }

    @media (max-width: 900px) {
      .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      body {
        padding-top: calc(48px + 120px);
      }
      .navbar {
        flex-direction: column;
        align-items: flex-start;
        top: 48px;
        min-height: auto;
        padding: 0.8rem 1.2rem;
      }
      .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
      }
      .top-bar {
        padding: 0 1rem;
        font-size: 0.8rem;
      }
      .top-bar-left {
        gap: 1rem;
      }
      .booking-hero h1 {
        font-size: 2.3rem;
      }
      .form-card {
        padding: 28px 22px;
      }
    }
    @media (max-width: 550px) {
      .top-bar-left span:first-child {
        display: none;
      }
      .input-group i {
        left: 15px;
      }
      .booking-form input,
      .booking-form select {
        padding-left: 42px;
      }
    }
    /* Additional styles for contact page – complements existing styles.css */
    .contact-hero {
      background: linear-gradient(135deg, #1e3a1e 0%, #2c5f2d 100%);
      color: white;
      text-align: center;
      padding: 100px 20px 80px;
      position: relative;
      overflow: hidden;
    }
    .contact-hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('https://images.unsplash.com/photo-1547970810-dc1eac37d174?w=1600&auto=format') center/cover no-repeat;
      opacity: 0.15;
      z-index: 0;
    }
    .contact-hero .container {
      position: relative;
      z-index: 2;
    }
    .contact-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      margin-bottom: 1rem;
      letter-spacing: -0.5px;
    }
    .contact-hero p {
      font-size: 1.2rem;
      opacity: 0.9;
    }

    .contact-section {
      padding: 80px 0;
      background: #fefaf0;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }
    .contact-info {
      background: white;
      border-radius: 32px;
      padding: 40px 35px;
      box-shadow: 0 20px 40px -12px rgba(0,0,0,0.15);
      border: 1px solid rgba(255,178,85,0.3);
    }
    .contact-info h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      margin-bottom: 1rem;
      color: #1e3a1e;
    }
    .contact-info p {
      margin-bottom: 30px;
      color: #4a5b4a;
    }
    .contact-details {
      list-style: none;
      margin-bottom: 35px;
    }
    .contact-details li {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
      font-size: 1.05rem;
    }
    .contact-details li i {
      width: 40px;
      height: 40px;
      background: #ffb25520;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #ffb255ff;
      font-size: 1.2rem;
    }
    .whatsapp-btn-large {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: #25D366;
      color: white;
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s;
      font-size: 1rem;
      border: none;
      box-shadow: 0 5px 12px rgba(37,211,102,0.3);
    }
    .whatsapp-btn-large:hover {
      background: #128C7E;
      transform: translateY(-2px);
    }

    /* Form card */
    .form-card {
      background: white;
      border-radius: 32px;
      padding: 40px 35px;
      box-shadow: 0 20px 40px -12px rgba(0,0,0,0.15);
      border: 1px solid rgba(255,178,85,0.3);
    }
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 22px;
    }
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 14px 20px;
      border-radius: 60px;
      border: 1.5px solid #e2e0d4;
      font-family: 'Poppins', sans-serif;
      font-size: 1rem;
      transition: 0.25s;
      background: #fefef8;
    }
    .contact-form textarea {
      border-radius: 28px;
      resize: vertical;
    }
    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: #ffb255ff;
      box-shadow: 0 0 0 3px rgba(255,178,85,0.2);
    }
    .submit-btn {
      background: #ffb255ff;
      color: #1e2a1e;
      font-weight: 700;
      border: none;
      padding: 14px 28px;
      border-radius: 50px;
      font-size: 1.1rem;
      cursor: pointer;
      transition: 0.3s;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 1px solid #2c5f2d;
    }
    .submit-btn:hover {
      background: #2c5f2d;
      color: white;
      transform: translateY(-2px);
    }

    /* Map section */
    .map-section {
      background: #f7f3e8;
      padding: 70px 0;
    }
    .map-wrapper {
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 20px 35px -12px rgba(0,0,0,0.2);
      border: 3px solid #ffb255ff;
    }
    .map-wrapper iframe {
      display: block;
      width: 100%;
      height: 400px;
      border: 0;
    }

    /* CTA section */
    .cta-section {
      text-align: center;
      padding: 70px 20px;
      background: linear-gradient(135deg, #ffb25520, #fefaf0);
    }
    .cta-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: #1e3a1e;
    }
    .cta-section p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      color: #4a5b4a;
    }
    .cta-btn {
      background: #ffb255ff;
      color: #1e2a1e;
      padding: 14px 38px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
      display: inline-block;
    }
    .cta-btn:hover {
      background: #2c5f2d;
      color: white;
      transform: translateY(-3px);
    }

    @media (max-width: 800px) {
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .contact-hero h1 {
        font-size: 2.5rem;
      }
    }
     .tours-hero {
      background: linear-gradient(135deg, #1e3a1e 0%, #2c5f2d 100%);
      color: white;
      text-align: center;
      padding: 100px 20px 80px;
      position: relative;
      overflow: hidden;
    }
    .tours-hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('https://images.unsplash.com/photo-1547970810-dc1eac37d174?w=1600&auto=format') center/cover no-repeat;
      opacity: 0.15;
      z-index: 0;
    }
    .tours-hero .container {
      position: relative;
      z-index: 2;
    }
    .tours-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      margin-bottom: 1rem;
      letter-spacing: -0.5px;
    }
    .tours-hero p {
      font-size: 1.2rem;
      opacity: 0.9;
    }

    /* Filter bar */
    .filter-section {
      background: #f7f3e8;
      padding: 30px 0;
      border-bottom: 1px solid #ede6d5;
    }
    .filter-bar {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .filter-bar select {
      padding: 12px 24px;
      border-radius: 50px;
      border: 1px solid #e2e0d4;
      background: white;
      font-family: 'Poppins', sans-serif;
      font-size: 0.95rem;
      cursor: pointer;
      transition: 0.2s;
    }
    .filter-bar select:focus {
      outline: none;
      border-color: #ffb255ff;
      box-shadow: 0 0 0 2px rgba(255,178,85,0.2);
    }

    /* Tour grid */
    .tour-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      margin-top: 60px;
      margin-bottom: 60px;
    }
    .tour-card {
      background: white;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 20px 35px -12px rgba(0,0,0,0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid rgba(255,178,85,0.2);
    }
    .tour-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 40px -12px rgba(0,0,0,0.25);
    }
    .tour-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-bottom: 3px solid #ffb255ff;
    }
    .tour-content {
      padding: 24px;
    }
    .tour-content h3 {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: #1e3a1e;
    }
    .tour-location {
      display: inline-block;
      background: #ffb25520;
      padding: 4px 12px;
      border-radius: 30px;
      font-size: 0.85rem;
      font-weight: 500;
      color: #b45f06;
      margin-bottom: 15px;
    }
    .tour-info {
      display: flex;
      gap: 20px;
      margin: 15px 0;
      font-size: 0.9rem;
      color: #5e6e5e;
    }
    .tour-info i {
      color: #ffb255ff;
      width: 20px;
    }
    .tour-price {
      font-size: 1.8rem;
      font-weight: 800;
      color: #2c5f2d;
      margin: 15px 0;
    }
    .tour-price small {
      font-size: 0.9rem;
      font-weight: 400;
      color: #7a8a7a;
    }
    .btn-details {
      display: inline-block;
      background: #ffb255ff;
      color: #1e2a1e;
      padding: 10px 24px;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
      border: 1px solid #2c5f2d;
      text-align: center;
      width: 100%;
    }
    .btn-details:hover {
      background: #2c5f2d;
      color: white;
    }

    /* CTA section */
    .cta-tours {
      background: linear-gradient(135deg, #ffb25520, #fefaf0);
      text-align: center;
      padding: 70px 20px;
    }
    .cta-tours h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: #1e3a1e;
    }
    .cta-tours p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      color: #4a5b4a;
    }
    .btn-cta {
      background: #ffb255ff;
      color: #1e2a1e;
      padding: 14px 38px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
      display: inline-block;
    }
    .btn-cta:hover {
      background: #2c5f2d;
      color: white;
      transform: translateY(-3px);
    }

    @media (max-width: 800px) {
      .tours-hero h1 {
        font-size: 2.5rem;
      }
      .tour-grid {
        gap: 30px;
      }
    }
    