/* Design System */
:root {
    --primary-green: #558e31;
    /* From Logo House & Checkmark */
    --primary-green-dark: #558e31;
    --accent-gold: #D98A2A;
    /* From Logo Flute/Bansuri */
    --text-dark: #333333;
    /* From Logo Text */
    --text-light: #666666;
    --bg-light: #f3f6ef;
    /* Tinted with Green - slightly darker */
    --white: #ffffff;
    --bg-beige: var(--bg-light);
    --bg-white: #ffffff;
    --bg-grey: #f9f9f9;
    --bg-dark-subtle: #eef1ea;
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    /* Montserrat for headings too */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-beige);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    text-transform: uppercase;
    font-weight: normal;
}

.primary-color {
    color: var(--primary-green);
}

.accent-color {
    color: var(--accent-gold);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.bg-white { 
    background-color: var(--white); 
}

.bg-beige { 
    background-color: var(--bg-beige); 
}

.bg-grey {
    background-color: var(--bg-grey);
}

.bg-dark-subtle {
    background-color: var(--bg-dark-subtle);
}

section {
    padding: 50px 0;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    border-top: 5px solid var(--primary-green);
}

header.scrolled {
    background: #fff;
    padding: 8px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
}

nav ul {
    display: flex;
    gap: 25px;
}

nav ul li a {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}

nav ul li a:hover {
    color: var(--primary-green);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 500px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1001;
    border-radius: 4px;
    padding: 10px 0;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 13px !important;
    text-transform: uppercase;
    transition: 0.3s;
}

.dropdown-content a:hover {
    background-color: #f9f9f9;
    color: var(--primary-green) !important;
    padding-left: 25px;
}

.dropdown-header {
    background: #f1f1f1;
    color: #666;
    padding: 5px 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dropdown > a i {
    font-size: 10px;
    margin-left: 5px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        padding-left: 20px;
        background: #f9f9f9;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
}

.contact-btn {
    font-weight: 700;
    font-size: 16px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 25vh;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    /* For 3 slides */
    height: 100%;
    display: flex;
    transition: transform 1s ease-in-out;
    z-index: -1;
}

.slide {
    width: 33.333%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #ccc;
    /* Placeholder color */
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    letter-spacing: 2px;
    color: var(--white);
    font-family: 'sangbleu_sansregular', sans-serif;
}

.hero-content h2 {
    font-size: 24px;
    margin-bottom: 30px;
    font-family: var(--font-main);
    font-weight: 400;
    color: var(--white);
}

/* Page Hero (for internal pages) */
.page-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    padding-top: 80px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 56px;
    font-family: 'sangbleu_sansregular', sans-serif;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-tagline {
    border: 1px solid var(--white);
    padding: 15px 30px;
    display: inline-block;
    margin-bottom: 40px;
    font-size: 14px;
    letter-spacing: 1px;
}

.hero-tagline span {
    color: #ffde59;
}

.rera-box {
    position: absolute;
    bottom: 40px;
    right: 150px;
    width: 200px;
    border: 1px solid var(--white);
    border-radius: 12px;
    overflow: hidden;
    z-index: 10;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.rera-top {
    background: #333333;
    color: var(--white);
    padding: 8px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.rera-bottom {
    background: var(--white);
    color: var(--primary-green);
    padding: 12px;
    font-weight: 700;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 700;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #666;
}

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
}

.section-title h2 {
    font-size: 36px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 15px auto 0;
}

.section-title p {
    font-size: 16px;
    max-width: 800px;
    margin: 15px auto 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections Backgrounds */
.bg-beige {
    background-color: var(--bg-beige);
}

.bg-white {
    background-color: var(--bg-white);
}

/* Corridor Section */
.corridor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.corridor-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    text-align: center;
}

.corridor-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.corridor-item h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    transition: 0.3s;
}

.corridor-item:hover h3 {
    color: #666;
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.amenity-card {
    text-align: center;
    padding: 20px;
}

.amenity-card i {
    font-size: 40px;
    color: var(--primary-green);
    margin-bottom: 15px;
    transition: 0.3s;
}

.amenity-card:hover i {
    color: #666;
}

/* Location */
.location-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.location-text {
    flex: 1;
}

.location-map {
    flex: 1;
}

.dist-list {
    margin-top: 20px;
}

.dist-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Projects Section */
.project-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    border: 1px solid var(--primary-green);
    background: transparent;
    color: var(--primary-green);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.filter-btn.active,
.filter-btn:hover {
    background: #666;
    border-color: #666;
    color: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
    background: var(--white);
}

.project-card .project-img {
    height: 300px;
    overflow: hidden;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s;
}

.project-card:hover img {
    transform: scale(1.1);
}

.enquire-btn {
    position: fixed;
    right: -55px;
    top: 50%;
    transform: rotate(-90deg);
    background: var(--accent-gold);
    color: var(--white);
    padding: 12px 25px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 999;
    border-radius: 5px 5px 0 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.rera-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-green);
    color: var(--white);
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    z-index: 2;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.project-info {
    padding: 25px;
    text-align: left;
}

.project-info h3 {
    color: var(--primary-green);
    font-size: 22px;
    margin: 10px 0;
    font-weight: 700;
}

.proj.view-details-btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-green);
    color: var(--white);
    font-weight: 600;
    border-radius: 5px;
    margin-top: 20px;
    transition: 0.3s;
}

.view-details-btn:hover {
    background: var(--accent-gold);
}

.project-status {
    display: inline-block;
    padding: 4px 12px;
    background: #f0f0f0;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    color: #666;
    text-transform: uppercase;
}

.project-loc {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.project-loc i {
    color: var(--primary-green);
    margin-right: 5px;
}

.rera-no {
    font-size: 13px;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 15px;
}

.project-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.view-btn {
    display: inline-block;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--primary-green);
    padding-bottom: 3px;
    transition: 0.3s;
}

.view-btn:hover {
    color: #666;
    border-bottom-color: #666;
    padding-left: 5px;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--primary-green);
    padding: 20px 0;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-top: 10px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Footer Form */
.footer-form {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/b3.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 40px auto 0;
}

.form-grid input,
.form-grid textarea {
    padding: 15px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
}

.form-grid textarea {
    grid-column: span 2;
}

.form-grid button {
    grid-column: span 2;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.form-grid button:hover {
    background: #666;
}

/* Sidebar Enquire Button */
.enquire-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background: var(--primary-green);
    color: var(--white);
    padding: 10px 30px;
    font-weight: 700;
    z-index: 1001;
    border-radius: 5px 5px 0 0;
    letter-spacing: 1px;
    transition: 0.3s;
}

.enquire-btn:hover {
    background: #666;
}

.whatsapp-btn {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Centered Footer Styles */
footer {
    background-color: #555;
    padding: 50px 0 30px;
    color: #fff;
    text-align: center;
    border-top: none;
}

.footer-logo-centered img {
    height: 100px;
    margin-bottom: 40px;
}

.footer-nav-centered ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    list-style: none;
    padding: 0;
}

.footer-nav-centered ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-nav-centered ul li a:hover {
    color: #ccc;
}

.footer-nav-centered ul li.bullet {
    color: #fff;
    font-size: 14px;
}

.footer-social-centered {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-social-centered a {
    width: 45px;
    height: 45px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social-centered a:hover {
    background: #fff;
    color: #555;
}

.footer-bottom-centered {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 13px;
    color: #ddd;
}

.footer-bottom-centered a {
    color: #fff;
    font-weight: 600;
}


.project-feature-section {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.featured-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.location-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-direction: row-reverse;
}

/* Master Plan Slider */
.plan-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.plan-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.plan-slide {
    min-width: 100%;
}

.plan-slide img {
    width: 100%;
    display: block;
}

.plan-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.plan-dot {
    width: 15px;
    height: 15px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.plan-dot.active {
    background: var(--primary-green);
    transform: scale(1.2);
}

/* Page Hero Standard */
.page-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    position: relative;
    padding-top: 80px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 60px;
    margin-bottom: 10px;
    letter-spacing: 2px;
    color: var(--white);
}

.page-hero p {
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--white);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }

    .project-feature-section {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .feature-image,
    .feature-text {
        width: 100% !important;
        flex: none !important;
    }

    .feature-text {
        text-align: center;
    }

    .feature-points {
        display: inline-block;
        text-align: left;
    }

    .stats-row .container {
        flex-wrap: wrap;
        gap: 20px;
    }
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary-green);
    cursor: pointer;
}

@media (max-width: 991px) {
    header .container {
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
        z-index: 1002;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--white);
        z-index: 1001;
        transition: 0.5s ease-in-out;
        display: flex !important;
        align-items: center;
        justify-content: center;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    nav ul li a {
        font-size: 20px;
        color: var(--text-dark);
        font-weight: 700;
    }

    .contact-btn {
        display: none;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .page-hero p {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .corridor-grid,
    .location-content,
    .form-grid,
    .glance-grid,
    .amenities-grid,
    .projects-grid,
    .events-grid,
    .media-grid {
        grid-template-columns: 1fr !important;
    }

    .location-content {
        flex-direction: column !important;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-nav ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    .stat-item {
        width: 45%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 28px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .stat-item {
        width: 100%;
    }

    .section {
        padding: 50px 0;
    }
}