/* =========================================
   GLOBAL RESET
========================================= */
:root{
    --green: #003013;   /* Change to your preferred green */
}
 *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    font-weight:500;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--green);
    color:#222;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:min(1200px,90%);
    margin:auto;
}


/* =========================================
   FLOATING LOGO
========================================= */

.floating-logo{
    position:fixed;
    top:25px;
    left:30px;
    z-index:999;
}

.floating-logo img{
    width:180px;
    animation:floatLogo 3s ease-in-out infinite;
}


@keyframes floatLogo{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

}



/* =========================================
   HEADER
========================================= */

.site-header{
    position:absolute;
    top:30px;          /* Increase from 0 to 30px */
    right:50px;
    width:auto;
    padding:0;
    z-index:100;
    display:flex;
    justify-content:flex-end;
}



.book-btn{

    background:#c9963b;
    color:white;
    margin-top:-25px;  /* Moves button down */


    padding:14px 28px;

    border-radius:50px;

    font-weight:600;

    display:flex;
    gap:10px;
    align-items:center;

    transition:.3s;

}


.book-btn:hover{

    background:#a87922;
    transform:translateY(-3px);

}



/* =========================================
 HERO SECTION
========================================= */


.hero{

    min-height:100vh;

    background:
    linear-gradient(
        rgba(0,0,0,.25),
        rgba(0,0,0,.35)
    ),
    url("b1.jpg");

    background-size:cover;

    /* Image stays on right side */
    background-position:right center;

    background-repeat:no-repeat;

    display:flex;
    align-items:center;

    padding:60px 50px;

}



/* .hero-inner{

    width:100%;

    display:grid;

    grid-template-columns:800px 1fr;

    gap:70px;

    align-items:center;

} */
.hero-inner{
    width: 100%;
    display: grid;
    grid-template-columns: 850px 1fr;
    gap: 70px;
    align-items: center;
}


.hero-top{
    display: flex;
    justify-content: flex-end;   /* Push content to right */
    align-items: center;
    width: 100%;
}

.hero-info h1{
    font-size: 56px;      /* Reduced from 72px */
    line-height: 1.15;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.hero-info h1 span{
    color: #00b9b5;
    font-weight: 600;
}

.hero-info p{
    max-width: 620px;
    font-size: 17px;      /* Reduced from 19px */
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 45px;
}

.stat h2{
    font-size: 46px;      /* Reduced from 58px */
}

.stat span{
    font-size: 13px;
    letter-spacing: 1.5px;
}

.hero-stats{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;      /* Keeps all items in one line */
    gap: 35px;
    width: 100%;
}

.hero-stats > div{
    flex: 1;
    text-align: left;       /* Change to center if you want centered text */
}

.hero-stats h2{
    margin: 0;
    font-size: 42px;
    color: #00b9b5;
    line-height: 1;
}

.hero-stats span{
    display: block;
    margin-top: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.8);
    white-space: nowrap;    /* Prevents "Plots booked" from breaking */
}



.btn{

    padding:15px 32px;

    border-radius:50px;

    font-weight:600;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    transition:.3s;

}


.btn-primary{

    background:#00b9b5;

    color:#fff;

}



.btn-primary:hover{

    transform:translateY(-4px);

}



.btn-ghost{

    border:2px solid white;

    color:white;

}



.btn-ghost:hover{

    background:white;

    color:#111;

}



/* =========================================
 VISIT FORM
========================================= */
/* ============================
   VISIT FORM
============================ */

/* .visit-form{
    /* width:360px; 
    width: 950px;       Increase to 1000px if needed 
    max-width:100%;
    margin: auto;

    background:#fff;
    padding:14px 18px;
    border-radius:16px;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
    transform:translateY(20px);
} */

.visit-form{
    width: 100%;
    max-width: 850px;
    margin: auto;
    background: #fff;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
    transform: translateY(30px);
}

/* Heading */

.visit-form h2{
    font-size:30px;
    font-weight:700;
    color:#1f3d39;
    margin-bottom:20px;
}

.visit-form p{
    font-size:15px;
    color:#6b7280;
    outline: height 1.3em;;
    margin-bottom:20;
}

/* Form */

.visit-form form{
    display:flex;
    flex-direction:column;
    gap:8px;
}

/* Fields */

.field{
    position:relative;
    width:100%;
    margin-top: 1.5px;
}

.field i{
    position:absolute;
    left:14px;
    top:50%;
    transform:translateY(-50%);
    color:#00b894;
    font-size:15px;
    z-index:2;
}

.field input,
.field select{
    width:100%;
    height:40px;
    padding:0 14px 0 42px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:13px;
    background:#fff;
    outline:none;
    transition:.3s;
}

