/* ==========================================
   GLOBAL RESET
========================================== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7faf8;
    color:#1b4332;
    overflow-x:hidden;
}

/* ==========================================
   VARIABLES
========================================== */

:root{

    --primary:#2d6a4f;
    --secondary:#40916c;
    --accent:#95d5b2;
    --light:#f8f9fa;
    --dark:#1b4332;
    --white:#ffffff;
    --shadow:0 15px 35px rgba(0,0,0,.12);

}

/* ==========================================
   NAVBAR
========================================== */

.navbar{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    width:92%;
    max-width:1400px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:14px 35px;

    background:rgba(255,255,255,.65);
    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.4);

    border-radius:18px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.4s ease;

    z-index:1000;
}

/* ==========================================
   k on folkNAVBAR AFTER SCROLL
========================================== */

.navbar.scrolled{

    top:10px;

    background:#1b4332e4;

    backdrop-filter:blur(25px);

    box-shadow:0 15px 40px rgba(0,0,0,.15);

    border:1px solid rgba(0,0,0,.08);

}

/* ==========================================
   LOGO
========================================== */

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width: 90px;
    height:90px;
    object-fit:contain;
}
.logo h1 {
    font-family: "Montserrat", sans-serif;
}
.logo h1, .logo h2 {
    font-size:20px;
    color:var(--primary);
    font-weight:700;
    line-height:1.2;
}

.logo p{
    color:#666;
    font-size:13px;
    letter-spacing:2px;
}
/* Logo */

.navbar.scrolled .logo h1{

    color:#f8f9fa;

}

.navbar.scrolled .logo p {
    color: #ccc !important;


    color:grey;

}

/* Navigation */

.navbar.scrolled nav a{

    color:rgb(220, 219, 219);

}

.navbar.scrolled nav a:hover{

    color:rgb(0, 0, 0);

}

/* Mobile Menu Button */

.navbar.scrolled .menu-btn{

    color:white;

    background:black;

}

/* ==========================================
   NAVIGATION
========================================== */

nav{
    display:flex;
    align-items:center;
    gap:35px;
}

nav a{
    text-decoration:none;
    color:var(--dark);
    font-size:16px;
    font-weight:500;
    transition:.3s;
    position:relative;
}

nav a:hover{
    color:var(--primary);
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:var(--primary);
    transition:.3s;
}

nav a:hover::after{
    width:100%;
}

/* ==========================================
   MENU BUTTON
========================================== */

.menu-btn{
    display:none;
    font-size:28px;
    color:var(--primary);
    cursor:pointer;
}

/* ==========================================
   FLOATING CONTACT BUTTONS
========================================== */

.floating-contact{
    position:fixed;
    right:25px;
    bottom:30px;
    display:flex;
    flex-direction:column;
    gap:18px;
    z-index:1000;
}

.float-btn{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:#fff;
    font-size:24px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.3s;
}

.float-btn:hover{
    transform:translateY(-5px) scale(1.08);
}

.whatsapp{
    background:#25D366;
}

.call{
    background:#38bdf8;
}

/* ==========================================
   HERO SECTION
========================================== */
.hero{
    position:relative;
    width:100%;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}
.hero-video{

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:-2;

    animation:none;

}
 

/* Slow Zoom */

@keyframes heroZoom{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.12);
    }

}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.35),
        rgba(22,163,74,.25)
    );
    z-index:1;
}

/* ==========================================
   HERO CONTENT
========================================== */

.hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
    text-align:center;
    color:#fff;
    padding:20px;
    margin:0 auto;
    text-align:center;
}

.hero-content .tag{
    display:inline-block;
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(10px);
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:64px;
    line-height:1.2;
    margin-bottom:20px;
    font-weight:700;
}

.hero-content h1 span{
    color:#95d5b2;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
    color:#f1f1f1;
}

/* ==========================================
   HERO BUTTONS
========================================== */

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
    padding:16px 36px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}

.primary-btn{
background:linear-gradient(
135deg,
#16a34a,
#22c55e,
#38bdf8
);
    color:#fff;
    box-shadow:var(--shadow);
}

.primary-btn:hover{
    background:var(--secondary);
    transform:translateY(-5px);
}

.secondary-btn{
    border:2px solid #fff;
    color:#fff;
}

.secondary-btn:hover{
    background:#fff;
    color:var(--primary);
}

/* ==========================================
   HERO FEATURES
========================================== */

.hero-features{
    margin-top:50px;
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.hero-features div{
    display:flex;
    align-items:center;
    gap:8px;
    color:#fff;
    background:rgba(255,255,255,.12);
    padding:12px 20px;
    border-radius:30px;
    backdrop-filter:blur(10px);
}

.hero-features i{
    color:#95d5b2;
}

/* ==========================================
   QUICK STATS
========================================== */

.quick-stats{
    padding:90px 8%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    background:#f5fdf8;
}

.stat{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.stat:hover{
    transform:translateY(-10px);
}

.stat h2{
    font-size:42px;
    color:var(--primary);
    margin-bottom:12px;
    font-weight:700;
}

.stat p{
    color:#555;
    font-size:16px;
}

/* ==========================================
   ABOUT SECTION
========================================== */

.about-preview{
    padding:100px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}
.about-preview::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    top:-180px;
    left:-150px;

    background:radial-gradient(circle,
        rgba(34,197,94,.18),
        transparent 70%);

    filter:blur(40px);

    animation:blob1 12s ease-in-out infinite;
}

.about-preview::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    bottom:-180px;
    right:-150px;

    background:radial-gradient(circle,
        rgba(56,189,248,.18),
        transparent 70%);

    filter:blur(40px);

    animation:blob2 14s ease-in-out infinite;
}

@keyframes blob1{
    50%{
        transform:translate(40px,20px);
    }
}

@keyframes blob2{
    50%{
        transform:translate(-40px,-20px);
    }
}

.about-left img{
    width:100%;
    border-radius:25px;
    object-fit:cover;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.about-right h5{
    color:var(--secondary);
    letter-spacing:2px;
    margin-bottom:10px;
}

.about-right h2{
    font-size:46px;
    color:var(--dark);
    margin-bottom:25px;
}

.about-right p{
    color:#555;
    line-height:1.9;
    margin-bottom:25px;
}

.about-right ul{
    list-style:none;
    margin-bottom:35px;
}

.about-right ul li{
    margin:12px 0;
    color:#333;
    font-weight:500;
}

/* ==========================================
   FEATURED STAYS
========================================== */

.featured-stays{
    padding:100px 8%;
    background:#ffffff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h5{
    color:var(--secondary);
    letter-spacing:3px;
    font-size:14px;
    margin-bottom:10px;
}

.section-title h2{
    font-size:42px;
    color:var(--dark);
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    max-width:650px;
    margin:auto;
    line-height:1.8;
}

.stay-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(360px,1fr));
    gap:35px;
}

