:root {
    --primary: #0066cc;
    --dark: #06202b;
    --muted: #6b7280;
}

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

html,
body {
    font-family: Inter, system-ui, "Segoe UI", Roboto, 'Helvetica Neue', Arial;
    color: #0b1720;
}
header .container{padding:0 }
.site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 40;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.75));
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(10, 10, 10, 0.04);
}

/*.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 18px;
}*/

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-links a {
    text-decoration: none;  /* removes underline */
    color: inherit;         /* keeps the parent text color */
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.brand img {
    height: 46px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  transition: all 0.3s ease-in-out;
}

.cta {
    background: var(--primary);
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.burger {
    display: none;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger.open::after {
  content: "✕"; /* Unicode X */
  font-size: 24px;
  display: inline-block;
}

.burger.open {
  font-size: 0; /* hide the ☰ character */
}

.std-hero-section {
    min-height: 78vh;
    display: grid;
    align-items: center;
    padding: 96px 0 64px;
    background-image: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1600&q=60');
    background-size: cover;
    background-position: center;
    position: relative;
}

.std-hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 32, 43, 0.4), rgba(6, 32, 43, 0.45));
}

.std-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
    text-align: center;
}

.std-welcome-text {
    color: white;
    font-size: 20px;
    margin-bottom: 8px;
}

.std-main-title {
    color: #fff;
    font-size: 58px;
    margin-bottom: 12px;
    line-height: 1.1;
}

.std-sub-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 30px;
    margin-bottom: 18px;
    line-height: 1.2;
}

.std-hero-form {
    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 100%;
    max-width: 1100px;
    padding: 0 18px;
}

.std-form-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap; /* ✅ fixed */
    overflow-x: unset; /* ✅ prevent unwanted scroll */
}

.std-form-card .std-input {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 16px;
    transition: border 0.3s;
    flex: 1 1 0;
    min-width: 160px;
}

.std-form-card .std-input:focus {
    border-color: var(--primary);
}

.std-form-card .std-submit-btn {
    background: #f6b70e;
    border: none;
    color: #fff;
    font-size: 16px;
    padding: 12px 30px;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 600;
    flex: 0 0 auto;
    min-width: 120px;
}

.mission p {
    text-align: center;
    max-width: 700px;
    margin: 10px auto 40px;
    font-size: 16px;
    color: #555;
}

.mission h2 {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-top: 40px;
    word-spacing: 8px;
}

.mission h2 span {
    color: #f4b400; /* yellow/golden color */
}

  
  .stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 10px;
    flex-wrap: wrap; /* still needed for responsiveness */
}

.stat-box {
    display: flex;
    flex-direction: column; /* stack icon, number, text vertically */
    align-items: center;    
    text-align: center;
    flex: 1 1 150px;        
    max-width: 200px;
}

.stat-box .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.stat-box h3 {
    font-size: 24px;
    margin: 1px 0;
    color: #000;
}

.stat-box p {
    font-size: 14px;
    color: #666;
}
@media (max-width: 700px) {
    .nav-links.active {
        display: flex;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top:61px; /* height of your header */
        right: 18px;
        padding: 15px;
        gap: 12px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        z-index: 1000;
    }
}
/* --- Mobile menu styles --- */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* hidden by default */
    flex-direction: column;
    position: absolute;
    top: 61px;          /* below header */
    right: 18px;
    background: #fff;
    padding: 15px;
    gap: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    min-width: 180px;
    text-align: right;
  }

  .nav-links.active {
    display: flex; /* show when active */
  }

  .burger {
    display: block; /* show burger only on mobile */
  }
}

/* --- Force 3 per row on mobile --- */
@media (max-width: 700px) {
    .stats {
        gap: 1px; /* tighter gap on mobile */
        justify-content: space-between; /* distribute evenly */
    }

    .stat-box {
        flex: 0 0 32%;  /* force ~3 per row */
        max-width: none; 
    }

    .stat-box .icon {
        width: 40px;
        height: 40px;
    }

    .stat-box h3 {
        font-size: 18px;
    }

    .stat-box p {
        font-size: 12px;
    }
}

  
.packages h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
}