.field input:focus,
.field select:focus{
    border-color:#00b894;
    box-shadow:0 0 0 3px rgba(0,184,148,.15);
}

.field select{
    -webkit-appearance:none;
    appearance:none;
    cursor:pointer;
}

/* form grid */
.form-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:20px;
}

.field{
    position:relative;
    width:100%;
}

/* Make inputs/selects fill column */
.field input,
.field select{
    width:100%;
    box-sizing:border-box;
}

/* Mobile */
@media (max-width:768px){
    .form-grid{
        grid-template-columns:1fr;
    }
}

/* Button */

.submit-area{
    margin-top:4px;
}

.visit-form .btn{
    width:100%;
    height:40px;
    border:none;
    border-radius:8px;
    background:#00b9b5;
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.visit-form .btn:hover{
    background:#009e99;
}

.visit-form .btn i{
    margin-right:8px;
}

/* Message */

#form-message{
    display:none;
    margin-top:10px;
    text-align:center;
    font-size:14px;
    font-weight:600;
}

#form-message.success{
    display:block;
    color:#28a745;
}

#form-message.error{
    display:block;
    color:#dc3545;
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width:992px){

    .visit-form{
        width:340px;
        transform:translateY(20px);
    }

}

@media (max-width:576px){

    .visit-form{
        width:100%;
        max-width:340px;
        padding:18px;
        transform:translateY(0);
    }

    .visit-form h2{
        font-size:24px;
    }

    .visit-form p{
        font-size:13px;
    }

}


/* partner label */
.partner-label {
    position: absolute;
    top: 85px;
    left: 40px;
    z-index: 9999;
    color: white;
}

.partner-label::after{
    content:"";
    display:block;
    width:0;
    height:2px;
    background:#2AD2C9;
    margin-top:6px;
    transition:width .35s ease;
}

.partner-label:hover{
    color:#2AD2C9;
    letter-spacing:3px;
}

.partner-label:hover::after{
    width:100%;
}
/* plot booked Section */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,Helvetica,sans-serif;
}

body{
    background:#f7f6f3;
}

.price-wrapper{
    width:100%;
    padding:40px 20px 70px;
    text-align:center;
}

/* Card */

