/* =========================================
   ANAYA - MAHALAXMI NAGAR 51
   PREMIUM REAL ESTATE WEBSITE
========================================= */

:root {

    --green: #063f35;
    --green-dark: #032d26;
    --green-light: #0b5a4b;

    --gold: #b89542;
    --gold-light: #d9bd72;

    --white: #ffffff;
    --cream: #f8f7f2;
    --black: #111111;

    --text: #303632;
    --muted: #707772;

    --border: rgba(6, 63, 53, 0.12);

    --container: 1240px;

    --radius: 18px;

}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    background: var(--white);

    color: var(--text);

    line-height: 1.6;

    overflow-x: hidden;

}

img {
    width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================
   CONTAINER
========================================= */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;

}


/* =========================================
   HEADER
========================================= */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background:
        rgba(255,255,255,0.94);

    backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid rgba(0,0,0,0.06);

    transition: 0.3s ease;

}

.nav-container {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}

.brand-logo {

    width: 150px;

    height: auto;

}


.desktop-nav {

    display: flex;

    align-items: center;

    gap: 28px;

}

.desktop-nav a {

    font-size: 13px;

    font-weight: 600;

    color: var(--green);

    position: relative;

}

.desktop-nav a::after {

    content: "";

    position: absolute;

    bottom: -8px;
    left: 0;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: 0.3s;

}

.desktop-nav a:hover::after {
    width: 100%;
}


.nav-call {

    background: var(--green);

    color: white;

    padding: 11px 20px;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 700;

}


.menu-btn {

    display: none;

    border: 0;

    background: none;

    cursor: pointer;

}

.menu-btn span {

    display: block;

    width: 25px;
    height: 2px;

    margin: 5px 0;

    background: var(--green);

}


.mobile-menu {

    display: none;

}


/* =========================================
   HERO
========================================= */

.hero {

    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    background-image:
        url("public/hero.jpg");

    background-size: cover;

    background-position: center;

    color: white;

}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,38,31,0.88) 0%,
            rgba(0,38,31,0.62) 45%,
            rgba(0,0,0,0.15) 100%
        );

}

.hero-content {

    position: relative;

    z-index: 2;

    padding-top: 100px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        380px;

    align-items: center;

    gap: 70px;

}

.hero-copy {

    max-width: 780px;

}

.hero-brand {

    margin-bottom: 20px;

}

.hero-brand img {

    width: 210px;

    filter:
        brightness(0)
        invert(1);

}

.hero-eyebrow {

    letter-spacing: 4px;

    font-size: 13px;

    margin-bottom: 18px;

    color: var(--gold-light);

}

.hero h1 {

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(48px, 6vw, 86px);

    line-height: 0.96;

    font-weight: 400;

    max-width: 850px;

}

.hero h1 span {

    display: block;

    color: var(--gold-light);

}

.hero-description {

    max-width: 600px;

    font-size: 18px;

    margin-top: 28px;

    color:
        rgba(255,255,255,0.88);

}

.hero-buttons {

    display: flex;

    gap: 14px;

    margin-top: 35px;

}


/* =========================================
   BUTTONS
========================================= */

.btn {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    min-height: 50px;

    padding:
        0 25px;

    border-radius: 50px;

    font-weight: 700;

    font-size: 14px;

    transition: 0.3s ease;

}

.btn-gold {

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    color: var(--green-dark);

}

.btn-gold:hover {

    transform:
        translateY(-3px);

}

.btn-outline {

    border:
        1px solid
        rgba(255,255,255,0.7);

    color: white;

}

.btn-outline:hover {

    background: white;

    color: var(--green);

}


/* =========================================
   HERO PRICE
========================================= */

.hero-price-card {

    background:
        rgba(255,255,255,0.96);

    color: var(--green);

    padding: 25px;

    border-radius: 20px;

    box-shadow:
        0 30px 70px
        rgba(0,0,0,0.25);

}

.price-label {

    text-align: center;

    background: var(--gold);

    color: white;

    border-radius: 50px;

    padding: 8px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 20px;

}

.price-row {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

}

