/* Base Variables */
:root {
    --primary-color: #0f172a;
    --secondary-color: #1e293b;
    --accent-color: #cfa15e;
    /* Gold */
    --accent-hover: #b88a44;
    --text-dark: #334155;
    --text-light: #94a3b8;
    --white: #ffffff;
    --off-white: #f8fafc;
    --bg-light: #f1f5f9;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 10px 25px -5px rgba(207, 161, 94, 0.3);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 600;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

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

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    font-family: var(--font-heading);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
}

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.full-width {
    width: 100%;
}

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

.section {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
}

.header.scrolled {
    background-color: rgba(15, 23, 42, 0.95);
    /* Glass dark */
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: block;
    width: 150px;
    /* Adjust based on preference */
    transition: var(--transition);
}

.logo img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    /* Make logo white for transparent header */
    transition: var(--transition);
}




.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--primary-color);
    z-index: 1001;
    transition: var(--transition);
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-list {
    margin-top: 3rem;
}

.mobile-nav-list li {
    margin-bottom: 1.5rem;
}

.mobile-nav-list a {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 4rem;
    /* For header space */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.badge {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.6s backwards;
}

/* Hero Stats Float */
.hero-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    z-index: 10;
}

.stat-item {
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    border-bottom: 4px solid var(--accent-color);
}

.stat-item i {
    font-size: 2rem;
    color: var(--accent-color);
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-text strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.stat-text span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* About Section */
.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
    /* Space for hero stats */
}

.section-desc {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-dark);
}

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

