: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;
}

.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;
}

.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;
}

.hero {
    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;
}

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

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

.hero p {
    color: white;
    font-size: 20px;
    margin-bottom: 8px;
}

.hero h1 {
    color: #fff;
    font-size: 58px;
    margin-bottom: 12px;
    line-height: 1.1;
}

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

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

.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: nowrap;
    overflow-x: auto;
}

.form-card 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;
}

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

.form-card button {
    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;
}

/* --- 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); /* exactly 300px each */
    gap: 20px; /* space between cards */
    justify-content: center; /* center the grid */
    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;
}

/* Responsive */
@media (max-width: 581px) {
    .card {
        margin-left: 15px;
        margin-right: 15px;
        padding: 20px; /* optional: keeps inner spacing too */
    }
}

  
.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;
    }
  }
  
  