:root {
    --primary-purple: #5c2d62;
    --primary-gold: #c5a059;
    --gold-light: #e6c888;
    --gold-dark: #8a6d3b;
    --dark-navy: #0b1120;
    --dark-surface: #151e32;
    --text-dark: #1a2238;
    --text-light: #f4f4f4;
    --text-muted: #6c757d;
    --white: #ffffff;
    --off-white: #f9f9fb;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.4s ease;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
    --shadow-lg: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
}

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

html,
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

/* Typography Helpers */
.highlight {
    color: var(--primary-gold);
    font-style: italic;
}

.gold-text {
    color: var(--primary-gold);
}

.gold-gradient-text {
    background: linear-gradient(45deg, var(--gold-dark), var(--primary-gold), var(--gold-light), var(--primary-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 4s linear infinite;
    /* Fallback for older browsers */
    color: var(--primary-gold);
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.section-subtitle {
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--dark-navy);
    line-height: 1.2;
}

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

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

.bg-dark {
    background-color: var(--dark-navy);
    color: var(--text-light);
}

.text-white {
    color: var(--white);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.6);
}

.mt-2 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-purple), #2a0861);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(60, 12, 137, 0.2);
    /* Reduced opacity */
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(60, 12, 137, 0.4);
    background: linear-gradient(135deg, #2a0861, var(--primary-purple));
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 34px;
    border-radius: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-navy);
}

.btn-text {
    color: var(--primary-purple);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    position: relative;
}

.btn-text::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-purple);
    transition: var(--transition);
}

.btn-text:hover::after {
    width: 100%;
}

.full-width {
    width: 100%;
    text-align: center;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    height: 100px; /* Slightly taller for the new logo */
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    height: 70px; /* Shrinks on scroll */
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 80px; /* Bigger height since cropped */
    width: auto;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .logo img {
    height: 55px; /* Shrinks with navbar */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-btn.btn-primary {
    padding: 10px 25px;
    font-size: 0.85rem;
    border-radius: 4px;
    box-shadow: none;
    /* Cleaner look in nav */
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-navy);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    /* Removed fixed height to allow content to flow naturally */
    position: relative;
    padding-top: 150px;
    /* More top space */
    padding-bottom: 100px;
    /* CRITICAL: Space at bottom for stats to not hit next section */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Vertically center the *group* of content */
    text-align: center;
    color: var(--white);
    background: url('image/hero.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 17, 32, 0.75);
    z-index: 1;
}

/* NEW GRID LAYOUT FOR HERO CONTENT */
.hero-content {
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 40px;
    flex-grow: 1;
    /* Allow taking available space */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
    text-align: left;
    max-width: 650px;
}

.hero-form-wrapper {
    flex: 0 0 350px;
    /* Fixed width for form */
    max-width: 100%;
}

.hero-form {
    background: rgba(11, 17, 32, 0.85);
    /* Darker glass */
    padding: 30px;
    border-radius: 5px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-form h3 {
    color: var(--white);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.hero-form input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-body);
    transition: var(--transition);
}

.hero-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-gold);
}

.hero-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.eyebrow {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 15px;
    color: var(--white); /* Changed to white for better contrast with gold-text span */
    font-weight: 600;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(184, 154, 99, 0.15);
    border: 1px solid var(--primary-gold);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.badge-text {
    color: var(--primary-purple);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
}

.badge-sep {
    color: var(--primary-gold);
    margin: 0 10px;
    font-weight: 300;
}

.badge-byline {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.hero h1 {
    font-size: 3.8rem;
    /* Slightly smaller to fit */
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 400;
    max-width: 600px;
    /* Aligned left, no margin auto */
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    /* Left align */
    flex-wrap: wrap;
    margin-bottom: 0;
}

/* Hero Stats Bar - Redeveloped Premium Glass Card */
.hero-stats {
    z-index: 2;
    position: relative;
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
    /* Natural flow, managed by parent gap/padding */

    /* Glassmorphism Effect */
    background: rgba(11, 17, 32, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-radius: 5px;

    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 30px 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
}

.stat-icon {
    font-size: 1.8rem;
    /* Slightly smaller for balance */
    color: var(--primary-gold);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.2);
    transition: var(--transition);
}

.stat-item:hover .stat-icon {
    background: var(--primary-gold);
    color: var(--dark-navy);
    transform: rotateY(180deg);
}

.stat-info {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    color: var(--white);
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ccc;
    margin-top: 5px;
    display: block;
}

.stat-separator {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.scroll-down {
    display: none;
    /* Hide scroll down indicator to clean up bottom area */
}

.blink {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}


/* Overview */
.overview .row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.col-text {
    flex: 1;
}

.col-image {
    flex: 1;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-purple);
    margin-bottom: 20px;
}

.usp-list {
    list-style: none;
    margin-top: 30px;
}

.usp-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
}

.gold-icon {
    color: var(--primary-gold);
}

/* Replaced Placeholder with Real Image Styles */
.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
    transition: var(--transition);
}

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

