/* =========================================
   GLOBAL
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#0d0d0d;
    color:white;
    overflow-x:hidden;
}

/* =========================================
   NAVBAR
========================================= */

.navbar{
    width:100%;
    height:85px;

    padding:0 5%;

    display:flex;
    align-items:center;

    position:fixed;

    top:0;
    left:0;

    z-index:1000;

    background:rgba(0,0,0,0.55);

    backdrop-filter:blur(6px);

    border-bottom:1px solid rgba(255,255,255,0.06);
}

/* LOGO */

.logo{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo img{
    width:58px;
    height:58px;

    border-radius:50%;

    object-fit:cover;

    border:2px solid #d4af37;
}

.logo span{
    font-size:17px;

    font-weight:600;

    color:white;

    border-bottom:2px solid #d4af37;

    padding-bottom:3px;
}

/* NAV LINKS */

.nav-links{
    display:flex;

    align-items:center;

    gap:55px;

    list-style:none;

    margin-left:auto;

    /* margin-right:45px; */
}

.nav-links a{
    color:white;

    text-decoration:none;

    font-size:16px;

    transition:0.3s;

    position:relative;
}

.nav-links a::after{
    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0%;

    height:2px;

    background:#d4af37;

    transition:0.4s;
}

.nav-links a:hover::after{
    width:100%;
}

.nav-links a:hover{
    color:#d4af37;
}

/* BUTTON */

.nav-btn{
    background:#d4af37;

    color:black;

    text-decoration:none;

    padding:13px 28px;

    border-radius:12px;

    font-weight:600;

    transition:0.4s;
}

.nav-btn:hover{
    transform:translateY(-4px);
}

/* =========================================
   HERO SECTION
========================================= */

.hero{
    height:100vh;

    background:
    linear-gradient(rgba(0,0,0,0.40),rgba(0,0,0,0.40)),
    url("../user/images/hero4.png") center/cover no-repeat;

    display:flex;

    align-items:center;

    justify-content:flex-start;

    padding-left:5%;

    position:relative;
}

/* HERO BOX */

.hero-content{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:flex-start;

    background:rgba(0,0,0,0.15);

    backdrop-filter:blur(4px);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:28px;

    padding:42px;

    width:620px;

    min-height:390px;

    box-shadow:
    0 10px 35px rgba(0,0,0,0.28);
}

/* HERO TEXT */

.tagline{
    color:#d4af37;

    letter-spacing:4px;

    font-size:18px;

    margin-bottom:18px;
}

.hero h1{
    font-size:60px;

    line-height:1.05;

    margin-bottom:22px;

    font-weight:800;

    letter-spacing:3px;
}

.hero-text{
    color:#d1d1d1;

    font-size:21px;

    line-height:1.7;

    margin-bottom:35px;

    max-width:520px;

    letter-spacing:1px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:18px;
}

.primary-btn,
.secondary-btn{
    padding:16px 32px;

    border-radius:14px;

    text-decoration:none;

    font-weight:600;

    transition:0.4s;
}

.primary-btn{
    background:#d4af37;
    color:black;
}

.primary-btn:hover{
    transform:translateY(-5px);
}

.secondary-btn{
    border:1px solid rgba(255,255,255,0.6);
    color:white;
}

.secondary-btn:hover{
    background:white;
    color:black;
}

/* =========================================
   ABOUT
========================================= */

.about{
    padding:120px 10%;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

    background:#121212;
}

.about-image{
    overflow:hidden;
    border-radius:30px;
}

.about-image img{
    width:100%;
    border-radius:30px;
    transition:0.6s;
}

.about-image:hover img{
    transform:scale(1.08);
}

.small-title{
    color:#d4af37;
    letter-spacing:4px;
    margin-bottom:18px;
    font-size:14px;
}

.about-content h2{
    font-size:55px;
    line-height:1.2;
    margin-bottom:25px;
}

.about-content p{
    color:#b8b8b8;
    line-height:1.9;
    margin-bottom:35px;
}

.about-features{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.feature-box{
    flex:1;

    min-width:160px;

    background:#1a1a1a;

    border-radius:24px;

    padding:30px;

    text-align:center;

    border:1px solid rgba(255,255,255,0.08);

    transition:0.4s;
}

.feature-box:hover{
    transform:translateY(-10px);

    border-color:#d4af37;
}

.feature-box h3{
    color:#d4af37;

    font-size:34px;

    margin-bottom:10px;
}

/* =========================================
   PLOTS SECTION
========================================= */

.plots-section{
    padding:120px 10%;
    background:#0f0f0f;
}

.section-header{
    display:flex;
    justify-content:space-between;
    align-items:end;
    margin-bottom:25px;
}

.section-header h2{
    font-size:55px;
}

.view-btn{
    background:#d4af37;
    color:black;
    text-decoration:none;
    padding:14px 28px;
    border-radius:14px;
    font-weight:600;
}

/* PLOTS CONTAINER */

.plots-container{
    display:grid;

    grid-template-columns:repeat(3, 1fr);

    gap:24px;

    padding-top:10px;
}

/* PLOT CARD */

.plot-card{
    width:100%;

    background:#171717;

    border-radius:20px;

    overflow:hidden;

    text-decoration:none;

    color:white;

    transition:0.4s;

    border:1px solid rgba(255,255,255,0.08);
}

.plot-card:hover{
    transform:translateY(-10px);

    border-color:#d4af37;
}

/* IMAGE */

.plot-image,
.img-wrapper{
    position:relative;

    overflow:hidden;
}

.plot-image img,
.img-wrapper img{
    width:100%;

    height:190px;

    object-fit:cover;

    display:block;

    transition:0.5s;
}

.plot-card:hover img{
    transform:scale(1.06);
}

/* STATUS */

.status{
    position:absolute;

    top:14px;
    right:14px;

    padding:6px 14px;

    border-radius:30px;

    font-size:12px;

    font-weight:600;
}

.status.available{
    background:#1f8f4d;
    color:white;
}

.status.sold{
    background:#c0392b;
    color:white;
}

/* CONTENT */

.plot-content{
    padding:18px;
}

.plot-content h3{
    font-size:22px;

    margin-bottom:6px;
}

.location{
    color:#b8b8b8;

    font-size:14px;

    margin-bottom:14px;
}

.plot-details{
    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:14px;
}

.price{
    color:#d4af37;

    font-weight:700;
}

/* =========================================
   CONTACT
========================================= */

.contact-section{
    padding:120px 10%;

    background:#121212;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;
}

.contact-left h2{
    font-size:55px;
    margin-bottom:25px;
}

.contact-left p{
    color:#b8b8b8;
    line-height:1.9;
    margin-bottom:35px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-item{
    background:#1a1a1a;

    padding:18px 24px;

    border-radius:16px;

    border:1px solid rgba(255,255,255,0.08);
}

.contact-form{
    background:#1a1a1a;

    padding:40px;

    border-radius:30px;

    border:1px solid rgba(255,255,255,0.08);
}

.contact-form input,
.contact-form textarea{
    width:100%;

    padding:18px;

    margin-bottom:20px;

    border:none;

    border-radius:14px;

    background:#111;

    color:white;

    font-size:16px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border:1px solid #d4af37;
}

.contact-form button{
    width:100%;

    padding:18px;

    border:none;

    border-radius:14px;

    background:#d4af37;

    color:black;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:0.4s;
}

.contact-form button:hover{
    transform:translateY(-4px);
}

/* =========================================
   WHATSAPP
========================================= */

.whatsapp{
    position:fixed;

    right:20px;
    bottom:20px;

    width:60px;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#25d366;

    border-radius:50%;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(0,0,0,0.3);

    font-size:28px;

    color:white;
}

/* =========================================
   PREMIUM PLOT DETAILS
========================================= */

.plot-hero{
    width:100%;
    height:75vh;

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#0b0b0b;

    padding:40px 0;

    overflow:hidden;
}

.plot-hero img{
    width:85%;

    height:100%;

    object-fit:cover;

    border-radius:30px;
    
    border:3px solid #d4af37;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.45);
}
.hero-overlay{
    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to bottom,
        rgba(0,0,0,0.25),
        rgba(0,0,0,0.65)
    );

    display:flex;

    align-items:center;

    justify-content:center;

    padding:20px;
}

.details-content{
    text-align:center;

    background:rgba(15,15,15,0.38);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,0.08);

    padding:50px 65px;

    border-radius:32px;

    box-shadow:
    0 20px 60px rgba(0,0,0,0.45);

    max-width:750px;
}

.hero-tag{
    color:#d4af37;

    letter-spacing:5px;

    font-size:14px;

    margin-bottom:18px;
}

.details-content h1{
    font-size:64px;

    margin-bottom:16px;

    font-weight:800;

    letter-spacing:2px;
}

.details-content p{
    color:#d6d6d6;

    font-size:19px;

    letter-spacing:1px;
}

/* MAIN LAYOUT */

.main-layout{
    padding:90px 10%;

    display:grid;

    grid-template-columns:1.7fr 1fr;

    gap:40px;

    background:#0b0b0b;
}

/* GLASS CARD */

.glass-card{
    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.02)
    );

    border:1px solid rgba(255,255,255,0.08);

    border-radius:28px;

    padding:32px;

    backdrop-filter:blur(12px);

    box-shadow:
    0 15px 40px rgba(0,0,0,0.35);

    transition:0.4s;
}