.price-row > div {

    text-align: center;

    padding: 10px;

    border-right:
        1px solid var(--border);

}

.price-row > div:last-child {

    border-right: 0;

}

.price-row strong {

    display: block;

    font-size: 25px;

}

.price-row small {

    text-transform: uppercase;

    font-size: 9px;

    letter-spacing: 1px;

}

.hero-price-card > p {

    text-align: center;

    margin-top: 10px;

    color: var(--muted);

    font-size: 12px;

}


/* =========================================
   SCROLL
========================================= */

.scroll-indicator {

    position: absolute;

    bottom: 30px;

    left: 50%;

    transform:
        translateX(-50%);

    font-size: 11px;

    letter-spacing: 2px;

    opacity: 0.8;

}

.scroll-indicator span {

    display: inline-block;

    width: 25px;
    height: 1px;

    background: white;

    margin-right: 10px;

}


/* =========================================
   SECTIONS
========================================= */

.section {

    padding:
        110px 0;

}

.intro {

    background: var(--cream);

}

.section-heading {

    max-width: 750px;

    margin-bottom: 55px;

}

.section-heading.center {

    text-align: center;

    margin-inline: auto;

}

.eyebrow {

    display: inline-block;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

    color: var(--gold);

    margin-bottom: 14px;

}

.section-heading h2 {

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-weight: 400;

    font-size:
        clamp(40px, 5vw, 65px);

    line-height: 1.05;

    color: var(--green);

}

.section-heading h2 span {

    color: var(--gold);

}

.section-heading p {

    margin-top: 20px;

    color: var(--muted);

    max-width: 650px;

}


/* =========================================
   STATS
========================================= */

.stats-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}

.stat-card {

    background: white;

    padding: 35px 25px;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    text-align: center;

    transition: 0.3s;

}

.stat-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 20px 50px
        rgba(0,0,0,0.08);

}

.stat-card strong {

    display: block;

    font-family:
        Georgia,
        serif;

    font-size: 50px;

    color: var(--green);

}

.stat-card span {

    display: block;

    font-weight: 800;

    color: var(--gold);

    text-transform: uppercase;

    letter-spacing: 1px;

}

.stat-card small {

    color: var(--muted);

}


/* =========================================
   LIFESTYLE
========================================= */

.lifestyle-section {

    display: grid;

    grid-template-columns:
        1.2fr
        0.8fr;

    min-height: 600px;

}

.lifestyle-image {

    overflow: hidden;

}

.lifestyle-image img {

    height: 100%;

    object-fit: cover;

}

.lifestyle-content {

    background: var(--green);

    color: white;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        80px;

}

.lifestyle-content .eyebrow {

    color: var(--gold-light);

}

.lifestyle-content h2 {

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(42px, 5vw, 68px);

    font-weight: 400;

    line-height: 1;

}

.lifestyle-content h2 span {

    display: block;

    color: var(--gold-light);

}

.lifestyle-content p {

    max-width: 500px;

    margin:
        25px 0;

    color:
        rgba(255,255,255,0.72);

}

.text-link {

    color: var(--gold-light);

    font-weight: 700;

}


/* =========================================
   LOCATION
========================================= */

.location-layout {

    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr;

    gap: 50px;

    align-items: center;

}

.location-image {

    border-radius:
        20px;

    overflow: hidden;

    box-shadow:
        0 30px 70px
        rgba(0,0,0,0.12);

}

.location-points {

    display: flex;

    flex-direction: column;

    gap: 10px;

}

.location-item {

    display: grid;

    grid-template-columns:
        55px 1fr;

    gap: 20px;

    padding:
        20px 0;

    border-bottom:
        1px solid var(--border);

}

.location-icon {

    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: var(--green);

    color: var(--gold-light);

    display: grid;

    place-items: center;

    font-size: 12px;

    font-weight: 800;

}

.location-item h3 {

    color: var(--green);

    margin-bottom: 4px;

}

.location-item p {

    color: var(--muted);

    font-size: 14px;

}


/* =========================================
   AMENITIES
========================================= */

.amenities-section {

    background: var(--cream);

}

.amenities-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

}