.price-card{
    max-width:1080px;
    margin:auto;
    background:#fff;
    border:2px solid #c79a35;
    border-radius:24px;
    padding:38px 45px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* Each Side */

.price-box{
    display:flex;
    align-items:center;
    gap:28px;
    flex:1;
}

.icon{
    font-size:52px;
    color:#222;
}

.icon .fa-arrow-trend-up{
    color:#c79a35;
}

.divider{
    width:1px;
    height:90px;
    background:#d3b06a;
    margin:0 45px;
}

/* Text */

.label{
    display:block;
    font-size:14px;
    letter-spacing:2px;
    color:#555;
    font-weight:700;
    margin-bottom:8px;
}

.price{
    display:flex;
    align-items:flex-end;
    gap:8px;
}

.amount{
    font-size:56px;
    font-weight:800;
    color:#111;
    line-height:1;
}

.amount sup{
    font-size:18px;
    top:-20px;
    position:relative;
}

.unit{
    font-size:20px;
    color:#444;
    margin-bottom:6px;
}

/* Bottom Text */

.remain{
    margin-top:28px;
    color:#333;
    font-size:18px;
}

.remain i{
    color:#c79a35;
    margin-right:8px;
}

.remain strong{
    font-size:34px;
    color:#111;
}

/* Ribbon */

.booked-ribbon{
    display:inline-block;
    margin-top:28px;
    background:#ff5656;
    color:#fff;
    font-size:22px;
    font-weight:700;
    letter-spacing:1px;
    padding:18px 48px;
    position:relative;
    text-transform:uppercase;
}

.booked-ribbon:before,
.booked-ribbon:after{
    content:"";
    position:absolute;
    top:0;
    width:0;
    height:0;
    border-top:33px solid transparent;
    border-bottom:33px solid transparent;
}

.booked-ribbon:before{
    left:-18px;
    border-right:18px solid #ff5656;
}

.booked-ribbon:after{
    right:-18px;
    border-left:18px solid #ff5656;
}

/* Responsive */

@media(max-width:768px){

.price-card{
    flex-direction:column;
    gap:35px;
    padding:30px;
}

.divider{
    width:100%;
    height:1px;
    margin:10px 0;
}

.price-box{
    justify-content:center;
}

.amount{
    font-size:42px;
}

.unit{
    font-size:16px;
}

.booked-ribbon{
    font-size:18px;
    padding:15px 34px;
}

}

/* =========================================
   STATS SECTION
========================================= */
/*==========================
PLOT SECTION
==========================*/

.plot-section{
    padding:90px 20px;
    background:#fafaf8;
    position:relative;
    overflow:hidden;
}

/* Background Pattern */

.plot-section::before{

    content:"";
    position:absolute;
    inset:0;

    background-image:

    radial-gradient(circle at 20% 20%,rgba(0,0,0,.03) 2px,transparent 2px),
    radial-gradient(circle at 80% 80%,rgba(0,0,0,.03) 2px,transparent 2px);

    background-size:220px 220px;

    opacity:.5;
}

.plot-container{

    max-width:1400px;
    margin:auto;
    position:relative;
    z-index:2;
}

.plot-tag{

    display:block;
    text-align:center;
    font-size:14px;
    letter-spacing:3px;
    color:#00b9b5;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:18px;
}

.plot-tag::before{

    content:"";
    width:35px;
    height:2px;
    background:#00b9b5;
    display:inline-block;
    margin-right:10px;
    vertical-align:middle;
}

.plot-heading{

    text-align:center;
    font-size:58px;
    font-weight:300;
    color:#173f39;
    margin-bottom:20px;
    line-height:1.2;
}

.plot-heading strong{

    font-weight:700;
}

.plot-subtitle{

    text-align:center;
    max-width:720px;
    margin:0 auto 55px;
    color:#666;
    font-size:22px;
    line-height:1.7;
}

/*==========================
GRID
==========================*/

.plot-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

/*==========================
CARD
==========================*/

.plot-card{

    background:#fff;
    border:2px solid #00b9b5;
    border-radius:20px;
    height:240px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    position:relative;
    transition:.35s;

    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.plot-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.plot-card h3{

    font-size:66px;
    line-height:1;
    color:#173f39;
    margin-bottom:10px;
    font-weight:700;
}

.plot-card span{

    font-size:18px;
    color:#777;
    margin-bottom:28px;
}

.plot-card p{

    font-size:20px;
    color:#00b9b5;
    font-weight:700;
}

/*==========================
BADGE
==========================*/

.card-badge{
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);

    background: #00b9b5;
    color: #fff;

    width: 160px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}

.premium{

    border-color:#173f39;
}

.premium-badge{

    background:#173f39;
}

/*==========================
BUTTON
==========================*/

.plot-btn{

    display:table;

    margin:60px auto 0;

    background:#00b9b5;

    color:#fff;

    text-decoration:none;

    padding:20px 55px;

    border-radius:10px;

    font-size:18px;

    font-weight:700;

    transition:.3s;
}

.plot-btn:hover{

    background:#173f39;
}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:1200px){

.plot-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.plot-heading{

font-size:38px;

}

.plot-subtitle{

font-size:18px;

margin-bottom:40px;

}

.plot-grid{

grid-template-columns:1fr;

}

.plot-card{

height:220px;

}

.plot-card h3{

font-size:54px;

}

.plot-btn{

width:100%;

text-align:center;

padding:18px;

}

}


/* ==========================
   AMENITIES SECTION
========================== */

.amenities{
    background:#f8f7f3;
    padding:90px 20px;
}

.amenities .container{
    max-width:1200px;
    margin:auto;
}

/* Heading */

.section-head{
    max-width:700px;
    margin:0 auto 60px;
}

.section-head.center{
    text-align:center;
}

.section-head span{
    display:inline-block;
    color:#00b9b5;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:14px;
}

.section-head h2{
    font-size:46px;
    line-height:1.2;
    font-weight:600;
    color:#00b9b5;
    margin-bottom:18px;
}

.section-head p{
    font-size:18px;
    color:#666;
    line-height:1.8;
}

.section-head p b{
    font-weight:500;
}

/* Grid */

.amenity-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

/* Card */

/* .amenity-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.4s ease;
    cursor:pointer;
} */
 .amenity-card{
    background:#fff;
    border:3px solid #00b9b5;  /* 3px border */
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.4s ease;
    cursor:pointer;
}

.amenity-card h3{
    padding:20px;
    font-size:22px;
    font-weight:600;
    color:#00b9b5;
    text-align:center;

    /* Keep text in one line */
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}s

.amenity-card:hover{
    transform:translateY(-10px);
    box-shadow:0 22px 45px rgba(0,0,0,.16);
}

/* Image */