.glass-card:hover{
    transform:translateY(-6px);

    border-color:rgba(212,175,55,0.4);
}

/* TITLES */

.card-title,
.info-title{
    font-size:30px;

    margin-bottom:28px;

    font-weight:700;
}

/* VIEWER */

.viewer-box{
    overflow:hidden;

    border-radius:22px;

    border:1px solid rgba(255,255,255,0.08);
}

.viewer-box iframe{
    width:100%;

    height:520px;

    border:none;

    display:block;
}

/* INFO */

.info-row{
    padding:18px 0;

    border-bottom:1px solid rgba(255,255,255,0.06);
}

.info-row:last-child{
    border:none;
}

.info-row span{
    color:#9d9d9d;

    font-size:14px;

    letter-spacing:1px;
}

.info-row h3{
    margin-top:8px;

    font-size:24px;

    font-weight:600;
}
.info-row .available{
    color:#35d07f;
}

.info-row .sold{
    color:#ff4d4d;
}

.price{
    color:#d4af37;
}

/* BUTTON */

.book-btn{
    display:inline-block;

    width:100%;

    text-align:center;

    margin-top:35px;

    background:#d4af37;

    color:black;

    text-decoration:none;

    padding:18px;

    border-radius:16px;

    font-weight:700;

    font-size:17px;

    transition:0.4s;

    box-shadow:
    0 10px 25px rgba(212,175,55,0.25);
}