/* Why Choose Us */
.bg-pattern {
    background-color: var(--white);
    background-image: radial-gradient(var(--off-white) 1px, transparent 1px);
    background-size: 20px 20px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.highlight-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 5px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-gold);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-gold);
    font-size: 1.8rem;
    transition: var(--transition);
}

.highlight-card:hover .icon-box {
    background: var(--primary-gold);
    color: var(--white);
}

.highlight-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

/* Amenities */
.amenity-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--text-muted);
    padding: 10px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    transition: var(--transition);
    color: var(--text-muted);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--dark-navy);
    color: var(--primary-gold);
    border-color: var(--dark-navy);
}

.amenities-grid-wrapper {
    position: relative;
    min-height: 300px;
}

.amenities-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    animation: fadeIn 0.5s ease;
}

.amenities-grid.active {
    display: grid;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.amenity-card {
    background: var(--white);
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.amenity-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.amenity-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid #eee;
}

.pricing-card.featured {
    transform: scale(1.05);
    /* Only scale on desktop */
    border: 2px solid var(--primary-gold);
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.best-value-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: var(--dark-navy);
    padding: 5px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.card-header {
    background: var(--off-white);
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.card-body {
    padding: 30px;
}

.tag {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    background: rgba(197, 160, 89, 0.2);
    color: var(--primary-gold);
    padding: 4px 12px;
    border-radius: 5px;
    margin-top: 5px;
    font-weight: 600;
}

.plan-icon {
    text-align: center;
    font-size: 3rem;
    color: var(--dark-navy);
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    margin: 20px 0;
}

.plan-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.plan-features li i {
    color: var(--primary-gold);
}

.price-box {
    text-align: center;
    margin: 25px 0;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.price-value {
    display: block;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-navy);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 15px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
    transition: var(--transition);
    background-size: cover;
    background-position: center;
}

/* Assign dummy images */
.gallery-item:nth-child(1) .gallery-placeholder {
    background-image: url('image/65.jpg');
}

.gallery-item:nth-child(2) .gallery-placeholder {
    background-image: url('image/9.jpg');
}

.gallery-item:nth-child(3) .gallery-placeholder {
    background-image: url('image/37.jpg');
}

.gallery-item:nth-child(4) .gallery-placeholder {
    background-image: url('image/61.jpg');
}

.gallery-item:nth-child(5) .gallery-placeholder {
    background-image: url('image/17.jpg');
}

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

/* Accordion Re-style */
.accordion-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.accordion-header {
    background: var(--off-white);
    padding: 20px;
    width: 100%;
    text-align: left;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    border-radius: 8px;
    transition: var(--transition);
}

.accordion-header.active {
    background: var(--dark-navy);
    color: var(--primary-gold);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    text-align: left !important;
}

.accordion-body p, .accordion-body div {
    padding: 20px 0;
    text-align: left !important;
}

ul.spec-list {
    list-style-type: disc !important;
    padding: 10px 0 20px 40px !important;
    margin: 0 !important;
    text-align: left !important;
    display: block !important;
}

ul.spec-list li {
    margin-bottom: 8px !important;
    line-height: 1.6 !important;
    text-align: left !important;
    display: list-item !important;
}

.accordion-body strong {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    color: var(--dark-navy);
    text-align: left !important;
    width: 100%;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(rgba(11, 17, 32, 0.9), rgba(11, 17, 32, 0.95)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
}

.contact-section .section-title,
.contact-section .section-subtitle {
    color: var(--white);
}

.contact-card {
    max-width: 500px;
    background: var(--white);
    margin: 0 auto;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-gold));
}

.contact-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--dark-navy);
}

.contact-header .section-subtitle {
    color: var(--primary-gold);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 14px 14px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--off-white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(60, 12, 137, 0.05);
    /* Reduced glow */
}

/* Contact & Location Grid */
.contact-grid {
    display: flex;
    gap: 40px;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-column {
    flex: 1;
    min-width: 350px;
    max-width: 500px;
}

/* Location Card Styles */
.location-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    height: 100%;
}

.map-container {
    height: 300px;
    width: 100%;
    background: #f0f0f0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.address-box {
    padding: 30px;
    color: var(--dark-navy);
}

.address-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-navy);
}

.address-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.address-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-outline {
    border: 1px solid var(--primary-gold);
    color: var(--dark-navy);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--white);
}

@media(max-width: 900px) {
    .contact-grid {
        flex-direction: column;
        align-items: center;
    }

    .contact-column {
        width: 100%;
        max-width: 100%;
    }
}