.amenity-card img{
    width:100%;
    height:233px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.amenity-card:hover img{
    transform:scale(1.08);
}

/* Title */

.amenity-card h3{
    padding:22px;
    font-size:22px;
    font-weight:600;
    color:#00b9b5;
    line-height:1.4;
    text-align:center;
    transition:.3s;
}

.amenity-card:hover h3{
    color:#0d7f76;
}

/* Tablet */

@media(max-width:991px){

    .section-head h2{
        font-size:36px;
    }

    .amenity-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .amenity-card img{
        height:220px;
    }

}

/* Mobile */

@media(max-width:767px){

    .amenities{
        padding:70px 18px;
    }

    .section-head{
        margin-bottom:40px;
    }

    .section-head h2{
        font-size:30px;
    }

    .section-head p{
        font-size:16px;
    }

    .amenity-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .amenity-card img{
        height:240px;
    }

    .amenity-card h3{
        font-size:20px;
    }

}
/* =========================================
 LOCATION SECTION
========================================= */

 .location-band{
    padding:90px 0;
    background:#fafaf8;
    color:#00b9b5;
}

.location-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
}

.location-inner h2{
    font-size:42px;
    line-height:1.2;
    margin-top:15px;
    color:#00b9b5;
}

.location-inner p{
    max-width:700px;
    line-height:1.8;
    color:#666;
}

.location-points{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:35px;
}

.location-points span{
    padding:12px 22px;
    border-radius:50px;

    background:#fff;
    border:2px solid #00b9b5;

    color:#666;

    transition:0.3s;
    cursor:pointer;
}

.location-points span:hover{
    background:#00b9b5;
    border-color:#00b9b5;
    color:#fff;
}

/*==============================
        PHOTO GALLERY
==============================*/

.photo-gallery{
    width:100%;
    padding:90px 0;
    background:white;

}

.gallery-container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.gallery-header{
    margin-bottom:60px;
}

.gallery-subtitle{
    display:flex;
    align-items:center;
    gap:15px;
    font-size:18px;
    color:#00b9b5;
    font-weight:500;
    margin-bottom:20px;
}

.gallery-subtitle .line{
    width:90px;
    height:2px;
    display:inline-block;
}

.gallery-header h2{
    font-size:58px;
    font-weight:300;
    line-height:1.2;
    color:#00b9b5;
    max-width:1100px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery-item{
    overflow:hidden;
    border-radius:8px;
    cursor:pointer;
}

.gallery-item img{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/*==============================
        Responsive
==============================*/

@media(max-width:991px){

.gallery-header h2{
    font-size:42px;
}

.gallery-grid{
    grid-template-columns:repeat(2,1fr);
}

.gallery-item img{
    height:320px;
}

}

@media(max-width:768px){

.gallery-header h2{
    font-size:32px;
}

.gallery-grid{
    grid-template-columns:1fr;
}

.gallery-item img{
    height:280px;
}

.gallery-subtitle{
    font-size:16px;
}

.gallery-subtitle .line{
    width:60px;
}

}
/*=========================================
INVESTMENT SECTION
=========================================*/

.investment-section{

    background:#fafaf8;

    padding:100px 8%;

    position:relative;

    overflow:hidden;

}

.investment-section::before{

    content:"";

    position:absolute;

    width:550px;
    height:550px;

    background:rgba(255,255,255,.04);

    border-radius:50%;

    top:-220px;
    left:-180px;

}

.investment-section::after{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    background:rgba(255,255,255,.03);

    border-radius:50%;

    bottom:-180px;
    right:-150px;

}

.investment-container{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

    position:relative;

    z-index:2;

}

.investment-tag{

    display:inline-block;

    padding:10px 24px;

    border-radius:40px;

    background:rgba(255,255,255,.12);

    color:#00b9b5;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:20px;

    backdrop-filter:blur(10px);

}

.investment-left h2{

    color:white;
    font-size:48px;
    line-height:1.2;
    font-weight:600;
    color:#1f1f1f;
    margin:0;
}



.investment-left p{

    color:#00b9b5;

    line-height:1.9;

    font-size:17px;

    margin-bottom:20px;

}

.investment-right{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    border-radius:25px;

    padding:40px;

    backdrop-filter:blur(18px);

}

.investment-right h3{

    color:#00b9b5;

    font-size:34px;

    margin-bottom:30px;

    text-align:center;

}

.highlight-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

}

.highlight-card{

    background:#00b9b5;

    border:1px solid rgba(255,255,255,.10);

    padding:18px 18px;

    border-radius:15px;

    color:#fff;

    font-size:15px;

    line-height:1.6;

    transition:.4s;

    cursor:pointer;

}

.highlight-card:hover{

    transform:translateY(-8px);

    background:white;

    color:#00b9b5;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

}

@media(max-width:991px){

.investment-container{

    grid-template-columns:1fr;

}

.investment-left{

    text-align:center;

}

.investment-left h2{

    font-size:38px;

}

.highlight-grid{

    grid-template-columns:1fr;

}

}

@media(max-width:576px){

.investment-section{

    padding:70px 20px;

}

.investment-left h2{

    font-size:30px;

}

.investment-right{

    padding:25px;

}

.investment-right h3{

    font-size:28px;

}

.highlight-card{

    font-size:14px;

}

}

:root{
    --teal:#00bbb4;
    --forest:#0e2b23;
    --slate:#6b7280;
}

/* Section */
.rera-section{
    background:#f5f5f3;
    padding:50px 20px;
    border-top:1px solid #e8e8e5;
}

.rera-container{
    max-width:1100px;
    margin:auto;
}

/* Header */
.rera-header{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:28px;
}

.rera-icon{
    width:36px;
    height:36px;
    border-radius:8px;
    background:rgba(0,187,180,.1);
    border:1px solid rgba(0,187,180,.2);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--teal);
}