.book-btn:hover{
    transform:translateY(-4px);

    background:#e5bf45;
}

/* MOBILE */

@media(max-width:900px){

    .plot-hero{
        height:70vh;
    }

    .details-content{
        padding:35px 25px;
    }

    .details-content h1{
        font-size:42px;
    }

    .details-content p{
        font-size:16px;
    }

    .main-layout{
        grid-template-columns:1fr;
    }

    .viewer-box iframe{
        height:320px;
    }
}

#panorama{
    width:100%;
    height:520px;
    border-radius:22px;
}

/* REVIEWS */

.reviews-section{
    padding:60px 10%;
    background:#121212;
    text-align:center;
}

.reviews-section h2{
    font-size:55px;
    margin-bottom:50px;
}

.reviews-container{
    display:flex;
    gap:25px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding-top: 10px;
    padding-bottom:10px;
}

.review-card{
    text-align: left;
    background:#1a1a1a;
    position:relative;
    padding:25px;
    border-radius:25px;
    border:1px solid rgba(255,255,255,0.08);
    height: 250px;
    width:340px;
    min-width:340px;  
     padding-top:60px; 

    flex-shrink:0;
}

.review-card:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
}

.review-card p{
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:25px;
    
    max-height:90px;
    overflow-y:auto;

    scrollbar-width:none;
}


.review-card p::-webkit-scrollbar{
    width:6px;
    display: none;
}

.review-card p::-webkit-scrollbar-track{
    background:#111;
    border-radius:10px;
}

.review-card p::-webkit-scrollbar-thumb{
    background:#d4af37;
    border-radius:10px;
}