.stay-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.stay-card:hover{
    transform:translateY(-12px);
}

.stay-image{
    position:relative;
    overflow:hidden;
}

.stay-image img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
}

.stay-card:hover .stay-image img{
    transform:scale(1.08);
}

.price{
    position:absolute;
    top:18px;
    right:18px;
    background:var(--primary);
    color:#fff;
    padding:8px 16px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}
/* ==========================================
   STAY CARD CONTENT
========================================== */

.stay-content{
    padding:25px;
}

.rating{
    color:#f4b400;
    font-size:15px;
    margin-bottom:12px;
    display:flex;
    align-items:center;
    gap:6px;
}

.rating span{
    color:#777;
    font-size:14px;
}

.stay-content h3{
    font-family: 'Playfair Display', serif;
    font-size:28px;
    color:var(--dark);
    margin-bottom:12px;
}

.stay-content p{
    color:#666;
    line-height:1.7;
    margin-bottom:20px;
}

.facility{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:25px;
}

.facility span{
    background:#eef8f2;
    color:var(--primary);
    padding:8px 14px;
    border-radius:50px;
    font-size:13px;
    font-weight:500;
}

.view-btn{
    display:inline-block;
    text-decoration:none;
    background:var(--primary);
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}

.view-btn:hover{
    background:var(--secondary);
    transform:translateY(-3px);
}


/* ==========================================
   WHY CHOOSE US
========================================== */

.why-us{
    padding:100px 8%;
    background:#ffffff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.why-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
    border-top:5px solid var(--primary);
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-card i{
    font-size:48px;
    color:var(--primary);
    margin-bottom:20px;
}

.why-card h3{
    margin-bottom:15px;
    color:var(--dark);
}

.why-card p{
    color:#666;
    line-height:1.8;
}

/* ==========================================
   ACTIVITIES
========================================== */

.activities{
    padding:100px 8%;
    background:#ffffff;
}

.activity-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:30px;
}

.activity-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.activity-card:hover{
    transform:translateY(-10px);
    background:var(--primary);
}

.activity-card i{
    font-size:48px;
    color:var(--primary);
    margin-bottom:20px;
    transition:.35s;
}

.activity-card:hover i{
    color:#fff;
}

.activity-card h3{
    margin-bottom:15px;
    color:var(--dark);
}

.activity-card:hover h3{
    color:#fff;
}

.activity-card p{
    color:#666;
    line-height:1.7;
}

.activity-card:hover p{
    color:#eef8f2;
}
/* ==========================================
   STATISTICS SECTION
========================================== */

.stats-section{
    padding:100px 8%;
background:linear-gradient(135deg,#16a34a,#22c55e,#38bdf8
);
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.stat-box{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    border-radius:20px;
    padding:40px 20px;
    text-align:center;
    color:#fff;
    transition:.35s;
}

.stat-box:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,.2);
}

.stat-box i{
    font-size:48px;
    margin-bottom:20px;
    color:#95d5b2;
}

.stat-box h2{
    font-size:46px;
    margin-bottom:12px;
    font-weight:700;
}

.stat-box p{
    font-size:16px;
    letter-spacing:1px;
}

/* ==========================================
   TESTIMONIALS
========================================== */

.testimonials{
    padding:100px 8%;
    background:#f8fbf9;
}

.testimonial-slider{
    max-width:900px;
    margin:auto;
    position:relative;
}

.testimonial{
    display:none;
    background:#fff;
    border-radius:25px;
    padding:50px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.testimonial.active{
    display:block;
}

.testimonial img{
    width:100px;
    height:100px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:20px;
    border:5px solid #95d5b2;
}

.testimonial h3{
    color:var(--dark);
    margin-bottom:10px;
}

.stars{
    color:#ffc107;
    font-size:20px;
    margin-bottom:20px;
}

.testimonial p{
    color:#555;
    line-height:1.9;
    font-style:italic;
}


/* ==========================================
   ATTRACTIONS
========================================== */

.attractions{
    padding:100px 8%;
    background:#f6faf7;
}

.attraction-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.attraction-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.attraction-card:hover{
    transform:translateY(-10px);
}
/* ==========================================
   ATTRACTION CARD CONTENT
========================================== */

.attraction-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.4s;
}

.attraction-card:hover img{
    transform:scale(1.08);
}

.attraction-card h3{
    text-align:center;
    padding:20px;
    color:var(--dark);
    font-family: 'DM Sans', sans-serif;
    font-size:22px;
    font-weight:600;
}

/* ==========================================
   CALL TO ACTION
========================================== */

.cta{
    padding:100px 8%;
   background:linear-gradient(
rgba(22,163,74,.85),
rgba(56,189,248,.65)
),
               url("images/cta-bg.jpg") center/cover;
    color:#fff;
    text-align:center;
}

.cta-content{
    max-width:800px;
    margin:auto;
}

.cta-content h2{
    font-size:48px;
    margin-bottom:20px;
}

.cta-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.cta .primary-btn{
    background:#fff;
    color:var(--primary);
}

.cta .primary-btn:hover{
    background:#95d5b2;
    color:#fff;
}

/* ==========================================
   FAQ SECTION
========================================== */