.rera-title{
    font-size:11px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    color:var(--teal);
}

.rera-subtitle{
    margin-top:4px;
    font-size:12px;
    color:var(--slate);
}

/* Card */
.rera-card{
    background:#fff;
    border:1px solid #e8e8e5;
    border-radius:14px;
    padding:28px;
    display:grid;
    grid-template-columns:1fr auto;
    gap:40px;
    align-items:start;
}

/* Details */
.rera-details{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.detail span{
    display:block;
    margin-bottom:6px;
    font-size:10px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#8b8b8b;
}

.detail h4{
    font-size:14px;
    color:var(--forest);
    font-weight:700;
    letter-spacing:1px;
}

.detail p{
    font-size:13px;
    color:#222;
    line-height:1.5;
}

/* QR */
.rera-qr{
    text-align:center;
}

.rera-qr img{
    width:120px;
    height:120px;
    border:1px solid #e8e8e5;
    border-radius:8px;
    display:block;
    margin:auto;
}

.rera-qr p{
    margin-top:10px;
    font-size:10px;
    color:var(--slate);
    line-height:1.4;
}

/* Disclaimer */
.rera-note{
    margin-top:18px;
    max-width:900px;
    font-size:11px;
    line-height:1.7;
    color:#98a1aa;
}

/* Responsive */
@media (max-width:768px){

    .rera-card{
        grid-template-columns:1fr;
        text-align:center;
    }

    .rera-details{
        grid-template-columns:repeat(2,1fr);
    }

    .rera-qr{
        margin:auto;
    }
}

@media (max-width:480px){

    .rera-details{
        grid-template-columns:1fr;
    }

    .rera-header{
        align-items:flex-start;
    }
}

/* =========================================
   FOOTER
========================================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}



/* ================= RERA ================= */


.rera-section{

    background:#f5f5f3;
    padding:48px 24px;

}


.rera-container{

    max-width:1100px;
    margin:auto;

}


.rera-heading{

    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:28px;

}


.rera-icon{

    width:36px;
    height:36px;
    border-radius:8px;
    background:rgba(0,187,180,.1);
    border:1px solid rgba(0,187,180,.2);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#00bbb4;

}


.rera-heading h4{

    font-size:11px;
    letter-spacing:.18em;
    color:#00bbb4;

}


.rera-heading p{

    font-size:12px;
    color:#555;

}



.rera-box{

    background:#fff;
    border:1px solid #e8e8e5;
    border-radius:14px;
    padding:28px;

    display:grid;
    grid-template-columns:1fr auto;
    gap:40px;

}



.rera-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;

}


.rera-item h5{

    font-size:10px;
    letter-spacing:.12em;
    color:#777;
    margin-bottom:5px;

}


.rera-item p{

    font-size:13px;
    color:#222;

}


.bold{

    font-weight:700;
    color:#0e2b23!important;

}



.qr img{

    width:120px;
    height:120px;

}


.qr p{

    font-size:10px;
    text-align:center;
    color:#777;

}





/* ================= FOOTER ================= */


.footer{

    background:#0e2b23;
    color:white;
    padding:56px 24px 32px;

}


.footer-container{

    max-width:1200px;
    margin:auto;

}


.footer-grid{

    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:48px;

    padding-bottom:48px;
    border-bottom:1px solid rgba(255,255,255,.08);

}



.logo-box{

    background:white;
    display:inline-block;
    padding:8px 14px;
    border-radius:8px;
    margin-bottom:16px;

}


.logo-box img{

    width:100px;

}



.footer-desc{

    font-size:13px;
    color:rgba(255,255,255,.55);
    line-height:1.7;
    max-width:340px;

}



.part{

    display:flex;
    align-items:center;
    gap:10px;

}


.part span{

    font-size:11px;
    color:rgba(255,255,255,.35);

}


.part img{

    height:20px;
    filter:brightness(0) invert(1);
}



.footer-title{

    color:#2AD2C9;
    font-size:11px;
    letter-spacing:.15em;
    margin-bottom:16px;

}



.footer-text{

    color:rgba(255,255,255,.65);
    font-size:13px;
    line-height:1.7;

}