/* Footer & RERA */
footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.brand-col .footer-logo {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-brand-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.footer-brand-title .gold-text {
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-logo img {
    height: 80px;
    width: auto;
    opacity: 0.9;
}

.project-loc {
    color: #ccc;
    margin-bottom: 25px;
}

.rera-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
}

.rera-text {
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 5px;
    display: block;
}

.rera-link {
    font-size: 0.8rem;
    color: #999;
    text-decoration: underline;
    display: block;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gold);
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #aab2c0;
    transition: var(--transition);
    display: inline-block;
}

.footer-links-list a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: #aab2c0;
    line-height: 1.5;
}

.contact-info i {
    color: var(--primary-gold);
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    color: var(--white);
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--dark-navy);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    color: #777;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.legal-links a {
    color: #777;
    margin-left: 20px;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--primary-gold);
}



/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
        line-height: 1.3;
    }

    /* Increased line-height */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: auto;
        height: 300px;
    }

    /* Hero Responsive Fixes */
    .hero-grid {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-form-wrapper {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: auto;
        padding: 15px 0;
        /* More breathing room */
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        /* Adjusted for new navbar height */
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        width: 100%;
        padding-top: 40px;
        transition: var(--transition);
        border-top: 1px solid #eee;
        gap: 20px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a:not(.btn-primary) {
        color: var(--dark-navy);
    }

    #brochure-download-btn,
    #brochure-download-btn i {
        color: #ffffff !important;
    }

    .nav-links li a.nav-btn.btn-primary {
        background: linear-gradient(135deg, var(--primary-purple), #20054c) !important;
        margin: 10px 20px;
        width: calc(100% - 40px);
        display: block;
        text-align: center;
        padding: 14px 25px;
        border-radius: 8px;
    }

    .hamburger {
        display: block;
    }

    .hamburger.toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.toggle span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .hero {
        height: auto;
        /* Allow growth */
        min-height: 100vh;
        padding-top: 100px;
        /* More top padding */
        padding-bottom: 80px;
        /* Crucial padding for stats */
        background-position: center bottom;
        /* Better mobile crop */
    }

    .hero-content {
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.4;
        /* Fix overlap */
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .logo img {
        height: 50px; /* Slightly smaller on mobile for better fit */
    }

    .navbar.scrolled .logo img {
        height: 40px;
    }

    .footer-logo img {
        height: 60px; /* Proportionally sized footer logo for mobile */
    }

    /* Hero Stats on Mobile */
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        border-radius: 5px;
        padding: 25px 20px;
        margin-top: 20px;
        background: rgba(11, 17, 32, 0.9);
        backdrop-filter: blur(10px);
        margin-bottom: 20px;
        width: 90%;
    }

    .stat-item {
        width: 100%;
        justify-content: flex-start;
        padding: 5px 10px;
        gap: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-separator {
        display: none;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        flex-shrink: 0;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* General Mobile Fixes */
    .overview .row,
    .location-grid,
    .contact-grid {
        flex-direction: column;
        gap: 30px;
    }

    .contact-column {
        width: 100%;
        max-width: 100%;
        min-width: unset;
    }



    .reverse-mobile {
        flex-direction: column-reverse;
    }

    .col-image,
    .map-placeholder {
        height: 250px;
        width: 100%;
    }

    .pricing-card.featured {
        transform: scale(1);
        margin: 20px 0;
    }

    .pricing-card .btn-primary {
        margin-top: 15px;
    }

    /* Add spacing buttons */



    .contact-section {
        padding-bottom: 80px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Reduce gap between Amenities and Pricing */
#amenities {
    padding-bottom: 20px;
}

#pricing {
    padding-top: 20px;
}

.gold-text {
    color: var(--primary-gold);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--dark-navy);
    background: rgba(0, 0, 0, 0.05);
    transform: rotate(90deg);
}

.modal-title {
    text-align: center;
    margin-bottom: 5px;
    color: var(--primary-purple);
    font-size: 1.8rem;
}

.modal-subtitle {
    text-align: center;
    margin-bottom: 25px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.modal-body form .form-group {
    margin-bottom: 20px;
}

/* Partner Banks Scrolling Marquee */
.partner-banks-section {
    padding: 60px 0;
    overflow: hidden;
}

.partner-banks-section .section-title {
    margin-bottom: 40px;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background: transparent;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    content: "";
    z-index: 2;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--off-white) 0%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--off-white) 0%, transparent 100%);
}

.marquee-content {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll-marquee 25s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.bank-logo {
    flex: 0 0 auto;
    width: 160px;
    height: 80px;
    margin: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    padding: 15px;
    transition: var(--transition);
    border: 1px solid #eaeaea;
}

.bank-logo:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.bank-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.8);
    transition: var(--transition);
}

.bank-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* It shifts by exactly 50% because we duplicated the contents inside for infinite looping */
    }
}