.packages h2 span {
    color: #f4b400;
}

/*.package-cards {
    display: grid;
    grid-template-columns: repeat(3, 400px);
    gap: 20px; 
    justify-content: center; 
    margin: 0 auto 50px;
}*/

.card {
    position: relative;
    background: #fdfdfd;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
}



  
.price-tag {
    position: absolute;
    top: 0;
    left: 0;
    background: #e74c3c;
    color: #fff;
    padding: 8px 12px;
    font-weight: bold;
}

.card img {
    width: 100%;
    height: auto;
}

.card h3 {
    font-size: 16px;
    margin: 15px;
}

.card p {
    font-size: 14px;
    color: #555;
    margin: 0 15px;
}

.card .days {
    display: block;
    color: #f4b400;
    font-weight: bold;
    margin: 10px 0;
}

.view-detail {
    background: #f4b400;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    margin-left: 35px;  /* control space between icons and button */


}

.view-detail:hover {
    background: #d99a00;
}
/* Tablets (≤ 992px): 2 cards per row */
@media (max-width: 992px) {
    .package-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (≤ 576px): 1 card per row */
@media (max-width: 576px) {
    .package-cards {
        grid-template-columns: 1fr;
    }
}
/* Responsive adjustments */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 40px;
    }

    .hero h2 {
        font-size: 22px;
    }

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