.footer-links{

    display:flex;
    flex-direction:column;
    gap:10px;

}



.footer-links a{

    color:rgba(255,255,255,.6);
    text-decoration:none;
    font-size:13px;

}



.footer-bottom{
    color:#00b9b5;
    margin-top:28px;
    display:flex;
    justify-content:space-between;

}


.footer-bottom p{

    font-size:12px;
    color:rgba(255,255,255,.4);

}


.small{

    font-size:11px!important;

}

/* ---------- Links ---------- */

.footer-links ul{
    list-style:none;
}

.footer-links li{
    margin-bottom:16px;
}

.footer-links a{
   color:rgba(255,255,255,.55);
    transition:.3s;
}

.footer-links a:hover{
    color:#00b9b5;
    padding-left:8px;
}

/* ---------- Bottom ---------- */

.footer-bottom{
    
    margin-top:60px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.15);

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-bottom p{
   color:rgba(255,255,255,.55);
    font-size:16px;
}
.developer-credit{
    position:relative;
    top:-9px;
    text-align:center;
    font-size:15px;
    color:#333; /* Change to #333 if your footer has a white background */
    margin-top:20px;
    line-height:1.6;
}

.developer-credit a{
    color:#f7d58d;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.developer-credit a:hover{
    color:#00b9b5;
    text-decoration:underline;
}
/* ---------- Social Icons ---------- */

.social{
    display:flex;
    gap:15px;
}

.social a{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#00b9b5;

    display:flex;
    align-items:center;
    justify-content:center;
    border:3px solid #c9963b;
    color:#fff;
    font-size:20px;
    transition:.3s;
}

.social a:hover{
    background:#c9963b;
    transform:translateY(-5px);
}


#backToTop{
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #00b9b5;
    color: #fff;
    border: 3px solid goldenrod;   /* Border */
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .3s ease;
    z-index: 999;
}

#backToTop.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover{
    background: #fff;
    color: #00b9b5;
    border-color: #00b9b5;
    transform: translateY(-4px);
}


/* Mobile */

@media(max-width:576px){

    #backToTop{
        width:45px;
        height:45px;
        right:20px;
        bottom:20px;
        font-size:22px;
    }

}

@media(max-width:768px){

.footer-grid,
.rera-box{

    grid-template-columns:1fr;

}


.rera-grid{

    grid-template-columns:repeat(2,1fr);

}


.footer-bottom{

    flex-direction:column;

}

}



@media(max-width:480px){

.rera-grid{

    grid-template-columns:1fr;

}

}


/* =========================================
   RESPONSIVE DESIGN
========================================= */


@media(max-width:1100px){


.hero-inner{

    grid-template-columns:1fr;

}



.visit-form{

    max-width:450px;

}



.stats{

    grid-template-columns:repeat(2,1fr);

}



.card-grid{

    grid-template-columns:repeat(2,1fr);

}



.amenity-grid{

    grid-template-columns:repeat(2,1fr);

}



.about-grid,
.overview-grid{

    grid-template-columns:1fr;

}



.location-inner{

    flex-direction:column;

    align-items:flex-start;

}



.footer-grid{

    grid-template-columns:1fr 1fr;

}


}




@media(max-width:700px){


.floating-logo{

    left:15px;

    top:15px;

}


.floating-logo img{

    width:70px;

}



.hero{

    padding:100px 20px 50px;

}



.hero-actions{

    flex-direction:column;

}



.stats{

    padding:50px 20px;

    grid-template-columns:1fr;

}



.stat{

    height:220px;

}



.about,
.highlights,
.overview,
.amenities{

    padding:70px 0;

}



.about-copy h2,
.overview-copy h2,
.section-head h2,
.location-inner h2{

    font-size:30px;

}



.feature-grid{

    grid-template-columns:1fr;

}



.card-grid{

    grid-template-columns:1fr;

}



.amenity-grid{

    grid-template-columns:1fr;

}



.image-panel img{

    height:350px;

}



.footer-grid{

    grid-template-columns:1fr;

}



.footer-bottom{

    flex-direction:column;

    gap:20px;

    text-align:center;

}


}


/* =========================================
   EXTRA ANIMATIONS
========================================= */


.info-card,
.amenity-card,
.stat,
.overview-item{

    animation:fadeUp .8s ease forwards;

}



@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }


    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ------------------------------------------------------------------------------------- */

/* =====================================================
   FINAL RESPONSIVE FIX - LOK8 BROOKSIDE
   Desktop + Laptop + Tablet + Mobile
===================================================== */


/* ===============================
   LARGE DESKTOP (1600px+)
================================ */