.faq{
    padding:100px 8%;
    background:#ffffff;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border-radius:15px;
    margin-bottom:20px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.faq-question{
    width:100%;
    padding:22px 25px;
    border:none;
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    color:var(--dark);
}

.faq-question i{
    color:var(--primary);
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}

.faq-answer p{
    padding:0 25px 25px;
    color:#555;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);
}

/* ==========================================
   CONTACT SECTION
========================================== */

.contact-section{
    padding:100px 8%;
    background:#f8fbf9;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:flex-start;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact-box{
    display:flex;
    align-items:center;
    gap:20px;
    background:#fff;
    padding:20px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-box i{
    width:60px;
    height:60px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    font-size:22px;
}

.contact-box h4{
    margin-bottom:6px;
    color:var(--dark);
}

.contact-box p{
    color:#666;
}

.social-links{
    display:flex;
    gap:15px;
    margin-top:15px;
}

.social-links a{
    width:50px;
    height:50px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.social-links a:hover{
    background:var(--secondary);
    transform:translateY(-5px);
}
/* ==========================================
   CONTACT FORM
========================================== */

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:15px 18px;
    border:1px solid #dcdcdc;
    border-radius:12px;
    font-size:16px;
    font-family: 'Poppins', serif;
    outline:none;
    transition:.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    border-color:var(--primary);
    box-shadow:0 0 10px rgba(45,106,79,.2);
}

.contact-form textarea{
    resize:vertical;
    min-height:160px;
}

.contact-form button{
    background:var(--primary);
    color:#fff;
    border:none;
    padding:16px;
    border-radius:50px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:var(--secondary);
    transform:translateY(-3px);
}

/* ==========================================
   NEWSLETTER
========================================== */

.newsletter{
    padding:90px 8%;
    background:linear-gradient(
135deg,
#16a34a,
#22c55e,
#38bdf8
);
    color:#fff;
    text-align:center;
}

.newsletter-content{
    max-width:700px;
    margin:auto;
}

.newsletter-content h2{
    font-family: 'Playfair Display', serif;
    font-size:42px;
    margin-bottom:15px;
}

.newsletter-content p{
    margin-bottom:35px;
    line-height:1.8;
}

.newsletter form{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.newsletter input{
    flex:1;
    min-width:260px;
    padding:16px;
    border:none;
    border-radius:50px;
    font-size:16px;
}

.newsletter button{
    padding:16px 35px;
    border:none;
    border-radius:50px;
    background:#fff;
    color:var(--primary);
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.newsletter button:hover{
    background:#95d5b2;
    color:#fff;
}

/* ==========================================
   FOOTER
========================================== */

.footer{
    background:linear-gradient(
135deg,
#123524,
#14532d,
#166534
);
    color:#fff;
    padding:70px 8% 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer-logo{
    width: 90px;
    margin-bottom:15px;
}

.footer-column h3{
    margin-bottom:20px;
}

.footer-column p,
.footer-column li{
    color:#d6e6dc;
    line-height:1.8;
}

.footer-column ul{
    list-style:none;
}

.footer-column ul li{
    margin-bottom:12px;
}

.footer-column ul li a{
    color:#d6e6dc;
    text-decoration:none;
    transition:.3s;
}

.footer-column ul li a:hover{
    color:#95d5b2;
}

.footer-social{
    display:flex;
    gap:15px;
}

.footer-social a{
    width:45px;
    height:45px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:rgba(255,255,255,.1);
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:var(--primary);
}

.footer hr{
    margin:40px 0 20px;
    border:none;
    border-top:1px solid rgba(255,255,255,.15);
}

.copyright{
    text-align:center;
    color:#b7c8bd;
    font-size:15px;
}


/* ==========================================
   SCROLL ANIMATIONS
========================================== */

.fade-up{
opacity:0;
transform:translateY(50px);
transition:all .8s ease;
}

.fade-up.show{
opacity:1;
transform:translateY(0);
}

.fade-left{
opacity:0;
transform:translateX(-60px);
transition:all .8s ease;
}

.fade-left.show{
opacity:1;
transform:translateX(0);
}

.fade-right{
opacity:0;
transform:translateX(60px);
transition:all .8s ease;
}

.fade-right.show{
opacity:1;
transform:translateX(0);
}

.zoom-in{
opacity:0;
transform:scale(.85);
transition:all .8s ease;
}

.zoom-in.show{
opacity:1;
transform:scale(1);
}

/* ==========================================
   CUSTOM SCROLLBAR
========================================== */

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-track{
background:#eef6f1;
}

::-webkit-scrollbar-thumb{
background:var(--primary);
border-radius:50px;
}

::-webkit-scrollbar-thumb:hover{
background:var(--secondary);
}

/* ==========================================
   IMAGE HOVER EFFECT
========================================== */

img{
max-width:100%;
display:block;
}

img:hover{
transition:.4s;
}

/* ==========================================
   SELECTION COLOR
========================================== */

::selection{
background:var(--primary);
color:#fff;
}
/* Desktop */

.menu-btn{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:#2d6a4f;
}

/* ==========================================
   END OF STYLE.CSS
========================================== */

/* =========================================================
   NATURE JOURNEY LOADER
========================================================= */

#natureLoader {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: grid;
    place-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            #123f35 0%,
            #082c25 45%,
            #041b16 100%
        );

    color: #fff;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

#natureLoader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-scene {
    position: relative;

    width: min(420px, 90%);
    padding: 40px 25px;

    text-align: center;
}

/* Leaf */

.loader-leaf {
    position: relative;

    width: 70px;
    height: 70px;

    margin: 0 auto 25px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(169, 218, 188, 0.08);

    border: 1px solid rgba(169, 218, 188, 0.25);

    box-shadow:
        0 0 30px rgba(126, 214, 145, 0.15);

    animation: leafFloat 2.5s ease-in-out infinite;
}

.loader-leaf i {
    color: #a9dabc;
    font-size: 28px;

    animation: leafGlow 2s ease-in-out infinite;
}

@keyframes leafFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes leafGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 2px #a9dabc);
    }

    50% {
        filter: drop-shadow(0 0 14px #a9dabc);
    }
}

/* Journey path */

.journey-path {
    width: 0;
    height: 1px;

    margin: 0 auto 25px;

    background: linear-gradient(
        90deg,
        transparent,
        #a9dabc,
        #e6b968,
        transparent
    );

    animation: pathDraw 2s ease forwards;
}

@keyframes pathDraw {
    to {
        width: 80%;
    }
}

/* Logo */

.loader-logo {
    width: 82px;
    height: 82px;

    margin: 0 auto 15px;

    object-fit: contain;

    opacity: 0;

    animation: logoReveal 1s ease 1.2s forwards;
}

@keyframes logoReveal {

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Heading */

.loader-scene h1,
.loader-scene h2 {
    opacity: 0;

    animation: textReveal 0.8s ease 1.4s forwards;
}

.loader-scene h1 {
    font-family: 'DM Sans', sans-serif;

    font-size: 18px;

    letter-spacing: 0.16em;
}

.loader-scene h2 {
    margin-top: 3px;

    color: #a9dabc;

    font-family: 'DM Sans', sans-serif;

    font-size: 13px;

    letter-spacing: 0.3em;
}

@keyframes textReveal {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Message */

#loaderMessage {
    min-height: 25px;

    margin: 22px 0 15px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 13px;
}

/* Progress */

.loader-progress {
    width: 210px;
    height: 3px;

    margin: auto;

    overflow: hidden;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.12);
}

.loader-progress span {
    display: block;

    width: 0;
    height: 100%;

    border-radius: inherit;

    background: linear-gradient(
        90deg,
        #79c7a5,
        #a9dabc,
        #e6b968
    );

    box-shadow:
        0 0 12px rgba(169, 218, 188, 0.5);

    animation: loaderProgress 3.2s ease forwards;
}

@keyframes loaderProgress {

    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/* Percentage */

#loaderPercent {
    display: block;

    margin-top: 10px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 11px;
    letter-spacing: 0.1em;
}

/* Mobile */

@media (max-width: 520px) {

    .loader-scene {
        padding: 30px 20px;
    }

    .loader-leaf {
        width: 62px;
        height: 62px;
    }

    .loader-logo {
        width: 72px;
        height: 72px;
    }

    .loader-scene h2 {
        font-size: 16px;
    }

    .loader-progress {
        width: 180px;
    }
}
/* ==========================================================
   FIX: STOP AUTOMATIC PAGE MOVEMENT
========================================================== */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overscroll-behavior-x: none;
}

/* Stop background/video movement */
.hero-video {
    animation: none !important;
    transform: scale(1.05) !important;
}

/* Stop floating background blobs */
.about-preview::before,
.about-preview::after {
    animation: none !important;
}

/* Prevent accidental horizontal movement */
* {
    max-width: 100%;
}

/* Keep sections inside viewport */
section,
.hero,
footer {
    overflow-x: hidden;
}

/* Mobile/tablet */
@media (max-width: 992px) {
    html,
    body {
        overflow-x: hidden;
        overscroll-behavior-x: none;
    }
}

/* ==========================================================
   VIEWPORT SAFEGUARDS
========================================================== */

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:clip;
}