@media (max-width: 700px) {
    .nav-links {
        display: none;
    }

    .burger {
        display: block;
    }

    .hero-inner {
        gap: 12px;
        text-align: center;
        /* margin-top: -60px; */
        margin-bottom: 200px;
    }

    .hero h1 {
        font-size: 30px;
        line-height: 1.1;
    }

    .hero h2 {
        font-size: 20px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .hero-form {
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 600px;
        padding: 0 12px;
    }

    .form-card {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .form-card input,
    .form-card button {
        width: 100%;
        flex: none;
    }
}

@media (max-width: 480px) {
    .brand img {
        height: 36px;
    }

    .hero h1 {
        font-size: 22px;
        line-height: 1.2;
    }

    .hero h2 {
        font-size: 16px;
        line-height: 1.2;
    }

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

    .cta {
        padding: 8px 12px;
        font-size: 14px;
    } 
}
.small-car {
    display: flex;              
    justify-content: center;    
    align-items: center;        
    margin: 20px auto;          
    width: 100%;                
  }
  
  .small-car img {
    max-width: 80px;   /* limits how wide the car can be */
    max-height: 60px;  /* limits height to prevent tall scaling */
    width: auto;       /* maintain aspect ratio */
    height: auto;      
    display: block;    
  }
  /* ABOUT SECTION */
.about {
    display: flex;
    padding: 60px 400px;
    background: #fff7e5;
    gap: 40px;
    text-align: center;
}
.about-text {
    flex: 1;
}
.about-text h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.about-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
.about-text h2 span {
    color: #d48a1e;
}
.about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: left;
}
.btn-view {
    padding: 10px 20px;
    background: #ffa500;
    color: #fff;
    border: none;
    font-weight: bold;
    cursor: pointer;
}
.about-video {
    flex: 1;
}

/* TESTIMONIAL SLIDER */
.testimonial {
    position: relative;
    background: url('https://img.freepik.com/free-photo/panoramic-shot-valley-base-cordillera-huyahuash-peru-with-its-peak-covered-snow_181624-5574.jpg?t=st=1756485832~exp=1756489432~hmac=bf7ad950e75c331005234581fba3357701ff76f8adcc2d4c5ff1b810ff2a72d1&w=2000') no-repeat center/cover;
    color: #fff;
    padding: 80px 400px;
    text-align: center;
}
.slider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.slide {
    display: none;
    max-width: 600px;
    margin: auto;
}
.slide.active {
    display: block;
}
.user-icon {
    font-size: 50px;
    margin-bottom: 20px;
}
.prev, .next {
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 30px;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.prev { left: 20px; }
.next { right: 20px; }

/* FLOATING BUTTONS */
.floating-btn {
    position: fixed;
    width: 60px;           
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.2s;
    overflow: hidden;      /* ensures content stays inside */
}

/* Make the <a> fill the button and center the image */
.floating-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.floating-btn {
    position: fixed;
    width: 65px;             /* default desktop size */
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    z-index: 9999;
}

.floating-btn img {
    width: 60%;            
    height: auto;
}

/* WhatsApp button */
.whatsapp {
    bottom: 100px;          
    right: 20px;
    background: #25d366;
}

/* Call button */
.call {
    bottom: 20px;           
    right: 20px;
    background: #75B73C;
}

/* Hover effect */
.floating-btn:hover {
    transform: scale(1.1);
}

/* RESPONSIVE FOR MOBILE */
@media (max-width: 768px) {
    .floating-btn {
        width: 50px;         /* scale down both buttons */
        height: 50px;
    }
    .floating-btn img {
        width: 55%;          /* slightly smaller icon on mobile */
    }
    .whatsapp {
        bottom: 80px;        /* maintain spacing */
        right: 15px;
    }
    .call {
        bottom: 15px;
        right: 15px;
    }
}



/* --- RESPONSIVE FIXES --- */
@media (max-width: 992px) {
    .about, .testimonial {
        padding: 40px 40px;
    }
}

@media (max-width: 768px) {
    .about {
        flex-direction: column; /* stack items vertically */
        padding: 30px 20px; /* reduce padding */
    }
    .about-text, .about-video {
        flex: none;
        width: 100%; /* full width */
    }
    .testimonial {
        padding: 60px 20px; /* reduce padding */
    }
}
 /* Footer styling */
footer {
    background-color: #776b4e;
    color: #fff;
    padding: 40px 20px 20px 20px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-section {
    flex: 1;
    min-width: 220px;
    margin-bottom: 20px;
  }
  
  .footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
  }
  
  .footer-section p,
  .footer-section a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.8;
  }
  
  .footer-section a:hover {
    color: #f1c40f;
  }
  
  .social-icons a {
    display: inline-block;
    background: #f1c40f;
    color: #000;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    margin-right: 8px;
    border-radius: 4px;
    transition: 0.3s;
  }
  
  .social-icons a:hover {
    background: #e0a800;
  }
  
  .footer-images img {
    width: 80px;
    margin-right: 10px;
    border-radius: 5px;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.3);
    font-size: 14px;
    color: #fff;
  }
  
  .card-bottom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: flex-start; /* Left align all content */
    }
  
    .footer-section {
      width: 100%;           /* Full width on mobile */
      text-align: left;      /* Ensure left alignment */
    }
  
    .footer-section h3,
    .footer-section p,
    .footer-section a {
      text-align: left !important;
    }
  
    .social-icons {
      text-align: left;       /* Align social icons to the left */
      margin-top: 10px;
    }
  
    .footer-images {
      display: flex;
      justify-content: flex-start; /* Align images left */
      flex-wrap: wrap;
      margin-top: 10px;
    }
  
    .footer-images img {
      margin-bottom: 10px;    /* Add space between stacked images */
    }
  }
  
  
  .tour-icons {
    display: flex;
    gap: 10px; /* space between icons */
    margin-left: 10px;
  }
  
  .tour-icons i {
    font-size: 18px;
    color: #caa66b;  /* adjust to your theme color */
  }
  .call-section {
    text-align: center;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
    background: #fff;
  }
  
  .call-section .subtitle {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
  }
  
  .call-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 5px 0 15px;
    color: #000;
  }
  
  .call-section .phone {
    font-size: 18px;
    margin-bottom: 25px;
  }
  
  .call-section .phone a {
    color: #2d5bbd;
    text-decoration: none;
    font-weight: 500;
  }
  
  .call-section .phone a:hover {
    text-decoration: underline;
  }
  
  .recognition-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
  }
  
  .recognition-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .recognition-logos img {
    height: 180px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s;
  }
  
  .recognition-logos img:hover {
    transform: scale(1.05);
  }
  
  .unit-text {
    color: #b30000;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
  }
  
  /* --- Responsive Adjustments --- */
  @media (max-width: 992px) {
    .recognition-logos img {
      height: 140px;
    }
  }
  
  @media (max-width: 768px) {
    .recognition-logos img {
      height: 100px;
    }
  }
  
  @media (max-width: 480px) {
    .recognition-logos img {
      height: 70px;
    }
  }


  :root {
            --accent: #0ea5a4;
            --dark: #0f172a;
            --muted: #64748b;
            --card: #ffffff;
            --radius: 12px;
            font-family: 'Inter', system-ui, Arial, sans-serif;
        }

        * {
            box-sizing: border-box
        }

        body {
            margin: 0;
            background: #f8fafc;
            color: var(--dark);
            -webkit-font-smoothing: antialiased
        }

        header {
            background: linear-gradient(90deg, rgba(14, 165, 164, 0.12), rgba(59, 130, 246, 0.06));
            backdrop-filter: blur(4px);
            /* ADDED: For stacking context */
            position: relative;
            z-index: 100;
        }

       

        .topbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 0
        }

        .brand {
            display: flex;
            gap: 14px;
            align-items: center
        }

        .logo {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--accent), #3b82f6);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700
        }

        nav a {
            margin-left: 18px;
            color: var(--dark);
            text-decoration: none;
            font-weight: 600
        }

        .hero {
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 28px;
            align-items: center;
            padding: 28px 0
        }

        .eyebrow {
            color: var(--muted);
            font-weight: 600
        }

        h1 {
            font-size: 28px;
            margin: 8px 0 12px
        }

        p.lead {
            color: var(--muted);
            line-height: 1.5
        }

        .cta-row {
            display: flex;
            gap: 12px;
            margin-top: 16px;
            flex-wrap: wrap
        }

        .btn {
            padding: 12px 18px;
            border-radius: 10px;
            border: 0;
            cursor: pointer;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            text-align: center
        }

        .btn-accent {
            background: var(--accent);
            color: white
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--accent);
            color: var(--accent)
        }

        .btn-whatsapp {
            background: #25D366;
            color: #fff
        }

        .card {
            background: var(--card);
            border-radius: var(--radius);
            box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
            padding: 18px
        }

        label {
            display: block;
            font-size: 13px;
            color: var(--muted);
            text-align:left;
        }

        input,
        select,
        textarea {
            width: 100%;
            padding: 10px;
            border-radius: 8px;
            border: 1px solid #aba3a3;
            margin-top: 6px;
            font-size: 14px
        }

        .small {
            font-size: 13px;
            color: var(--muted)
        }

        .flex {
            display: flex;
            gap: 12px
        }

        section {
            padding: 22px 0
        }

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

        .service {
            background: linear-gradient(180deg, #ffffff, #f8fafc);
            padding: 18px;
            border-radius: 12px
        }

        .contact-location {
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: 18px;
            align-items: start;
        }

        @media (max-width: 576px) {
            .contact-location {
                grid-template-columns: 1fr;
            }
        }

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

        .gallery img {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 8px
        }

        footer {
            padding: 24px 0;
            border-top: 1px solid #eef2f7;
            margin-top: 18px
        }

        /* ADDED: Burger Menu Styles */
        .burger-menu {
            display: none;
            /* Hidden on desktop */
            flex-direction: column;
            justify-content: space-around;
            width: 2rem;
            height: 2rem;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 20;
        }

        .burger-menu .bar {
            width: 2rem;
            height: 0.25rem;
            background-color: var(--dark);
            border-radius: 10px;
            transition: all 0.3s linear;
        }

        @media (max-width:980px) {
            .hero {
                grid-template-columns: 1fr
            }

            .gallery {
                grid-template-columns: repeat(2, 1fr)
            }

            .grid-3 {
                grid-template-columns: repeat(2, 1fr)
            }
        }

        /* MODIFIED: Mobile responsive styles for navigation */
        @media (max-width:768px) {

            /* Changed breakpoint for a better experience */
            .burger-menu {
                display: flex;
                /* Show burger on tablets and mobile */
            }

            nav {
                display: none;
                /* Hide nav by default */
                position: absolute;
                top: 61px;
                /* Position below header */
                left: 0;
                width: 100%;
                background: white;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                flex-direction: column;
                align-items: center;
                padding: 10px 0;
            }

            /* Class toggled by JavaScript to show the menu */
            nav.active {
                display: flex;
            }

            nav a {
                margin: 15px 0;
                font-size: 16px;
            }

            .gallery img {
                height: 90px
            }

            .grid-3 {
                grid-template-columns: 1fr
            }
        }

        .packages h2 {
            text-align: center;
            font-size: 24px;
            margin-bottom: 30px;
        }

        .packages h2 span {
            color: #f4b400;
        }

      

        .card {
            position: relative;
            background: #fdfdfd;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            text-align: center;
        }

     
        .price-tag {
            position: absolute;
            top: 0;
            left: 0;
            background: #e74c3c;
            color: #fff;
            padding: 8px 12px;
            font-weight: bold;
        }

        .card img {
            width: 100%;
            height: auto;
        }

        .card h3 {
            font-size: 16px;
            margin: 15px;
        }

        .card p {
            font-size: 14px;
            color: #555;
            margin: 0 15px;
        }

        .card .days {
            display: block;
            color: #f4b400;
            font-weight: bold;
            margin: 10px 0;
        }

        .view-detail {
            background: #f4b400;
            color: #fff;
            border: none;
            padding: 10px 15px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
        }

        .view-detail:hover {
            background: #d99a00;
        }

        @media (max-width: 992px) {
            .package-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .package-cards {
                grid-template-columns: 1fr;
            }
        }

        .card-bottom {
            display: flex;
            align-items: center;
            gap: 15px;
            justify-content: center;
            margin-top: 15px;
        }

        .tour-icons {
            display: flex;
            gap: 10px;
        }

        .tour-icons i {
            font-size: 18px;
            color: #caa66b;
        }
        .card2 {
      background: var(--card);
      border-radius: var(--radius);
      box-shadow: 0 4px 16px rgba(15,23,42,0.06);
      padding: 16px;
    }

    .small {
      font-size: 13px;
      color: var(--muted);
    }

    /* Testimonials Grid */
    .testimonials {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-bottom: 32px;
    }

    /* Contact & Location Grid */
    .contact-container {
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 18px;
      align-items: start;
    }

    iframe {
      width: 100%;
      height: 260px;
      border: 0;
      border-radius: 8px;
    }

    /* Responsive Adjustments */
    @media (max-width: 900px) {
      .contact-container {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .testimonials {
        grid-template-columns: 1fr;
      }
    
      iframe {
        height: 220px;
      }
    }

    a {
      color: var(--accent);
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }
    .booking-section {
      max-width: 800px;
      margin: 40px auto;
      background: white;
      padding: 25px 30px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .booking-section h2 {
      text-align: center;
      color: #004080;
      margin-bottom: 20px;
    }

    form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
    }

    .form-group label {
      font-weight: 600;
      font-size: 14px;
    }

    .form-group input, 
    .form-group select {
      padding: 10px;
      border: 1px solid #aba3a3;
      border-radius: 6px;
      font-size: 14px;
    }

    .form-group.full {
      grid-column: span 2;
    }

    button {
      grid-column: span 2;
      padding: 12px;
      font-size: 16px;
      font-weight: bold;
      border: none;
      border-radius: 6px;
      background: #004080;
      color: white;
      cursor: pointer;
      transition: background 0.3s;
    }

    button:hover {
      background: #003060;
    }
.popup { display: none; position: fixed; z-index: 9999; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); }
.popup-content { background: #fff; margin: 10% auto; padding: 20px; border-radius: 8px; max-width: 400px; width: 90%; position: relative; }
.popup-content h2 { text-align: center; color: #001699; }
.popup-content input, .popup-content textarea { width: 100%; padding: 10px; margin: 8px 0; border: 1px solid #ccc; border-radius: 4px; }
.popup-content button { background: #001699; color: #fff; padding: 12px; border: none; border-radius: 4px; cursor: pointer; width: 100%; }
.close-btn { position: absolute; top: 10px; right: 15px; font-size: 22px; cursor: pointer; color: #333; }
.pkgfrm button{    width: 100%;background: #9d8b1f;border: 0;height: 46px;color: #fff;border-radius: 7px;}
.pkgfrm{background: #cecece;padding: 20px;border-radius: 7px;}
.iwbtn.eventbtn{color:transparent!important;pointer-events:none;position:relative}
.iwbtn.eventbtn::after{position:absolute;left:calc(50% - (1em / 2));top:calc(50% - (1em / 2));position:absolute!important;-webkit-animation:spinAround .5s infinite linear;animation:spinAround .5s infinite linear;border:2px solid #dbdbdb;border-radius:290486px;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1em;position:relative;width:1em}
@keyframes spinAround {
from{-webkit-transform:rotate(0);transform:rotate(0)}
to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}
}
.whatsappbtn{background:#1ebbf0;background:-moz-linear-gradient(45deg,#1ebbf0 8%,#39dfaa 100%);background:-webkit-linear-gradient(45deg,#1ebbf0 8%,#39dfaa 100%);background:linear-gradient(45deg,#1ebbf0 8%,#39dfaa 100%);bottom:15px;position:fixed;color:#fff;height:50px;right:10px;min-width:50px;text-align:center;z-index:9999;border-radius:50%;line-height:50px}
.whatsappbtn .svg_icon{height:35px;width:35px;position:relative;top:-1px;fill:#fff;left:1px;}
.whatsappbtn:before{content:"";position:absolute;z-index:0;left:50%;top:50%;-ms-transform:translateX(-50%) translateY(-50%);-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);display:block;width:60px;height:60px;background:-moz-linear-gradient(45deg,#1ebbf0 8%,#39dfaa 100%);background:-webkit-linear-gradient(45deg,#1ebbf0 8%,#39dfaa 100%);background:linear-gradient(45deg,#1ebbf0 8%,#39dfaa 100%);border-radius:50%;-webkit-animation:pulse-border 1500ms ease-out infinite;animation:pulse-border 1500ms ease-out infinite;z-index:-1}
@-webkit-keyframes pulse-border{
0%{-webkit-transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1);transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1);opacity:1}
100%{-webkit-transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);opacity:0}
}
@-moz-keyframes pulse-border{
0%{transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1);opacity:1}
100%{transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);opacity:0}
}
@-o-keyframes pulse-border{
0%{transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1);opacity:1}
100%{transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);opacity:0}
}
@keyframes pulse-border{
0%{-webkit-transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1);transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1);opacity:1}
100%{-webkit-transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);opacity:0}
}
.package-cards{margin-bottom:20px}
@media(max-width:767px){
.topbar{padding: 7px 8px;}
.topbar .small{display:none}
.brand img{height:45px;width:auto;}
.about-overlay h2{text-align:center;}
}