@media (min-width:1600px){

    .hero{
        padding-left:8%;
        padding-right:8%;
    }


    .hero-info h1{
        font-size:64px;
    }


    .hero-inner{
        max-width:1500px;
        margin:auto;
    }


    .visit-form{
        width:420px;
    }


    .plot-heading,
    .gallery-header h2{
        font-size:64px;
    }

}



/* ===============================
   LAPTOP (1200px - 1599px)
================================ */

@media (max-width:1400px){

    .hero{
        padding:60px 40px;
    }


    .hero-inner{
        grid-template-columns:380px 1fr;
        gap:45px;
    }


    .hero-info h1{
        font-size:50px;
    }


    .hero-stats{
        gap:20px;
    }


    .visit-form{
        width:340px;
        padding:30px;
    }


    .plot-grid{
        grid-template-columns:repeat(4,1fr);
        gap:20px;
    }


    .amenity-grid{
        gap:20px;
    }


    .footer-grid{
        gap:30px;
    }

}





/* ===============================
   SMALL LAPTOP / TABLET LANDSCAPE
   992px - 1199px
================================ */

@media(max-width:1199px){


    .hero{
        min-height:auto;
        padding:120px 35px 70px;
    }


    .hero-inner{
        grid-template-columns:1fr;
        gap:50px;
    }


    .hero-info{
        text-align:center;
    }


    .hero-info p{
        margin-left:auto;
        margin-right:auto;
    }


    .hero-stats{
        justify-content:center;
    }


    .hero-stats > div{
        text-align:center;
    }


    .visit-form{
        margin:0 auto;
    }



    .plot-grid{
        grid-template-columns:repeat(2,1fr);
    }



    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }



    .investment-container{
        gap:40px;
    }



    .investment-left h2{
        font-size:40px;
    }



    .rera-card{
        grid-template-columns:1fr;
    }



    .rera-qr{
        margin:auto;
    }


}






/* ===============================
   TABLET
   768px - 991px
================================ */

@media(max-width:991px){


    .floating-logo img{
        width:110px;
    }



    .site-header{
        top:25px;
        right:25px;
    }



    .book-btn{
        padding:12px 22px;
        font-size:14px;
    }




    .hero{
        padding:130px 25px 70px;
    }




    .hero-info h1{
        font-size:42px;
    }




    .hero-info p{
        font-size:16px;
    }




    .hero-stats{
        flex-wrap:wrap;
        gap:30px;
    }




    .hero-stats > div{
        flex:0 0 45%;
    }





    .price-card{
        flex-direction:column;
    }




    .divider{
        width:100%;
        height:1px;
    }





    .amenity-grid{
        grid-template-columns:repeat(2,1fr);
    }




    .location-inner{
        flex-direction:column;
    }





    .gallery-grid{
        grid-template-columns:1fr 1fr;
    }




    .highlight-grid{
        grid-template-columns:1fr;
    }




    .footer-grid{
        grid-template-columns:1fr 1fr;
    }


}






/* ===============================
   MOBILE
   576px - 767px
================================ */

@media(max-width:767px){


body{
    overflow-x:hidden;
}



.container{
    width:92%;
}





.floating-logo{
    top:15px;
    left:15px;
}


.floating-logo img{
    width:75px;
}




.site-header{
    top:20px;
    right:15px;
}




.book-btn{
    padding:10px 16px;
    font-size:12px;
}




.hero{
    padding:120px 18px 50px;
    background-position:center;
}




.hero-info h1{
    font-size:34px;
    line-height:1.25;
}




.hero-info p{
    font-size:15px;
    line-height:1.6;
}





.hero-stats{
    gap:25px;
}




.hero-stats > div{
    flex:0 0 100%;
    text-align:center;
}




.hero-stats h2{
    font-size:34px;
}





.visit-form{

    width:100%;
    padding:25px;

}



.visit-form h2{
    font-size:24px;
}




.field input{
    height:45px;
    font-size:15px;
}





.price-wrapper{
    padding:40px 15px;
}



.amount{
    font-size:38px;
}





.plot-section{
    padding:60px 15px;
}



.plot-heading{
    font-size:32px;
}



.plot-subtitle{
    font-size:16px;
}




.plot-grid{
    grid-template-columns:1fr;
}




.plot-card h3{
    font-size:48px;
}





.section-head h2,
.gallery-header h2{
    font-size:32px;
}




.amenities{
    padding:60px 15px;
}




.amenity-grid{
    grid-template-columns:1fr;
}




.amenity-card img{
    height:230px;
}





.location-band{
    padding:60px 20px;
}




.location-inner h2{
    font-size:30px;
}





.gallery-grid{
    grid-template-columns:1fr;
}




.gallery-item img{
    height:280px;
}





.investment-section{
    padding:60px 20px;
}



.investment-left h2{
    font-size:30px;
}




.investment-right{
    padding:20px;
}




.rera-section{
    padding:40px 15px;
}




.rera-box{
    padding:20px;
}





.footer{
    padding:45px 18px 25px;
}



.footer-grid{
    grid-template-columns:1fr;
    gap:35px;
}




.social a{
    width:42px;
    height:42px;
}



}







