@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary-green: #11361c;      /* Deep Forest Emerald */
    --primary-green-light: #1c522d;
    --accent-gold: #c5a059;        /* Warm Champagne Gold */
    --accent-gold-dark: #a27f3f;
    --accent-gold-light: #dfc185;
    --text-dark: #111827;          /* Sleek Dark Charcoal */
    --text-light: #f9fafb;
    --text-muted: #6b7280;
    --bg-light: #FAF9F6;           /* Soft Sand/Off-white background */
    --bg-dark: #0b150e;            /* Deep Forest Night */
    --bg-white: #ffffff;           /* Pure White */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --shadow-gold: 0 10px 20px rgba(197, 160, 89, 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

/* Global Reset & Base */
body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3, .display-4 {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--primary-green);
}

.font-sans {
    font-family: var(--font-sans) !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Navbar Upgrades */
.navbar {
    background: rgba(17, 54, 28, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    padding: 10px 2rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.25);
}

.navbar.scrolled {
    padding: 6px 2rem;
    background: rgba(11, 21, 14, 0.98) !important;
    box-shadow: var(--shadow-md);
}

.navbar-brand img {
    height: 55px;
    width: auto;
    transition: var(--transition-smooth);
    filter: brightness(1.05);
}

.navbar.scrolled .navbar-brand img {
    height: 48px;
}

.navbar-nav .nav-link {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85) !important;
    position: relative;
    padding: 0.5rem 1rem !important;
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover {
    color: var(--accent-gold) !important;
}

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

.navbar-nav .nav-link:hover::after {
    width: calc(100% - 2rem);
}

/* Premium Buttons */
.btn-gold {
    background-color: var(--accent-gold);
    color: var(--text-light) !important;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid var(--accent-gold);
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
}

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

.btn-green {
    background-color: var(--primary-green);
    color: var(--text-light) !important;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid var(--primary-green);
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-green:hover {
    background-color: var(--primary-green-light);
    border-color: var(--primary-green-light);
    color: var(--text-light) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--accent-gold) !important;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid var(--accent-gold);
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-outline-gold:hover {
    background-color: var(--accent-gold);
    color: var(--text-light) !important;
    transform: translateY(-2px);
}

/* Call Now Header Button */
.navbar-nav .btn-light {
    background-color: var(--accent-gold) !important;
    color: #fff !important;
    border: 1px solid var(--accent-gold) !important;
    border-radius: 4px;
    padding: 0.6rem 1.5rem;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
    animation: pulse-gold 2s infinite;
}

.navbar-nav .btn-light:hover {
    background-color: var(--accent-gold-dark) !important;
    border-color: var(--accent-gold-dark) !important;
    transform: translateY(-1px);
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(197, 160, 89, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
    }
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.hero-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 21, 14, 0.85) 30%, rgba(11, 21, 14, 0.4) 70%, rgba(11, 21, 14, 0.15) 100%);
    z-index: 2;
}

.hero-container {
    z-index: 3;
    pointer-events: none;
}

.hero-container * {
    pointer-events: auto;
}

/* Lead Form Card (Glassmorphic) */
.glass-form-card {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    padding: 2.25rem;
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    transition: var(--transition-smooth);
}

.glass-form-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), 0 15px 30px rgba(197, 160, 89, 0.35);
}

.glass-form-card h6 {
    font-family: var(--font-serif);
    color: var(--primary-green);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-gold-light);
    padding-bottom: 0.5rem;
}

.form-control-custom {
    background-color: #fafaf9;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    padding: 0.8rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
    width: 100%;
}

.form-control-custom:focus {
    background-color: #ffffff;
    border-color: var(--accent-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

/* Trust Bar */
.trust-bar {
    background: var(--bg-dark);
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    padding: 1.5rem 0;
    color: var(--text-light);
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item:last-child {
    border-right: none;
}

.trust-item-icon {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-right: 1rem;
}

.trust-item-text h6 {
    color: var(--accent-gold);
    font-family: var(--font-sans);
    font-weight: 700;
    margin-bottom: 0;
    font-size: 1rem;
}

.trust-item-text p {
    margin-bottom: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .trust-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem 0;
    }
    .trust-item:last-child {
        border-bottom: none;
    }
}

/* Overview Section */
.overview-h2 {
    position: relative;
    padding-bottom: 1rem;
    font-size: 2.5rem;
}

.overview-h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
}

.overview-stats-card {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--bg-dark) 100%);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.overview-stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(197, 160, 89, 0.08) 0%, transparent 45%);
    pointer-events: none;
}

.stat-number {
    font-family: var(--font-serif);
    color: var(--accent-gold);
    font-size: 1.8rem;
    font-weight: 700;
}

.stat-label {
    font-family: var(--font-sans);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.stat-item-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.15);
    transition: var(--transition-smooth);
    height: 100%;
}