*,
*::before,
*::after{
    box-sizing:border-box;
}

@media (max-width:992px){
    .hero,
    section,
    .quick-stats,
    .stats-section,
    .footer{
        width:100%;
        max-width:100%;
    }

    .hero{
        min-height:100svh;
    }
}
/* ==========================================================
   RESPONSIVE.CSS
   PART 1 - NAVBAR + HERO + QUICK STATS
========================================================== */


/* ==========================================================
   TABLET (992px)
========================================================== */

@media (max-width:992px){

/* Navbar */

.navbar{
    width:95%;
    padding:12px 25px;
}

.logo img{
    width:75px;
    height:75px;
}

nav{
    gap:20px;
}

nav a{
    font-size:15px;
}



/* Hero */

.hero-content{
    max-width:700px;
}

.hero-content h1{
    font-size:52px;
}

.hero-content p{
    font-size:17px;
}

.hero-features{
    gap:18px;
}

/* Quick Stats */

.quick-stats{
    grid-template-columns:repeat(2,1fr);
}

}


/* ==========================================================
   MOBILE (768px)
========================================================== */

@media (max-width:768px){

/* ======================
   NAVBAR
====================== */

.navbar{

    width:94%;
    top:12px;

    padding:12px 18px;

    border-radius:18px;

}

.logo{

    gap:10px;

}

.logo img{

    width:60px;
    height:60px;

}

.logo h1, .logo h2 {

    font-size:18px;

}

.logo p {
    display: block;
    font-size: 10px;
    letter-spacing: 1px;
    margin-top: 2px;
    color: #666;
}

.menu-btn{

    display:flex;
    justify-content:center;
    align-items:center;

    width:45px;
    height:45px;

    font-size:24px;

    color:#fff;

    background:rgba(255,255,255,.15);

    border-radius:12px;

    backdrop-filter:blur(15px);

    z-index:1200;

}

/* ======================
   MOBILE MENU
====================== */

#menu{

    position:fixed;

    top:0;
    right:-100%;

    width:80%;
    max-width:340px;

    height:100vh;
    height:100dvh;

    background:rgba(12,24,18,.97);

    backdrop-filter:blur(25px);

    display:flex;

    flex-direction:column;

    justify-content:center;
    align-items:center;

    gap:30px;

    transition:.45s;

    z-index:1100;

}

#menu.active{

    right:0;

}

#menu a{

    color:#fff;

    font-size:20px;

    font-weight:600;

    text-decoration:none;

    transition:.35s;

}

#menu a:hover{

    color:#95d5b2;

    transform:translateX(8px);

}

/* ======================
   HERO
====================== */

.hero{

    min-height:100vh;

    padding:120px 20px 60px;

    text-align:center;

    display:flex;
    justify-content:center;
    align-items:center;

}

.hero-video{

    object-fit:cover;

    object-position:center;

    transform:scale(1.08);

}

.hero-overlay{

    background:linear-gradient(

        rgba(0,0,0,.65),

        rgba(0,0,0,.40),

        rgba(0,0,0,.75)

    );

}

.hero-content{

    width:100%;
    max-width:100%;

    padding:0 10px;

}

.hero-content .tag{

    font-size:12px;

    padding:8px 16px;

    letter-spacing:1px;

}

.hero-content h1{

    font-size:40px;

    line-height:1.2;

    margin:20px 0;

}

.hero-content p{

    font-size:16px;

    line-height:1.8;

    margin-bottom:30px;

}

.hero-buttons{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.primary-btn,
.secondary-btn{

    width:100%;

    max-width:320px;

    margin:auto;

    padding:16px 22px;

}

.hero-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin-top:35px;

}

.hero-features div{

    padding:14px;

    border-radius:16px;

    justify-content:center;

    font-size:14px;

    text-align:center;

}

/* ======================
   QUICK STATS
====================== */

.quick-stats{

    padding:70px 20px;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.stat{

    padding:25px 18px;

}

.stat h2{

    font-size:30px;

}

.stat p{

    font-size:14px;

}

/* Floating Buttons */

.floating-contact{

    right:15px;

    bottom:20px;

}

.float-btn{

    width:52px;
    height:52px;

    font-size:20px;

}

#backToTop{

    right:15px;
    bottom:90px;

}

}


/* ==========================================================
   SMALL MOBILE (480px)
========================================================== */

