:root {
    --primary: #2F6F5E;
    --dark:  #1E4D3E;
    --gold: #C8A96A;
    --light: #f8f8f8;
}


body { font-family: 'Poppins', sans-serif; color: #333; background: #fff; }

/* RERA STRIP */

.rera-strip {
    background: var(--dark);
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 14px;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0B3D2E;
    padding: 18px 50px;
    z-index: 999999;
    display: flex;
    align-items: center;
}

.header-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
}





.site-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: #0B3D2E;
    padding: 30px;
    transition: 0.4s;
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: flex-end;
}

.close-btn {
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.sidebar ul li {
    margin-bottom: 20px;
}

.sidebar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.hamburger {
    cursor: pointer;
    z-index: 2000;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    margin: 6px 0;
    border-radius: 3px;
    transition: 0.3s;
}



/* HERO */

/* ================= HERO SECTION ================= */

.hero {
    position: relative;
    min-height: 85vh;
    /* height reduced */
    display: flex;
    align-items: center;
    padding-top: 90px;
    /* header spacing reduced */
    background: url('image/g2.png') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 38, 29, 0.6), rgba(11, 61, 46, 0.5));
}


.hero .container {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-row {
    align-items: center;
}

/* LEFT CONTENT */

.hero-left h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 25px;
}

.launch-badge {
    background: #C8A96A;
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-rating {
    margin: 15px 0;
    font-size: 16px;
    color: #FFD700;
}

.hero-rating span {
    color: #fff;
    margin-left: 10px;
}

.hero-cta {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* GOLD BUTTON */

.btn-gold {
    background: #C8A96A;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-gold:hover {
    background: #b89555;
    color: #fff;
}

.call-premium {
    background: transparent;
    border: 2px solid #C8A96A;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.call-premium i {
    background: #C8A96A;
    color: #fff;
    padding: 8px;
    border-radius: 50%;
    font-size: 14px;
}

.call-premium:hover {
    background: #C8A96A;
    color: #000;
}

/* ================= HERO FORM ================= */

.hero-form {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 25px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    margin-left: auto;
}


.hero-form h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    color: #0B3D2E;
    font-size: 22px;
    text-align: center;
}

.form-group {
    margin-bottom: 18px;
}

.hero-form input,
.hero-form select {
    width: 100%;
    padding: 10px 14px;
    border-radius: 50px;
    border: 1px solid #e0e0e0;
    outline: none;
    font-size: 13px;
    transition: 0.3s;
}

.hero-form input:focus,
.hero-form select:focus {
    border-color: #C8A96A;
    box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.2);
}

.enquiry-btn {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, #C8A96A, #b89555);
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}

.enquiry-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.privacy-text {
    margin-top: 12px;
    font-size: 12px;
    text-align: center;
    color: #777;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px) {

    .hero-left h1 {
        font-size: 36px;
    }

    .hero-form {
        margin: 40px auto 0;
    }

}

/* SECTIONS */

.section {
    padding: 80px 0;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 30px;
}

/* OVERVIEW */

.overview-img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transition: 0.4s;
}

.overview-img:hover {
    transform: scale(1.03);
}

.overview-points {
    margin-top: 20px;
}

.overview-points li {
    margin-bottom: 10px;
}



.overview-img:hover {
    transform: scale(1.03);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}


/* TABLE */

table {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-section {
    background: #f9f9f9;
}

.pricing-sub {
    color: #666;
    font-size: 15px;
}

.price-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: 0.4s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.price-card h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    color: #0B3D2E;
}

.price-card .area {
    color: #777;
    margin-bottom: 15px;
}

.price-card .price {
    font-size: 22px;
    color: #C8A96A;
    margin-bottom: 10px;
}

.price-card .eoi {
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
}

.price-card.featured {
    border: 2px solid #C8A96A;
}

.price-card .tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #C8A96A;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
}

/* AMENITIES */

.amenity-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}

.amenity-card:hover {
    transform: translateY(-10px);
}

.amenity-content {
    padding: 20px;
}

.amenity-card img {
    width: 100%;
    height: auto;
    border-radius: 15px 15px 0 0;
}


/* HIGHLIGHTS */

/* ===== PREMIUM HIGHLIGHTS ===== */

.highlights-premium {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f3c2d, #134d3a);
    color: #fff;
    position: relative;
}

.highlight-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 15px;
}

.gold-divider {
    width: 80px;
    height: 4px;
    background: #C8A96A;
    margin: 15px auto 40px;
    border-radius: 4px;
}

.highlight-premium-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.highlight-premium-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.highlight-premium-card h3 {
    font-size: 48px;
    color: #C8A96A;
    font-weight: 700;
    margin-bottom: 10px;
}

.highlight-premium-card span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.highlight-premium-card p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.6;
}

@media(max-width:768px) {
    .highlight-title {
        font-size: 30px;
    }

    .highlight-premium-card h3 {
        font-size: 36px;
    }
}

/* GALLERY */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

@media(max-width:992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 1;
    }
}

@media(max-width:576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* FLOOR */
.master-plan-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.master-plan-img {
    width: 100%;
    display: block;
    filter: blur(6px);
    transition: 0.4s ease;
}

.plan-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

.unlock-btn {
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #C8A96A, #b89555);
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}

.unlock-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}


#floorplan img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gold-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #C8A96A, #b89555);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: 0.3s ease;
    border: none;
}

.gold-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #d6b87a, #b89555);
    color: #fff;
}


/* LOCATION */

.location-list {
    list-style: none;
    padding: 0;
}

.location-list li {
    margin-bottom: 15px;
    font-size: 16px;
}

.location-img {
    border-radius: 20px;
}

/* CONTACT */

#contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f3c2d, #134d3a);
    color: #fff;
}

/* FORM WRAPPER */
.contact-form-wrapper {
    margin-top: 40px;
}

/* INPUT STYLE */
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
}

/* PLACEHOLDER */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

/* TEXTAREA */
.contact-form textarea {
    height: 110px;
    resize: none;
}

/* FOCUS */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #C8A96A;
    box-shadow: 0 0 0 2px rgba(200, 169, 106, 0.3);
}

/* BUTTON */
.contact-btn {
    background: #C8A96A;
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background: #b89555;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

@media(max-width:768px) {
    .contact-btn {
        width: 100%;
    }
}


/* FOOTER */

.footer-section {
    background: var(--dark);
    color: #ccc;
    padding: 80px 0 40px;
}

.footer-title {
    color: #fff;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

.footer-divider {
    border-color: #333;
    margin: 40px 0;
}

.footer-bottom {
    font-size: 14px;
}

.footer-legal-links a {
    color: #ccc;
    margin: 0 10px;
    text-decoration: none;
}

/* ================= POPUP ================= */

.custom-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s;
}

.custom-popup.active {
    visibility: visible;
    opacity: 1;
}

.popup-content {
    background: #fff;
    width: 90%;
    max-width: 420px;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.popup-content h3 {
    font-family: 'Playfair Display', serif;
    color: #0B3D2E;
    margin-bottom: 15px;
}

.popup-content input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 30px;
    border: 1px solid #ddd;
}

.popup-btn {
    background: linear-gradient(135deg, #C8A96A, #b89555);
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    width: 100%;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* RESPONSIVE */

@media(max-width:992px) {
    .hero-left h1 {
        font-size: 36px;
    }

    .hero {
        text-align: center;
    }

    .hero-enquiry {
        margin-top: 40px;
    }
}

@media(max-width:992px) {
    .hero-enquiry {
        margin-top: 40px;
    }
}