/* ===============================
   SMALL MOBILE
   iPhone SE / 375px
================================ */

@media(max-width:375px){


.hero-info h1{
    font-size:30px;
}



.hero-info p{
    font-size:14px;
}



.visit-form{
    padding:20px;
}



.visit-form h2{
    font-size:22px;
}



.hero-stats h2{
    font-size:30px;
}



.amount{
    font-size:32px;
}



.plot-heading,
.gallery-header h2,
.section-head h2{
    font-size:28px;
}



.booked-ribbon{
    font-size:15px;
    padding:14px 25px;
}



.footer-bottom p{
    font-size:12px;
}



}



/* ===============================
   REMOVE HORIZONTAL SCROLL
================================ */

html,
body{
    max-width:100%;
    overflow-x:hidden;
}


img{
    height:auto;
}
/* ---------------------------------------------

/* =====================================================
   iPAD + TABLET OPTIMIZATION
   iPad Pro | iPad Air | iPad Mini | Android Tabs
===================================================== */


/* ==============================
   iPad Pro Landscape
   1024px - 1199px
================================ */

@media (min-width:1024px) and (max-width:1199px){

    .hero{
        padding:100px 40px 70px;
    }


    .hero-inner{
        grid-template-columns:360px 1fr;
        gap:40px;
    }


    .hero-info h1{
        font-size:48px;
    }


    .hero-info p{
        font-size:16px;
    }


    .visit-form{
        width:340px;
    }


    .hero-stats{
        gap:20px;
    }


    .hero-stats h2{
        font-size:36px;
    }


    .plot-grid{
        grid-template-columns:repeat(2,1fr);
    }


    .amenity-grid{
        grid-template-columns:repeat(3,1fr);
    }


    .gallery-grid{
        grid-template-columns:repeat(3,1fr);
    }


}





/* ==============================
   iPad Portrait
   768px - 1023px
================================ */

@media (min-width:768px) and (max-width:1023px){


    .floating-logo img{
        width:100px;
    }



    .site-header{
        top:25px;
        right:30px;
    }



    .hero{

        min-height:auto;
        padding:130px 40px 80px;

    }



    .hero-inner{

        grid-template-columns:1fr;
        text-align:center;

    }



    .hero-info h1{

        font-size:44px;

    }




    .hero-info p{

        max-width:650px;
        margin-left:auto;
        margin-right:auto;

    }




    .hero-stats{

        justify-content:center;
        flex-wrap:wrap;

    }



    .hero-stats > div{

        flex:0 0 40%;
        text-align:center;

    }



    .visit-form{

        margin:40px auto 0;
        width:380px;

    }





    /* Plot */

    .plot-grid{

        grid-template-columns:repeat(2,1fr);

    }




    .plot-card{

        height:230px;

    }





    /* Amenities */

    .amenity-grid{

        grid-template-columns:repeat(2,1fr);

    }




    /* Location */

    .location-inner{

        flex-direction:column;
        text-align:center;

    }




    .location-points{

        justify-content:center;

    }




    /* Gallery */

    .gallery-grid{

        grid-template-columns:repeat(2,1fr);

    }





    /* Investment */

    .investment-container{

        grid-template-columns:1fr;

        text-align:center;

    }



    .highlight-grid{

        grid-template-columns:repeat(2,1fr);

    }





    /* Footer */

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

    }


}






/* ==============================
   SMALL TABLETS
   600px - 767px
================================ */

@media(min-width:600px) and (max-width:767px){


    .hero-info h1{
        font-size:38px;
    }



    .hero-stats > div{

        flex:0 0 45%;

    }



    .visit-form{

        width:420px;
        max-width:100%;

    }



    .amenity-grid{

        grid-template-columns:repeat(2,1fr);

    }



    .gallery-grid{

        grid-template-columns:repeat(2,1fr);

    }


}






/* ==============================
   iPAD TOUCH IMPROVEMENTS
================================ */


@media (pointer:coarse){


    .btn,
    .book-btn,
    .plot-btn{

        min-height:48px;

    }



    .field input{

        height:52px;

    }



    .social a{

        width:48px;
        height:48px;

    }


}



/* ==============================
   LANDSCAPE TABLET FIX
================================ */

@media(min-width:768px) and (orientation:landscape){


    .hero{

        min-height:100vh;

    }



    .hero-inner{

        align-items:center;

    }



    .visit-form{

        margin-top:40px;

    }


}