.amenity-card {

    background: white;

    padding: 28px;

    min-height: 180px;

    border-radius: 15px;

    border:
        1px solid var(--border);

    transition: 0.3s;

}

.amenity-card:hover {

    background: var(--green);

    color: white;

    transform:
        translateY(-5px);

}

.amenity-number {

    color: var(--gold);

    font-size: 12px;

    font-weight: 800;

    margin-bottom: 25px;

}

.amenity-card h3 {

    color: var(--green);

    margin-bottom: 8px;

}

.amenity-card:hover h3 {

    color: var(--gold-light);

}

.amenity-card p {

    color: var(--muted);

    font-size: 13px;

}

.amenity-card:hover p {

    color:
        rgba(255,255,255,0.75);

}


/* =========================================
   MASTER PLAN
========================================= */

.masterplan-section {

    background: white;

}

.masterplan-image {

    border-radius:
        20px;

    overflow: hidden;

    box-shadow:
        0 30px 70px
        rgba(0,0,0,0.12);

}


/* =========================================
   PRICING
========================================= */

.pricing-section {

    background:
        var(--green-dark);

    color: white;

}

.pricing-section .section-heading h2 {

    color: white;

}

.pricing-section .section-heading p {

    color:
        rgba(255,255,255,0.7);

}

.pricing-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}

.price-card {

    background:
        rgba(255,255,255,0.06);

    border:
        1px solid
        rgba(255,255,255,0.12);

    padding: 45px 30px;

    border-radius: 20px;

    text-align: center;

    position: relative;

}

.price-card.featured {

    border-color:
        var(--gold);

    transform:
        translateY(-10px);

}

.popular {

    position: absolute;

    top: -13px;

    left: 50%;

    transform:
        translateX(-50%);

    background: var(--gold);

    color: var(--green-dark);

    padding:
        5px 18px;

    border-radius: 50px;

    font-size: 10px;

    font-weight: 800;

}

.price-type {

    display: block;

    color: var(--gold-light);

    font-weight: 800;

    letter-spacing: 2px;

    font-size: 12px;

}

.price-card strong {

    display: block;

    font-family:
        Georgia,
        serif;

    font-size: 55px;

    margin-top: 15px;

}

.price-card small {

    color:
        rgba(255,255,255,0.6);

}

.price-card a {

    display: block;

    margin-top: 30px;

    padding: 12px;

    border:
        1px solid
        var(--gold);

    border-radius: 50px;

    color: var(--gold-light);

    font-weight: 700;

}

.price-card a:hover {

    background: var(--gold);

    color: var(--green-dark);

}

.price-note {

    text-align: center;

    margin-top: 30px;

    color:
        rgba(255,255,255,0.5);

    font-size: 12px;

}


/* =========================================
   GALLERY
========================================= */

.gallery-grid {

    display: grid;

    grid-template-columns:
        1.5fr
        1fr;

    grid-template-rows:
        280px 280px;

    gap: 15px;

}

.gallery-item {

    overflow: hidden;

    border-radius:
        15px;

}

.gallery-item img {

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;

}

.gallery-item:hover img {

    transform:
        scale(1.06);

}

.gallery-item.large {

    grid-row:
        span 2;

}


/* =========================================
   CTA
========================================= */

.cta-section {

    min-height: 560px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: white;

    background:
        url("public/hero.jpg")
        center / cover
        no-repeat;

}

.cta-overlay {

    position: absolute;

    inset: 0;

    background:
        rgba(0,40,33,0.78);

}

.cta-content {

    position: relative;

    z-index: 2;

}

.cta-content h2 {

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(48px, 6vw, 80px);

    font-weight: 400;

    line-height: 1;

}

.cta-content h2 span {

    display: block;

    color: var(--gold-light);

}

.cta-content p {

    margin:
        20px 0 30px;

    color:
        rgba(255,255,255,0.75);

}

.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 15px;

}


/* =========================================
   FOOTER
========================================= */

.footer {

    background:
        #021f1a;

    color: white;

    padding-top: 70px;

}

.footer-grid {

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 50px;

}