@media (max-width:480px){

.hero{

    padding:110px 16px 50px;

}

.hero-content h1{

    font-size:32px;

}

.hero-content p{

    font-size:15px;

}

.hero-content .tag{

    font-size:11px;

}

.hero-buttons{

    gap:12px;

}

.primary-btn,
.secondary-btn{

    max-width:100%;

}

.hero-features{

    grid-template-columns:1fr;

}

.quick-stats{

    grid-template-columns:1fr;

}

.logo img{

    width:52px;
    height:52px;

}

.logo h1, .logo h2 {

    font-size:16px;

}

.menu-btn{

    width:44px;
    height:44px;

    font-size:22px;

}

}
/* ==========================================================
   PART 2 - ABOUT + FEATURED STAYS + WHY US + ACTIVITIES
========================================================== */


/* ==========================================================
   TABLET (992px)
========================================================== */

@media (max-width:992px){

/* ======================
   ABOUT
====================== */

.about-preview{

    grid-template-columns:1fr;
    gap:50px;
    padding:80px 5%;
    text-align:center;

}

.about-left{

    order:1;

}

.about-right{

    order:2;

}

.about-left img{

    width:100%;
    max-width:700px;
    margin:auto;

}

.about-right h2{

    font-size:42px;

}

.about-right p{

    max-width:700px;
    margin:auto auto 30px;

}

.about-right ul{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;

}

/* Featured Stays */

.stay-grid{

    grid-template-columns:repeat(2,1fr);

}

/* Why Us */

.why-grid{

    grid-template-columns:repeat(2,1fr);

}

/* Activities */

.activity-grid{

    grid-template-columns:repeat(2,1fr);

}

}


/* ==========================================================
   MOBILE (768px)
========================================================== */

@media (max-width:768px){

/* ======================
   ABOUT
====================== */

.about-preview{

    padding:70px 20px;

    grid-template-columns:1fr;

    gap:45px;

    text-align:center;

}

.about-preview::before{

    width:220px;
    height:220px;

    top:-80px;
    left:-80px;

}

.about-preview::after{

    width:220px;
    height:220px;

    bottom:-80px;
    right:-80px;

}

.about-left{

    width:100%;

}

.about-left img{

    width:100%;
    border-radius:22px;

}

.about-right h5{

    font-size:14px;

}

.about-right h2{

    font-size:34px;

    line-height:1.3;

    margin-bottom:20px;

}

.about-right p{

    font-size:16px;

    line-height:1.9;

}

.about-right ul{

    display:grid;

    grid-template-columns:1fr;

    gap:14px;

    margin-top:25px;

}

.about-right ul li{

    justify-content:center;

    font-size:15px;

}

/* ======================
   SECTION TITLE
====================== */

.section-title{

    margin-bottom:45px;

}

.section-title h2{

    font-size:34px;

}

.section-title p{

    font-size:15px;

    line-height:1.8;

}

/* ======================
   FEATURED STAYS
====================== */

.featured-stays{

    padding:70px 20px;

}

.stay-grid{

    grid-template-columns:1fr;

    gap:25px;

}

.stay-card{

    border-radius:22px;

}

.stay-image img{

    height:240px;

}

.stay-content{

    padding:22px;

}

.stay-content h3{

    font-size:24px;

}

.facility{

    gap:8px;

}

.facility span{

    font-size:12px;

    padding:8px 12px;

}

.view-btn{

    width:100%;

    text-align:center;

}

/* ======================
   WHY CHOOSE US
====================== */

.why-us{

    padding:70px 20px;

}

.why-grid{

    grid-template-columns:1fr;

    gap:22px;

}

.why-card{

    padding:30px 20px;

}

.why-card i{

    font-size:42px;

}

.why-card h3{

    font-size:22px;

}

.why-card p{

    font-size:15px;

}

/* ======================
   ACTIVITIES
====================== */

.activities{

    padding:70px 20px;

}

.activity-grid{

    grid-template-columns:1fr;

    gap:22px;

}

.activity-card{

    padding:30px 20px;

}

.activity-card i{

    font-size:42px;

}

.activity-card h3{

    font-size:22px;

}

.activity-card p{

    font-size:15px;

}

}


/* ==========================================================
   SMALL MOBILE (480px)
========================================================== */

@media (max-width:480px){

.about-preview{

    padding:60px 16px;

}

.about-right h2{

    font-size:30px;

}

.about-right p{

    font-size:15px;

}

.section-title h2{

    font-size:30px;

}

.section-title p{

    font-size:14px;

}

.stay-image img{

    height:220px;

}

.stay-content{

    padding:18px;

}

.stay-content h3{

    font-size:22px;

}

.price{

    font-size:13px;

    padding:7px 14px;

}

.why-card,
.activity-card{

    padding:25px 18px;

}

}
/* ==========================================================
   PART 3 - STATISTICS + TESTIMONIALS + ATTRACTIONS + CTA
========================================================== */


/* ==========================================================
   TABLET (992px)
========================================================== */

@media (max-width:992px){

/* Statistics */

.stats-section{

    grid-template-columns:repeat(2,1fr);

}

/* Testimonials */

.testimonial{

    padding:40px;

}

/* Attractions */

.attraction-grid{

    grid-template-columns:repeat(2,1fr);

}

/* CTA */

.cta-content{

    max-width:700px;

}

}


/* ==========================================================
   MOBILE (768px)
========================================================== */