.feature-list {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.feature-list i {
    color: var(--accent-color);
}

.image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper img {
    border-radius: 12px;
    transition: var(--transition);
}

.experience-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .count {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .label {
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Amenities Section */
.bg-light {
    background-color: var(--bg-light);
}

.amenities-grid {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 1rem 1rem 2rem 1rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    margin: 0 -1rem;
    /* Negative margin to pull to edges on mobile */
}

/* Custom Scrollbar */
.amenities-grid::-webkit-scrollbar {
    height: 6px;
}

.amenities-grid::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
    margin: 0 1rem;
}

.amenities-grid::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

.amenity-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-width: 280px;
    max-width: 320px;
    flex: 0 0 auto;
    scroll-snap-align: center;
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(207, 161, 94, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.amenity-card i {
    font-size: 2rem;
    color: var(--accent-color);
}

.amenity-card:hover .icon-box {
    background-color: var(--accent-color);
}

.amenity-card:hover i {
    color: var(--white);
}

.amenity-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.amenity-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
    transform: scale(0.8);
    transition: var(--transition);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Pricing Section */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.price-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.price-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.price-card.featured:hover {
    transform: translateY(-5px) scale(1.06);
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.card-header .area {
    color: var(--text-light);
    font-size: 0.9rem;
}

.card-price {
    margin: 1.5rem 0;
    color: var(--primary-color);
}

.card-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
    font-weight: 600;
}

.card-price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
}

.card-price .unit {
    font-size: 1.2rem;
    font-weight: 600;
}

.small-text {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.2rem;
}

.card-features {
    margin-bottom: 2rem;
}

.card-features li {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.card-features i {
    color: var(--accent-color);
    margin-right: 0.8rem;
}

/* Location */
.bg-dark {
    background-color: var(--primary-color);
    color: var(--white);
}

.location-layout {
    gap: 0;
    align-items: stretch;
    background: var(--secondary-color);
    border-radius: 12px;
    overflow: hidden;
}

.location-info {
    padding: 4rem;
}

.location-list {
    margin-top: 2rem;
}

.loc-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.loc-item .time {
    font-weight: 700;
    color: var(--accent-color);
    width: 80px;
}

.location-map {
    position: relative;
    min-height: 400px;
    background-color: #eee;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--accent-color);
}

.form-group {
    margin-bottom: 1.2rem;
}

.mobile-input-group {
    display: flex;
    gap: 0.5rem;
}

.country-code {
    width: 90px !important;
    flex-shrink: 0;
}



.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background-color: #fff;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Custom Select Arrow */
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    cursor: pointer;
}

/* Placeholder color logic for select */
.form-select {
    color: #94a3b8 !important;
    /* Placeholder color matches input placeholder */
}

.form-select.has-value {
    color: var(--text-dark) !important;
}

/* Specific fix for country code short select */
.country-code {
    padding-right: 0.5rem !important;
    background-position: right 0.2rem center !important;
    color: var(--text-dark) !important;
    /* Always dark for country code */
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Improved Contact Details */
.contact-details {
    padding-left: 1rem;
}

.contact-details h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.details-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.details-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
    background: var(--white);
    border-color: var(--accent-color);
}

.details-item i {
    font-size: 1.2rem;
    color: var(--white);
    background: var(--accent-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(207, 161, 94, 0.3);
}

.details-item h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.details-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.details-item a {
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
}

.details-item a:hover {
    color: var(--accent-color);
}

/* Footer - Reimagined as white strip */
.footer {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 1.5rem 0;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.05);
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-left {
    flex-shrink: 0;
}

.qr-code {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.footer-center {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-grow: 1;
    justify-content: center;
    text-align: left;
}

.rera-icon {
    font-size: 2.5rem;
    color: #cb4b37;
    /* RERA reddish color */
}

.rera-details p {
    margin: 0;
    line-height: 1.4;
    font-size: 0.9rem;
    font-weight: 500;
}

.rera-details .reg-no {
    color: var(--text-dark);
    font-weight: 700;
}

.footer-right {
    flex-shrink: 0;
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: fadeInDown 1s ease;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
}

.whatsapp-float-btn i {
    font-size: 2rem;
}

/* Pulse Animation */
.whatsapp-float-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Responsive adjustment for footer */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-center {
        flex-direction: column;
        align-items: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .pricing-container {
        grid-template-columns: 1fr;
    }

    .split-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .location-layout {
        flex-direction: column;
        display: block;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .header-actions .btn {
        display: none;
    }

    .header-actions {
        display: flex;
        align-items: center;
    }

    .container {
        width: 92%;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .hero {
        flex-direction: column;
        justify-content: center;
        height: auto;
        min-height: 100vh;
        padding-bottom: 4rem;
        /* Space for stats */
    }

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-stats {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        margin-top: 3rem;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .stat-item {
        width: 100%;
        min-width: 0;
        padding: 1rem 0.5rem;
        margin-bottom: 0;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 0.5rem;
    }

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

    .section {
        padding: 2.5rem 0;
        /* More breathing room */
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-desc {
        font-size: 1rem;
        line-height: 1.8;
        /* Better readability */
    }

    /* Stack Feature List on Mobile */
    .feature-list {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .feature-list li {
        font-size: 1rem;
    }

    .btn-lg {
        width: 100%;
    }

    .mobile-sticky-footer {
        display: flex;
    }

    .footer {
        padding-bottom: 6rem;
        padding-top: 1rem;
    }

    .footer-right {
        display: none;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-center {
        flex-direction: column;
        text-align: center;
    }

    /* Location Section Adjustments */
    .location-info {
        padding: 2.5rem 1.5rem;
    }

    /* Reduce gap between contact form and footer specifically */
    #contact {
        padding-bottom: 0.5rem;
    }

    .footer {
        padding-top: 0.5rem;
        border-top: none;
        /* remove border if it adds visual separation */
    }

}



/* Base styles for sticky footer (hidden on desktop) */
.mobile-sticky-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.sticky-btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    gap: 0.5rem;
    transition: all 0.2s;
}

.call-btn {
    background-color: var(--white);
    color: var(--primary-color);
    border-top: 2px solid var(--primary-color);
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    border-top: 2px solid #25D366;
}

.call-btn:active {
    background-color: #f1f5f9;
}

.whatsapp-btn:active {
    background-color: #128C7E;
}

/* Floor Plan Section */
.floor-plan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.floor-plan-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.floor-plan-card:hover {
    transform: translateY(-5px);
}

.floor-plan-image {
    width: 100%;
    background: #f8fafc;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floor-plan-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 400px;
}

.floor-plan-info {
    padding: 1.5rem;
    text-align: center;
    background: #f1f5f9;
}

.floor-plan-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.floor-plan-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .floor-plan-grid {
        grid-template-columns: 1fr;
    }
}

/* Force Mobile Stats Grid Override */
@media (max-width: 768px) {
    .container {
        width: 94%;
        padding: 0 0.5rem;
    }

    .badge {
        margin-top: 5px;
    }

    .hero-stats {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        margin-top: 2rem !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
        width: 100% !important;
    }

    .stat-item {
        width: 100% !important;
        min-width: 0 !important;
        padding: 1rem 0.5rem !important;
        margin: 0 !important;
        flex-direction: column !important;
        justify-content: center !important;
        text-align: center !important;
        aspect-ratio: 1 / 1;
    }

    .stat-text {
        text-align: center !important;
    }
}

/* Popup Form Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
    backdrop-filter: blur(5px);
}

.popup-overlay.show {
    display: flex;
    opacity: 1;
}

.popup-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.popup-overlay.show .popup-content {
    transform: translateY(0);
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    transition: color 0.3s;
}

.close-popup:hover {
    color: var(--primary-color);
}

.popup-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.popup-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.popup-header p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.popup-form .form-group {
    margin-bottom: 1rem;
}

.popup-form input,
.popup-form select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s;
}

.popup-form input:focus,
.popup-form select:focus {
    border-color: var(--primary-color);
}