.footer-logo {

    width: 170px;

    filter:
        brightness(0)
        invert(1);

    margin-bottom: 15px;

}

.footer p {

    color:
        rgba(255,255,255,0.55);

    font-size: 13px;

}

.footer h4 {

    color: var(--gold-light);

    margin-bottom: 20px;

    letter-spacing: 2px;

    font-size: 12px;

}

.footer a {

    display: block;

    color:
        rgba(255,255,255,0.7);

    margin-bottom: 10px;

    font-size: 13px;

}

.footer a:hover {

    color: white;

}

.copyright {

    border-top:
        1px solid
        rgba(255,255,255,0.08);

    text-align: center;

    padding: 20px;

    color:
        rgba(255,255,255,0.4);

    font-size: 11px;

}


/* =========================================
   FLOATING BUTTONS
========================================= */

.floating-call,
.floating-whatsapp {

    position: fixed;

    right: 20px;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    z-index: 999;

    font-weight: 800;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,0.25);

}

.floating-call {

    bottom: 90px;

    background: var(--gold);

    color: white;

    font-size: 23px;

}

.floating-whatsapp {

    bottom: 20px;

    background: #1f9d55;

    color: white;

    font-size: 12px;

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .desktop-nav {
        display: none;
    }

    .nav-call {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .mobile-menu {

        display: none;

        flex-direction: column;

        padding: 20px;

        background: white;

        border-top:
            1px solid var(--border);

    }

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu a {

        padding: 13px 0;

        color: var(--green);

        border-bottom:
            1px solid var(--border);

    }

    .mobile-call {

        background: var(--green);

        color: white !important;

        text-align: center;

        border-radius: 50px;

        margin-top: 10px;

    }

    .hero-content {

        grid-template-columns: 1fr;

        padding-top: 130px;

        padding-bottom: 100px;

    }

    .hero-price-card {

        max-width: 550px;

    }

    .stats-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .amenities-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .location-layout {

        grid-template-columns: 1fr;

    }

    .pricing-grid {

        grid-template-columns: 1fr;

        max-width: 600px;

        margin-inline: auto;

    }

    .price-card.featured {

        transform: none;

    }

    .lifestyle-section {

        grid-template-columns: 1fr;

    }

    .lifestyle-image {

        min-height: 450px;

    }

    .footer-grid {

        grid-template-columns:
            1fr 1fr;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .container {

        width:
            calc(100% - 28px);

    }

    .nav-container {

        min-height: 70px;

    }

    .brand-logo {

        width: 125px;

    }

    .hero {

        min-height:
            850px;

        background-position:
            60% center;

    }

    .hero-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(0,38,31,0.88),
                rgba(0,38,31,0.55),
                rgba(0,38,31,0.9)
            );

    }

    .hero-content {

        padding-top: 110px;

        gap: 40px;

    }

    .hero-brand img {

        width: 170px;

    }

    .hero h1 {

        font-size: 48px;

    }

    .hero-description {

        font-size: 15px;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .btn {

        width: 100%;

    }

    .hero-price-card {

        padding: 18px;

    }

    .price-row strong {

        font-size: 18px;

    }

    .price-row small {

        font-size: 7px;

    }

    .section {

        padding:
            75px 0;

    }

    .section-heading h2 {

        font-size: 42px;

    }

    .stats-grid {

        grid-template-columns: 1fr 1fr;

    }

    .stat-card {

        padding: 25px 12px;

    }

    .stat-card strong {

        font-size: 38px;

    }

    .lifestyle-content {

        padding: 55px 25px;

    }

    .lifestyle-content h2 {

        font-size: 45px;

    }

    .amenities-grid {

        grid-template-columns: 1fr;

    }

    .gallery-grid {

        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: auto;

    }

    .gallery-item.large {

        grid-row: auto;

    }

    .gallery-item {

        height: 260px;

    }

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }

    .cta-section {

        min-height: 500px;

    }

    .cta-content h2 {

        font-size: 48px;

    }

    .cta-buttons {

        flex-direction: column;

    }

    .floating-call,
    .floating-whatsapp {

        width: 52px;
        height: 52px;

        right: 14px;

    }

}