@media (max-width:768px){

/* ======================
   STATISTICS
====================== */

.stats-section{

    padding:70px 20px;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.stat-box{

    padding:28px 18px;

    border-radius:18px;

}

.stat-box i{

    font-size:40px;

}

.stat-box h2{

    font-size:34px;

}

.stat-box p{

    font-size:14px;

}

/* ======================
   TESTIMONIALS
====================== */

.testimonials{

    padding:70px 20px;

}

.testimonial{

    padding:35px 25px;

    border-radius:20px;

}

.testimonial img{

    width:85px;
    height:85px;

}

.testimonial h3{

    font-size:22px;

}

.testimonial p{

    font-size:15px;

    line-height:1.8;

}

.stars{

    font-size:18px;

}

/* ======================
   ATTRACTIONS
====================== */

.attractions{

    padding:70px 20px;

}

.attraction-grid{

    grid-template-columns:1fr;

    gap:22px;

}

.attraction-card{

    border-radius:20px;

}

.attraction-card img{

    height:240px;

}

.attraction-card h3{

    font-size:22px;

    padding:18px;

}

/* ======================
   CTA
====================== */

.cta{

    padding:80px 20px;

}

.cta-content{

    max-width:100%;

}

.cta-content h2{

    font-size:34px;

    line-height:1.3;

}

.cta-content p{

    font-size:16px;

    line-height:1.8;

    margin-bottom:28px;

}

.cta .primary-btn{

    width:100%;

    max-width:320px;

}

}


/* ==========================================================
   SMALL MOBILE (480px)
========================================================== */

@media (max-width:480px){

/* Statistics */

.stats-section{

    grid-template-columns:1fr;

}

.stat-box{

    padding:25px 16px;

}

.stat-box h2{

    font-size:30px;

}

/* Testimonials */

.testimonial{

    padding:28px 18px;

}

.testimonial img{

    width:75px;
    height:75px;

}

.testimonial h3{

    font-size:20px;

}

.testimonial p{

    font-size:14px;

}

/* Attractions */

.attraction-card img{

    height:210px;

}

.attraction-card h3{

    font-size:20px;

}

/* CTA */

.cta{

    padding:70px 16px;

}

.cta-content h2{

    font-size:30px;

}

.cta-content p{

    font-size:15px;

}

}
/* ==========================================================
   PART 4 - FAQ + CONTACT + NEWSLETTER + FOOTER + FINAL
========================================================== */


/* ==========================================================
   TABLET (992px)
========================================================== */

@media (max-width:992px){

.contact-wrapper{
    grid-template-columns:1fr;
    gap:40px;
}

.footer-container{
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.newsletter-content{
    max-width:700px;
}

}


/* ==========================================================
   MOBILE (768px)
========================================================== */

@media (max-width:768px){

/* ======================
   FAQ
====================== */

.faq{
    padding:70px 20px;
}

.faq-question{
    font-size:16px;
    padding:18px 20px;
}

.faq-answer p{
    padding:0 20px 20px;
    font-size:15px;
    line-height:1.8;
}

/* ======================
   CONTACT
====================== */

.contact-section{
    padding:70px 20px;
}

.contact-wrapper{
    grid-template-columns:1fr;
    gap:30px;
}

.contact-box{
    flex-direction:column;
    text-align:center;
    padding:25px 20px;
}

.contact-box i{
    width:60px;
    height:60px;
    font-size:22px;
}

.contact-box h4{
    font-size:20px;
}

.contact-box p{
    font-size:15px;
}

.social-links{
    justify-content:center;
    flex-wrap:wrap;
}

.contact-form{
    padding:25px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    font-size:15px;
    padding:14px 16px;
}

.contact-form button{
    width:100%;
}

/* ======================
   NEWSLETTER
====================== */

.newsletter{
    padding:70px 20px;
}

.newsletter-content h2{
    font-size:34px;
}

.newsletter-content p{
    font-size:15px;
}

.newsletter form{
    flex-direction:column;
    gap:15px;
}

.newsletter input,
.newsletter button{
    width:100%;
}

/* ======================
   FOOTER
====================== */

.footer{
    padding:60px 20px 20px;
}

.footer-container{
    grid-template-columns:1fr;
    text-align:center;
    gap:35px;
}

.footer-logo{
    margin:auto auto 20px;
}

.footer-social{
    justify-content:center;
}

.footer-column ul li{
    margin-bottom:10px;
}

/* ======================
   FLOATING BUTTONS
====================== */

.floating-contact{
    right:15px;
    bottom:20px;
    gap:15px;
}

.float-btn{
    width:55px;
    height:55px;
    font-size:20px;
}

#backToTop{
    width:52px;
    height:52px;
    right:15px;
    bottom:95px;
    font-size:18px;
}

/* ======================
   GENERAL MOBILE
====================== */

img{
    max-width:100%;
    height:auto;
}

section{
    overflow:hidden;
}

html{
    overflow-x:hidden;
}

body{
    overflow-x:hidden;
}

}


/* ==========================================================
   SMALL MOBILE (480px)
========================================================== */

@media (max-width:480px){

.faq{
    padding:60px 16px;
}

.contact-section{
    padding:60px 16px;
}

.newsletter{
    padding:60px 16px;
}

.footer{
    padding:50px 16px 20px;
}

.newsletter-content h2{
    font-size:30px;
}

.contact-form{
    padding:20px;
}

.contact-box{
    padding:20px 15px;
}

.float-btn{
    width:50px;
    height:50px;
    font-size:18px;
}

#backToTop{
    width:48px;
    height:48px;
    bottom:85px;
}

.footer-column h3{
    font-size:22px;
}

.footer-column p,
.footer-column li{
    font-size:14px;
}

}

/* ==========================================================
   FINAL MOBILE / VIEWPORT STABILITY FIX
   ========================================================== */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overscroll-behavior-x: none;
}

body {
    position: relative;
}

.hero,
section,
.footer {
    max-width: 100%;
    overflow-x: hidden;
}

.hero-video {
    animation: none !important;
    transform: scale(1.05) !important;
}

.about-preview::before,
.about-preview::after {
    animation: none !important;
}

@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
        overscroll-behavior-x: none;
    }

    .hero-video {
        animation: none !important;
        transform: scale(1.05) !important;
    }

    .about-preview::before,
    .about-preview::after {
        animation: none !important;
    }

    .logo p {
        display: block !important;
        font-size: clamp(0.6rem, 2.5vw, 0.8rem) !important;
        letter-spacing: 1px;
        margin-top: 2px;
        color: #666;
    }

    .stay-grid,
    .why-grid,
    .activity-grid,
    .attraction-grid,
    .footer-container {
        width: 100%;
        max-width: 100%;
    }

    .stay-card,
    .why-card,
    .activity-card,
    .attraction-card,
    .contact-form,
    .contact-box {
        max-width: 100%;
        min-width: 0;
    }

    img,
    video {
        max-width: 100%;
    }
}


/* ==========================================================
   FINAL FLUID RESPONSIVE SYSTEM
   Automatically adapts to viewport WIDTH + HEIGHT
   ========================================================== */

html,
body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
    overflow-x: clip;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    min-width: 0;
}

img,
video,
iframe,
svg,
canvas {
    max-width: 100%;
}

img {
    height: auto;
}

/* Fluid section spacing */
section,
.featured-stays,
.why-us,
.activities,
.faq,
.contact-section,
.newsletter,
.about-preview {
    padding-top: clamp(48px, 7vw, 100px);
    padding-bottom: clamp(48px, 7vw, 100px);
}