.stat-item-box:hover {
    background: rgba(197, 160, 89, 0.08);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.15);
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.stat-item-box:hover .stat-icon {
    color: #ffffff;
    transform: scale(1.1);
}

/* Section Header styling */
.section-title-wrapper {
    margin-bottom: 3.5rem;
    text-align: center;
}

.section-title-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 700;
    display: inline-block;
    position: relative;
    padding-bottom: 1.25rem;
}

.section-title-wrapper h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-title-wrapper p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

/* Project Features Section */
.feature-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(197, 160, 89, 0.4);
}

.feature-card .feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary-green);
}

.feature-card .feature-icon-wrapper img {
    height: 38px;
    width: auto;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper img {
    filter: brightness(0) invert(1);
}

.feature-card h6 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.4;
}

/* World Class Amenities Section (15 images) */
.amenities-section {
    background-color: #fcfbf9;
    position: relative;
    padding: 5rem 0;
}

.amenity-card {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 280px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.amenity-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.amenity-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

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

.amenity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 21, 14, 0.9) 0%, rgba(11, 21, 14, 0.4) 60%, rgba(11, 21, 14, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    z-index: 2;
    transition: var(--transition-smooth);
}

.amenity-card:hover .amenity-overlay {
    background: linear-gradient(to top, rgba(17, 54, 28, 0.95) 0%, rgba(11, 21, 14, 0.5) 60%, rgba(11, 21, 14, 0.2) 100%);
}

.amenity-tag {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--accent-gold);
    color: var(--text-light);
    padding: 0.25rem 0.5rem;
    border-radius: 2px;
    align-self: flex-start;
    margin-bottom: 0.5rem;
}

.amenity-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.25rem;
    transition: var(--transition-smooth);
}

.amenity-desc {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.amenity-card:hover .amenity-desc {
    height: auto;
    opacity: 1;
    margin-top: 0.25rem;
}

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

.gallery-container {
    max-width: 1000px;
    margin: 0 auto;
}

.swiper-gallery {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(197, 160, 89, 0.25);
}

.swiper-slide {
    position: relative;
    background: #000;
}

.swiper-slide img, .swiper-slide video {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .swiper-slide img, .swiper-slide video {
        height: 300px;
    }
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 21, 14, 0.75);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 1rem 1.5rem;
    z-index: 10;
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    border-top: 1px solid rgba(197, 160, 89, 0.3);
}

.swiper-button-next, .swiper-button-prev {
    color: var(--accent-gold) !important;
    background: rgba(11, 21, 14, 0.85);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    border: 1px solid var(--accent-gold);
    transition: var(--transition-smooth);
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 1.25rem !important;
    font-weight: bold;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--accent-gold);
    color: var(--text-light) !important;
}

.swiper-pagination-bullet-active {
    background: var(--accent-gold) !important;
}

