/* ========================================
   RESET
======================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#111111;
    overflow-x:hidden;
    line-height:1.7;
}

/* ========================================
   CONTAINER
======================================== */

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* ========================================
   SCROLLBAR
======================================== */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#f1f1f1;
}

::-webkit-scrollbar-thumb{
    background:#4CAF50;
    border-radius:20px;
}

/* ========================================
   HEADER
======================================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(12px);
    transition:0.3s ease;
    box-shadow:0 2px 20px rgba(0,0,0,0.04);
}

header.scrolled{
    background:#ffffff;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
}

/* ========================================
   LOGO
======================================== */

.logo{
    text-decoration:none;
    font-size:1.6rem;
    font-weight:700;
    color:#111111;
}

.logo span{
    color:#4CAF50;
}

/* ========================================
   NAVIGATION
======================================== */

.nav-links{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#111111;
    font-weight:500;
    transition:0.3s ease;
    position:relative;
}

.nav-links a:hover{
    color:#4CAF50;
}

.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#4CAF50;
    transition:0.3s ease;
}

.nav-links a:hover::after{
    width:100%;
}

/* ========================================
   LOGIN BUTTON
======================================== */

.login-btn{
    background:#4CAF50;
    color:#ffffff !important;
    padding:12px 22px;
    border-radius:50px;
    transition:0.3s ease;
}

.login-btn:hover{
    background:#388E3C;
    transform:translateY(-2px);
}

/* ========================================
   MOBILE MENU
======================================== */

.mobile-menu{
    display:none;
    flex-direction:column;
    cursor:pointer;
    gap:5px;
}

.mobile-menu span{
    width:28px;
    height:3px;
    background:#111111;
    border-radius:20px;
}

/* ========================================
   HERO SECTION
======================================== */

.hero{
    position:relative;
    background:
        linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.45)),
        url('../images/hero.jpg');
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding-top:100px;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right,
    rgba(255,193,7,0.15),
    transparent 30%);
}

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:white;
    max-width:850px;
    margin:auto;
}

.hero-badge-group{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:30px;
}

.hero-badge{
    background:rgba(255,255,255,0.15);
    border:1px solid rgba(255,255,255,0.2);
    backdrop-filter:blur(10px);
    padding:10px 18px;
    border-radius:999px;
    font-size:14px;
    font-weight:600;
}

.hero-content h1{
    font-size:4rem;
    line-height:1.2;
    margin-bottom:24px;
    font-weight:700;
}

.hero-content h1 span{
    color:#FFC107;
}

.hero-content p{
    font-size:1.15rem;
    color:rgba(255,255,255,0.92);
    line-height:1.9;
    margin-bottom:30px;
}

.hero-highlight{
    display:inline-block;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.2);
    padding:16px 20px;
    border-radius:16px;
    margin-bottom:35px;
    backdrop-filter:blur(10px);
}

/* ========================================
   BUTTONS
======================================== */

.cta-buttons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:16px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none;
    border:none;
    cursor:pointer;
    padding:16px 28px;
    border-radius:50px;
    font-weight:600;
    transition:0.3s ease;
    font-size:1rem;
}

.btn-primary{
    background:#FFC107;
    color:#111111;
}

.btn-primary:hover{
    background:#ffb300;
    transform:translateY(-3px);
}

.btn-secondary{
    border:2px solid #ffffff;
    color:#ffffff;
    background:transparent;
}

.btn-secondary:hover{
    background:#ffffff;
    color:#111111;
}

/* ========================================
   SECTION TITLE
======================================== */

.section-title{
    text-align:center;
    font-size:2.7rem;
    margin-bottom:60px;
    font-weight:700;
    color:#111111;
}

/* ========================================
   WHY SECTION
======================================== */

.why-section{
    padding:100px 0;
    background:#ffffff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.why-card{
    background:#ffffff;
    padding:40px 30px;
    border-radius:24px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:0.3s ease;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-card i{
    font-size:42px;
    color:#4CAF50;
    margin-bottom:20px;
}

.why-card h3{
    margin-bottom:14px;
    font-size:1.2rem;
}

.why-card p{
    color:#666666;
}

/* ========================================
   UNITS SECTION
======================================== */

.units-section{
    padding:100px 0;
    background:#f9fafb;
}

.units-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
    gap:30px;
}

.unit-card{
    background:#ffffff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s ease;
}

.unit-card:hover{
    transform:translateY(-10px);
}

.unit-image{
    height:240px;
    background-size:cover;
    background-position:center;
    position:relative;
}

.unit-overlay{
    position:absolute;
    bottom:20px;
    left:20px;
    background:rgba(0,0,0,0.55);
    color:white;
    padding:10px 18px;
    border-radius:50px;
    font-weight:600;
}

.unit-content{
    padding:30px;
}

.unit-price{
    font-size:2rem;
    font-weight:700;
    color:#4CAF50;
    margin-bottom:24px;
}

.unit-features{
    list-style:none;
    margin-bottom:30px;
}

.unit-features li{
    padding:12px 0;
    border-bottom:1px solid #eeeeee;
    display:flex;
    align-items:center;
    gap:12px;
}

.unit-features i{
    color:#4CAF50;
}

/* ========================================
   TESTIMONIALS
======================================== */