/* Fluid headings and text */
h1 {
    font-size: clamp(2rem, 5vw, 5rem);
    line-height: 1.08;
}

h2,
.section-title h2,
.about-right h2,
.stay-section h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.15;
}

h3 {
    font-size: clamp(1.15rem, 2.2vw, 1.75rem);
}

p {
    font-size: clamp(.9rem, 1.25vw, 1.05rem);
}

/* ==========================================================
   HERO — WIDTH + HEIGHT AWARE
   ========================================================== */

.hero {
    width: 100%;
    min-height: 100svh;
    min-height: 100dvh;
    height: auto;
    padding:
        clamp(92px, 12vh, 150px)
        clamp(16px, 5vw, 80px)
        clamp(40px, 7vh, 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    width: min(100%, 1100px);
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: clamp(4px, 2vw, 20px);
}

.hero-content h1 {
    font-size: clamp(2rem, 7vw, 5.5rem);
    line-height: clamp(1.05, 1.1, 1.15);
    margin: clamp(14px, 2vh, 25px) 0;
    overflow-wrap: anywhere;
}

.hero-content p {
    width: min(100%, 750px);
    margin-inline: auto;
    font-size: clamp(.9rem, 2vw, 1.2rem);
    line-height: 1.7;
}

.hero-content .tag {
    display: inline-block;
    max-width: 100%;
    font-size: clamp(.65rem, 1.7vw, .9rem);
    padding: clamp(7px, 1.2vw, 11px) clamp(12px, 2.5vw, 22px);
}

.hero-buttons {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(10px, 2vw, 18px);
    margin-top: clamp(18px, 3vh, 30px);
}

.primary-btn,
.secondary-btn {
    width: auto;
    max-width: 100%;
    padding: clamp(11px, 1.8vw, 16px) clamp(18px, 3vw, 30px);
    font-size: clamp(.82rem, 1.6vw, 1rem);
}

.hero-features {
    width: 100%;
    max-width: 850px;
    margin: clamp(22px, 4vh, 40px) auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
    gap: clamp(8px, 2vw, 18px);
}

.hero-features div {
    min-width: 0;
    padding: clamp(10px, 2vw, 16px);
    font-size: clamp(.72rem, 1.5vw, .9rem);
}

/* Keep the background stable — no automatic zoom/motion */
.hero-video {
    animation: none !important;
    transform: scale(1.05) !important;
}

/* ==========================================================
   NAVBAR — FLUID
   ========================================================== */

.navbar {
    width: min(92%, 1400px);
    padding:
        clamp(8px, 1.5vw, 14px)
        clamp(12px, 3vw, 35px);
}

.logo {
    min-width: 0;
    gap: clamp(7px, 1.5vw, 14px);
}

.logo img {
    width: clamp(48px, 5vw, 75px);
    height: clamp(48px, 5vw, 75px);
    object-fit: contain;
    flex: 0 0 auto;
}

.logo h1, .logo h2 {
    font-size: clamp(.85rem, 2vw, 1.25rem);
    overflow-wrap: anywhere;
}

.menu-btn {
    width: clamp(44px, 11vw, 48px);
    height: clamp(44px, 11vw, 48px);
    flex: 0 0 auto;
}

/* ==========================================================
   QUICK STATS
   ========================================================== */

.quick-stats,
.stats-section {
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
    gap: clamp(10px, 2.5vw, 25px);
    padding-inline: clamp(16px, 5vw, 80px);
}

.stat {
    min-width: 0;
    padding: clamp(18px, 3vw, 30px);
}

.stat h2 {
    font-size: clamp(1.5rem, 5vw, 2.4rem);
}

.stat p {
    font-size: clamp(.75rem, 1.7vw, .95rem);
}

/* ==========================================================
   ABOUT
   ========================================================== */

.about-preview {
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(28px, 5vw, 70px);
    padding-inline: clamp(16px, 7vw, 100px);
}

.about-left,
.about-right {
    width: 100%;
    min-width: 0;
}

.about-left img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin-inline: auto;
}

.about-right h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
}

.about-right p {
    max-width: 750px;
    font-size: clamp(.9rem, 1.8vw, 1.05rem);
    line-height: 1.8;
}

.about-right ul {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
    gap: clamp(9px, 2vw, 16px);
}

/* ==========================================================
   ALL CARD GRIDS — AUTOMATIC WIDTH
   ========================================================== */

.stay-grid,
.why-grid,
.activity-grid,
.attraction-grid,
.stay-container,
.cards {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(min(100%, 280px), 1fr)
    );
    gap: clamp(16px, 3vw, 35px);
}

.stay-card,
.why-card,
.activity-card,
.attraction-card,
.card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.stay-card {
    border-radius: clamp(16px, 2.5vw, 24px);
}

.stay-image img,
.stay-card img {
    width: 100%;
    height: clamp(190px, 30vw, 280px);
    object-fit: cover;
}

.stay-content {
    padding: clamp(17px, 3vw, 28px);
}

.stay-content h3 {
    font-size: clamp(1.2rem, 3vw, 1.75rem);
}

.facility {
    gap: clamp(6px, 1.5vw, 10px);
}

.facility span {
    padding: clamp(6px, 1.3vw, 9px) clamp(9px, 2vw, 14px);
    font-size: clamp(.68rem, 1.5vw, .82rem);
}

.view-btn {
    max-width: 100%;
    padding: clamp(11px, 1.8vw, 14px) clamp(18px, 3vw, 30px);
}

/* ==========================================================
   WHY / ACTIVITIES
   ========================================================== */

.why-card,
.activity-card {
    padding: clamp(22px, 3vw, 35px);
}

.why-card i,
.activity-card i {
    font-size: clamp(34px, 6vw, 48px);
}

.why-card h3,
.activity-card h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

/* ==========================================================
   SECTION TITLES
   ========================================================== */

.section-title {
    width: min(100%, 900px);
    margin-inline: auto;
    margin-bottom: clamp(28px, 5vw, 50px);
    padding-inline: clamp(4px, 2vw, 15px);
}

.section-title h2 {
    font-size: clamp(1.7rem, 5vw, 3rem);
}

.section-title p {
    font-size: clamp(.82rem, 1.8vw, 1rem);
    line-height: 1.8;
}

/* ==========================================================
   TESTIMONIAL / FAQ / CONTACT
   ========================================================== */