/* Location Section */
.location-card-list {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.location-icon {
    color: var(--accent-gold);
    width: 25px;
    display: inline-block;
    text-align: center;
    font-size: 1.1rem;
}

.location-item {
    background-color: var(--bg-white);
    border: none;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 0.95rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

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

.location-item:hover {
    background-color: rgba(197, 160, 89, 0.04);
    padding-left: 1.5rem;
}

.location-badge {
    background-color: rgba(17, 54, 28, 0.06) !important;
    color: var(--primary-green) !important;
    font-weight: 600 !important;
    padding: 0.4rem 0.85rem !important;
    font-size: 0.8rem !important;
    border: 1px solid rgba(17, 54, 28, 0.15);
    border-radius: 4px !important;
    transition: var(--transition-smooth);
}

.location-item:hover .location-badge {
    background-color: var(--primary-green) !important;
    color: var(--accent-gold) !important;
    border-color: var(--accent-gold);
}

/* Quick Action Bar for Mobile */
.mobile-action-bar {
    background: var(--bg-dark) !important;
    border-top: 2px solid var(--accent-gold);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
    display: flex;
    width: 100%;
}

.mobile-action-bar a {
    color: var(--text-light) !important;
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.85rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-action-bar a:last-child {
    border-right: none;
}

.mobile-action-bar a i {
    font-size: 1.1rem;
    margin-bottom: 3px;
    color: var(--accent-gold);
}

.mobile-action-bar a.bg-primary-gold {
    background-color: var(--accent-gold) !important;
    color: var(--bg-dark) !important;
}

.mobile-action-bar a.bg-primary-gold i {
    color: var(--bg-dark) !important;
}

.mobile-action-bar a.bg-whatsapp {
    background-color: #25d366 !important;
}

.mobile-action-bar a.bg-whatsapp i {
    color: #fff !important;
}

/* Modals */
.modal-content {
    border-radius: 12px;
    border: 2px solid var(--accent-gold);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    overflow: hidden;
    position: relative;
}

.modal-content .close {
    color: var(--accent-gold-dark);
    font-size: 2rem;
    opacity: 0.85;
    transition: var(--transition-smooth);
    background: transparent;
    border: none;
}

.modal-content .close:hover {
    color: var(--primary-green);
    transform: scale(1.1);
    opacity: 1;
}

.modal-content .close:focus {
    outline: none;
}

.modal-body {
    padding: 3rem 2.25rem 2.25rem 2.25rem;
}

.modal-body h6 {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1.75rem !important;
    border-bottom: 2px solid var(--accent-gold-light);
    padding-bottom: 0.75rem;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Footer Section */
footer {
    background-color: #050d08 !important;
    border-top: 3px solid var(--accent-gold);
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.85rem;
}

footer strong {
    color: var(--accent-gold);
}

footer a {
    color: var(--accent-gold) !important;
    transition: var(--transition-smooth);
}

footer a:hover {
    color: var(--accent-gold-light) !important;
    text-decoration: none;
}

footer hr {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Back to Top */
.back-to-top-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid var(--accent-gold);
}

.back-to-top-btn:hover {
    background-color: var(--accent-gold-dark) !important;
    transform: translateY(-3px);
}

/* Mobile Responsiveness & Typography Optimization */
@media (max-width: 767px) {
    /* Headings & Text sizes */
    h1, .h1 {
        font-size: 1.65rem !important;
        line-height: 1.25 !important;
        font-weight: 600 !important;
    }
    
    .display-4 {
        font-size: 1.65rem !important;
        line-height: 1.25 !important;
        font-weight: 600 !important;
    }
    
    h2, .h2 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        font-weight: 600 !important;
    }
    
    h3, .h3 {
        font-size: 1.2rem !important;
        font-weight: 600 !important;
    }
    
    .overview-h2 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        font-weight: 600 !important;
    }
    
    .section-title-wrapper h2 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        font-weight: 600 !important;
    }
    
    .section-title-wrapper p {
        font-size: 0.85rem !important;
        margin-top: 0.5rem !important;
        font-weight: 400 !important;
    }
    
    .lead {
        font-size: 0.95rem !important;
        font-weight: 400 !important;
    }
    
    body {
        font-size: 0.85rem !important;
        font-weight: 400 !important;
        padding-bottom: 85px !important;
    }

    /* Section Spacing */
    section, .py-5 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

    /* Hero adjustments */
    .hero-wrapper {
        min-height: 480px;
    }

    .hero-container {
        padding: 2rem 1rem !important;
    }

    .hero-container span {
        font-size: 0.75rem !important;
        padding: 0.2rem 0.5rem !important;
    }

    .hero-container h4 {
        font-size: 1.25rem !important;
    }

    /* Trust bar mobile spacing */
    .trust-bar {
        padding: 0.5rem 0 !important;
    }
    
    .trust-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        padding: 0.75rem 0.5rem !important;
        justify-content: flex-start !important;
    }

    .trust-item:nth-child(even) {
        border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .trust-item:nth-child(3), .trust-item:nth-child(4) {
        border-bottom: none !important;
    }

    .trust-item-icon {
        font-size: 1.3rem !important;
        margin-right: 0.6rem !important;
    }

    .trust-item-text h6 {
        font-size: 0.75rem !important;
        margin-bottom: 0.1rem !important;
    }

    .trust-item-text p {
        font-size: 0.65rem !important;
        margin-bottom: 0 !important;
    }

    /* Forms */
    .glass-form-card {
        padding: 1.5rem !important;
    }

    /* Stats Card Grid */
    .overview-stats-card {
        margin-top: 2rem;
        padding: 1.5rem !important;
    }
    
    .stat-number {
        font-size: 1.45rem !important;
    }
    
    .stat-label {
        font-size: 0.7rem !important;
    }

    /* Video section */
    #founders-vision h2 {
        font-size: 1.7rem !important;
        line-height: 1.35 !important;
    }

    /* Amenities Grid adjustments */
    .amenities-section {
        padding: 3rem 0 !important;
    }

    .amenity-card {
        height: 240px !important;
    }

    .amenity-title {
        font-size: 1.15rem !important;
    }

    /* Map and highlights */
    .map-card {
        min-height: 300px !important;
    }
    
    .map-card iframe {
        min-height: 300px !important;
    }

    .location-item {
        padding: 0.85rem 1rem !important;
        font-size: 0.85rem !important;
    }

    .location-badge {
        padding: 0.3rem 0.65rem !important;
        font-size: 0.75rem !important;
    }

    /* Modals */
    .modal-body {
        padding: 2rem 1.5rem !important;
    }

    .modal-body h6 {
        font-size: 1.25rem !important;
    }
}