.testimonials-section{
    padding:100px 0;
    background:#ffffff;
}

.testimonials-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.testimonial-card{
    background:#ffffff;
    border-radius:24px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:0.3s ease;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.testimonial-rating{
    font-size:1.2rem;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#555555;
    line-height:1.9;
}

.testimonial-author{
    margin-top:24px;
    font-weight:600;
    color:#4CAF50;
}

/* ========================================
   FOOTER
======================================== */

footer{
    background:#111111;
    color:#ffffff;
    padding:80px 0 20px;
}

.footer-content{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    margin-bottom:50px;
}

.footer-section h3{
    margin-bottom:24px;
    color:#FFC107;
}

.footer-section p{
    color:#cccccc;
}

.footer-info,
.footer-links{
    list-style:none;
}

.footer-info li,
.footer-links li{
    margin-bottom:14px;
    color:#cccccc;
}

.footer-links a,
.footer-info a{
    color:#cccccc;
    text-decoration:none;
    transition:0.3s ease;
}

.footer-links a:hover,
.footer-info a:hover{
    color:#ffffff;
}

.footer-social{
    display:flex;
    gap:14px;
    margin-top:20px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#222222;
    color:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:0.3s ease;
}

.footer-social a:hover{
    background:#4CAF50;
    transform:translateY(-3px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    padding-top:24px;
    text-align:center;
    color:#999999;
}

.footer-tagline{
    margin-top:10px;
    color:#FFC107;
}

/* ========================================
   FLOATING WHATSAPP
======================================== */

.floating-whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:999;
}

.floating-whatsapp a{
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    color:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    animation:floatWhatsapp 2s infinite;
}

@keyframes floatWhatsapp{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-6px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* ========================================
   URGENCY BANNER
======================================== */

.urgency-banner{
    background:#FFC107;
    color:#111111;
    text-align:center;
    padding:12px;
    font-weight:600;
    margin-top:85px;
}

/* ========================================
   MODAL
======================================== */

.modal{
    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.65);
}

.modal-content{
    background:#ffffff;
    width:95%;
    max-width:600px;
    margin:4% auto;
    border-radius:24px;
    padding:40px;
    position:relative;
}

.close{
    position:absolute;
    top:20px;
    right:24px;
    font-size:32px;
    cursor:pointer;
}

.form-group{
    margin-bottom:24px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
    
}
/* =========================
   INPUT NOTE
========================= */

.input-note{

    margin-top:8px;
    font-size:13px;
    color:#777;

}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:14px 18px;
    border:1px solid #dddddd;
    border-radius:14px;
    font-family:'Poppins',sans-serif;
}

.booking-btn{
    width:100%;
}

/* ========================================
   PROMO POPUP
======================================== */

.promo-popup{
    display:none;
    position:fixed;
    z-index:99999;
    inset:0;
    background:rgba(0,0,0,0.75);
}

.promo-content{
    width:95%;
    max-width:500px;
    background:#ffffff;
    margin:6% auto;
    border-radius:30px;
    padding:40px;
    position:relative;
    text-align:center;
}

.promo-close{
    position:absolute;
    right:20px;
    top:16px;
    font-size:32px;
    cursor:pointer;
}

.promo-badge{
    background:#4CAF50;
    color:white;
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    margin-bottom:20px;
}

.promo-price h3{
    font-size:3rem;
    color:#4CAF50;
    margin:20px 0 10px;
}

.promo-buttons{
    margin-top:30px;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.promo-note{
    margin-top:20px;
    color:#ff5722;
    font-weight:600;
}
.gallery-modal{

    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.85);
    z-index:99999;

}

.gallery-content{

    width:95%;
    max-width:900px;
    margin:3% auto;
    background:white;
    padding:30px;
    border-radius:24px;
    text-align:center;
    position:relative;

}

.gallery-close{

    position:absolute;
    top:15px;
    right:20px;
    font-size:34px;
    cursor:pointer;

}

.main-gallery-image{

    width:100%;
    max-height:50vh;
    object-fit:contain;
    border-radius:20px;
    margin:25px 0;
    background:#000;

}

.gallery-thumbnails{

    display:flex;
    gap:10px;
    overflow:auto;
    margin-bottom:25px;

}

.gallery-thumbnails img{

    width:100px;
    height:80px;
    object-fit:cover;
    border-radius:12px;
    cursor:pointer;
    transition:0.3s ease;

}

.gallery-thumbnails img:hover{

    transform:scale(1.05);

}

.unit-buttons{

    display:flex;
    flex-direction:column;
    gap:12px;

}

.unit-buttons .btn{

    width:100%;

}

/* =========================
   PAYMENT OPTION
========================= */

.payment-option-wrapper{

    display:grid;
    gap:18px;

}

.payment-option-card{

    border:2px solid #eee;
    border-radius:18px;
    padding:20px;
    cursor:pointer;
    transition:0.3s ease;
    display:flex;
    gap:15px;
    align-items:flex-start;

}

.payment-option-card:hover{

    border-color:#4caf50;

}

.payment-option-card input{

    margin-top:4px;

}

.payment-option-content{

    display:flex;
    flex-direction:column;
    gap:6px;

}

.payment-option-content strong{

    font-size:16px;

}

.payment-option-content span{

    color:#666;
    line-height:1.5;

}