.testimonial {
    width: 100%;
    max-width: 100%;
    padding: clamp(22px, 4vw, 45px);
}

.faq,
.contact-section,
.newsletter {
    padding-inline: clamp(16px, 5vw, 80px);
}

.contact-wrapper {
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(18px, 4vw, 35px);
}

.contact-box,
.contact-form {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: clamp(18px, 3vw, 30px);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    max-width: 100%;
    font-size: clamp(.85rem, 1.8vw, 1rem);
}

.newsletter form {
    width: min(100%, 700px);
    margin-inline: auto;
}

.newsletter input,
.newsletter button {
    min-width: 0;
}

/* ==========================================================
   FOOTER
   ========================================================== */

.footer {
    width: 100%;
    padding:
        clamp(40px, 6vw, 70px)
        clamp(16px, 5vw, 80px)
        20px;
}

.footer-container {
    width: 100%;
    max-width: 1400px;
    margin-inline: auto;
    grid-template-columns: repeat(
        auto-fit,
        minmax(min(100%, 200px), 1fr)
    );
    gap: clamp(22px, 4vw, 45px);
}

/* ==========================================================
   FLOATING BUTTONS — SAFE AREA
   ========================================================== */

.floating-contact {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    gap: clamp(8px, 2vw, 15px);
}

.float-btn {
    width: clamp(44px, 13vw, 56px);
    height: clamp(44px, 13vw, 56px);
    font-size: clamp(17px, 5vw, 22px);
}

#backToTop {
    right: max(12px, env(safe-area-inset-right));
    bottom: clamp(78px, 12vh, 100px);
}

/* ==========================================================
   MOBILE — WIDTH + HEIGHT
   ========================================================== */

@media (max-width: 768px) {

    .navbar {
        width: calc(100% - clamp(20px, 6vw, 40px));
        top: clamp(8px, 2vh, 14px);
        border-radius: clamp(14px, 4vw, 20px);
    }

    .logo {
        max-width: calc(100% - 55px);
    }

    .logo p {
        display: block !important;
        font-size: clamp(0.6rem, 2.5vw, 0.8rem) !important;
        letter-spacing: 1px;
        margin-top: 2px;
        color: #666;
    }

    #menu {
        width: min(82vw, 340px);
        height: 100svh;
        height: 100dvh;
        padding:
            max(70px, 10vh)
            clamp(18px, 7vw, 35px)
            max(30px, 6vh);
        gap: clamp(16px, 4vh, 30px);
        overflow-y: auto;
    }

    #menu a {
        font-size: clamp(1rem, 5vw, 1.25rem);
    }

    .hero {
        min-height: 100svh;
        min-height: 100dvh;
        padding-top: max(90px, 13vh);
        padding-bottom: max(30px, 5vh);
    }

    .hero-content h1 {
        font-size: clamp(1.9rem, 9vw, 3.3rem);
    }

    .hero-content p {
        font-size: clamp(.82rem, 3.8vw, 1rem);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-btn,
    .secondary-btn {
        width: min(100%, 340px);
    }

    .hero-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quick-stats,
    .stats-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-inline: clamp(12px, 5vw, 25px);
    }

    .stay-grid,
    .why-grid,
    .activity-grid,
    .attraction-grid,
    .stay-container {
        grid-template-columns: 1fr;
    }

    .about-preview {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-right ul {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   SHORT MOBILE SCREENS
   Prevent hero content from being squeezed/cut off
   ========================================================== */

@media (max-width: 768px) and (max-height: 700px) {

    .hero {
        min-height: auto;
        padding-top: max(82px, 12vh);
        padding-bottom: 35px;
    }

    .hero-content h1 {
        font-size: clamp(1.75rem, 8vw, 2.7rem);
        margin-block: 10px;
    }

    .hero-content p {
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .hero-features {
        margin-top: 20px;
        gap: 8px;
    }

    .hero-features div {
        padding: 9px 6px;
    }
}

/* ==========================================================
   VERY SHORT MOBILE SCREENS
   ========================================================== */

@media (max-width: 480px) and (max-height: 600px) {

    .navbar {
        top: 6px;
        padding: 6px 10px;
    }

    .logo img {
        width: 44px;
        height: 44px;
    }

    .logo h1, .logo h2 {
        font-size: clamp(.72rem, 4vw, 1rem);
    }

    .menu-btn {
        width: 40px;
        height: 40px;
    }

    .hero {
        padding-top: 72px;
        padding-bottom: 25px;
    }

    .hero-content h1 {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }

    .hero-content p {
        font-size: .8rem;
        line-height: 1.45;
    }

    .hero-buttons {
        gap: 8px;
        margin-top: 12px;
    }

    .primary-btn,
    .secondary-btn {
        padding: 10px 16px;
    }

    .hero-features {
        margin-top: 14px;
    }
}

/* ==========================================================
   TALL MOBILE SCREENS
   ========================================================== */

@media (max-width: 768px) and (min-height: 800px) {

    .hero {
        min-height: 100svh;
        min-height: 100dvh;
        padding-top: 13vh;
        padding-bottom: 7vh;
    }

    .hero-content h1 {
        font-size: clamp(2.1rem, 9vw, 3.5rem);
    }

    .hero-content p {
        line-height: 1.75;
    }

    .hero-features {
        margin-top: 4vh;
    }
}

/* ==========================================================
   LANDSCAPE PHONES
   ========================================================== */

@media (max-width: 900px) and (orientation: landscape) {

    .hero {
        min-height: auto;
        padding-top: 85px;
        padding-bottom: 35px;
    }

    .hero-content h1 {
        font-size: clamp(1.7rem, 6vw, 2.8rem);
    }

    .hero-content p {
        max-width: 650px;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .hero-features {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        max-width: 750px;
    }

    #menu {
        justify-content: flex-start;
        padding-top: 80px;
        overflow-y: auto;
    }
}

/* ==========================================================
   TABLET / SMALL LAPTOP
   ========================================================== */

@media (min-width: 769px) and (max-width: 1100px) {

    .hero {
        min-height: 100svh;
        min-height: 100dvh;
        padding-inline: clamp(25px, 5vw, 60px);
    }

    .stay-grid,
    .why-grid,
    .activity-grid,
    .attraction-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ==========================================================
   ACCESSIBILITY / MOTION SAFETY
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-video {
        animation: none !important;
        transform: scale(1.05) !important;
    }
}