.review-card p::-webkit-scrollbar-thumb:hover{
    background:#e5bf45;
}

.review-card h4{
    color:#d4af37;
    margin-bottom:5px;
}

.review-card span{
    color:#999;
    font-size:14px;
}

.review-stars{
    position:absolute;
    top:20px;
    right:20px;

    color:#d4af37;
    font-size:18px;
    letter-spacing:2px;
}
@media(max-width:900px){

    .reviews-container{
        grid-template-columns:1fr;
    }

    .reviews-section h2{
        font-size:40px;
    }
}

.review-cta{
    text-align:center;
    margin-top:50px;
}

.review-cta p{
    color:#b8b8b8;
    font-size:18px;
    margin-bottom:20px;
}

.review-popup-btn{
    background:#d4af37;
    color:black;
    border:none;
    padding:16px 35px;
    border-radius:14px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.4s;
}

.review-popup-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(212,175,55,0.3);
}

/* Reviews Scrollbar */

.reviews-container::-webkit-scrollbar{
    height:8px;
}

.reviews-container::-webkit-scrollbar-track{
    background:#1a1a1a;
    border-radius:20px;
}

.reviews-container::-webkit-scrollbar-thumb{
    background:#d4af37;
    border-radius:20px;
}

.reviews-container::-webkit-scrollbar-thumb:hover{
    background:#e5bf45;
}

/* REVIEW POPUP */

.review-popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background:rgba(0,0,0,0.75);

    backdrop-filter:blur(8px);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:9999;
}

.popup-content{
    width:90%;
    max-width:550px;

    background:#1a1a1a;

    padding:40px;

    border-radius:25px;

    border:1px solid rgba(212,175,55,0.3);

    position:relative;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.5);
}

.popup-content h2{
    text-align:center;
    margin-bottom:25px;
    color:#d4af37;
}

.popup-content input,
.popup-content select,
.popup-content textarea{
    width:100%;

    padding:15px;

    margin-bottom:15px;

    border:none;

    border-radius:12px;

    background:#111;

    color:white;

    font-size:15px;
}

.popup-content textarea{
    resize:none;
}

.popup-content button{
    width:100%;

    padding:16px;

    border:none;

    border-radius:12px;

    background:#d4af37;

    color:black;

    font-weight:600;

    cursor:pointer;

    transition:0.3s;
}

.popup-content button:hover{
    transform:translateY(-3px);
}

.close-btn{
    position:absolute;

    top:15px;
    right:20px;

    font-size:32px;

    cursor:pointer;

    color:#d4af37;
}

.star-rating{
    display:flex;
    flex-direction:row-reverse;
    justify-content:center;
    gap:8px;
    margin-bottom:20px;
}

.star-rating input{
    display:none;
}

.star-rating label{
    font-size:38px;
    color:#444;
    cursor:pointer;
    transition:0.3s;
}

/* Hover Effect */

.star-rating label:hover,
.star-rating label:hover ~ label{
    color:#d4af37;
    transform:scale(1.08);
}

/* Selected Stars */

.star-rating input:checked ~ label{
    color:#d4af37;
}
@media (max-width: 768px){

    .navbar{
        height:auto;
        flex-direction:column;
        padding:15px;
        gap:15px;
    }

    .nav-links{
        margin-left:0;
        gap:20px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero{
        padding:120px 20px 40px;
        justify-content:center;
    }

    .hero-content{
        width:100%;
        padding:25px;
        min-height:auto;
    }

    .hero h1{
        font-size:36px;
    }

    .hero-text{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .primary-btn,
    .secondary-btn{
        text-align:center;
    }

    .about{
        grid-template-columns:1fr;
        padding:80px 20px;
    }

    .about-content h2{
        font-size:36px;
    }

    .plots-section{
        padding:80px 20px;
    }

    .plots-container{
        grid-template-columns:1fr;
    }

    .section-header{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

    .section-header h2{
        font-size:36px;
    }

    .contact-section{
        grid-template-columns:1fr;
        padding:80px 20px;
    }

    .contact-left h2{
        font-size:36px;
    }

    .reviews-section h2{
        font-size:36px;
    }

    .review-card{
        width:100%;
        min-width:100%;
    }
}