/*
Theme Name: Luxury Real Estate
Author: Antigravity
Description: A custom, luxury real estate theme with WooCommerce integration.
Version: 1.0
Text Domain: luxury-real-estate
*/

:root {
    /* Background */
    --bg-color: #FFFFFF;

    /* Primary Colors */
    --primary-1: #0E1126;
    --primary-2: #1B1F33;
    --primary-3: #39404D;

    /* Secondary Colors */
    --secondary-1: #9C5D3C;
    --secondary-2: #AF37FF;
    --secondary-3: #CBD4E1;

    /* Gradients */
    --gradient-1: linear-gradient(135deg, #2A3FFF 0%, #5A29FF 100%); /* Primary Blue/Purple */
    --gradient-2: linear-gradient(135deg, #9C5D3C 0%, #D98C52 100%); /* Accent Gold/Brown */
    --gradient-3: linear-gradient(135deg, #5A29FF 0%, #3B4762 100%);

    /* Typography */
    --font-main: 'Open Sans', sans-serif;

    /* Border Radius */
    --radius-main: 10px;
}

/* Base Reset & Typography */
body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--primary-1);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* ============================================================
   GLOBAL MOBILE GUTTER — ensures nothing touches screen edges
   Applies to ALL viewports ≤ 768px site-wide
   ============================================================ */
@media (max-width: 768px) {
    /* Prevent horizontal overflow globally */
    html, body {
        overflow-x: hidden;
    }

    /* Any direct child of body that is full-width */
    #page {
        overflow-x: hidden;
    }

    /* All named containers & section wrappers */
    .container,
    .header-container,
    .footer-container,
    .footer-bottom {
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box;
    }

    /* Sections that wrap content without .container */
    .stats-section .container,
    .why-rajmandir .container,
    .connect-box-full .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* Tighten further on very small phones */
@media (max-width: 400px) {
    .container,
    .header-container,
    .footer-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-1); /* #0E1126 */
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

a.gold {
    color: var(--secondary-1); /* Gold/Brown accent */
}

/* Gradient Text Utility */
.text-gradient {
    position: relative;
    display: inline;
    transition: all 0.3s ease;
    color: var(--primary-3) !important;
    text-decoration: underline !important;
    text-underline-offset: 4px;
}

.text-gradient:hover {
    background: var(--gradient-1); /* Use primary button gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none !important;
}

a {
    color: var(--secondary-1);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-2);
}

/* Utility Classes for Luxury Feel */
/* Global Luxury Button Style */
.lux-btn {
    display: inline-block;
    text-align: center;
    padding: 11px 32px;
    background: transparent;
    color: #fff;
    border-radius: 10px; /* Applied 10px radius thoroughly */
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(42, 63, 255, 0.1);
    position: relative;
    z-index: 1;
}

/* Default Gradient Background */
.lux-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: var(--gradient-1); /* Blue/Purple Primary */
    z-index: -2;
    transition: all 0.4s ease;
}

/* Inner Fill for Inverted Hover */
.lux-btn::after {
    content: '';
    position: absolute;
    inset: 2px; /* Leaves a 2px rim acting as the gradient border */
    border-radius: 8px; /* Inner radius */
    background: #fff;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lux-btn:hover {
    color: #2A3FFF; /* Extract pure color from primary gradient */
    transform: translateY(-2px);
    /* 3-Layer Luminous Border Glow */
    box-shadow: 
        0 0 10px rgba(42, 63, 255, 0.7), /* Layer 1: Sharp Edge Glow */
        0 0 25px rgba(42, 63, 255, 0.3), /* Layer 2: Soft Atmospheric Bloom */
        inset 0 0 5px rgba(255, 255, 255, 0.4); /* Layer 3: Inner Rim Highlight */
}

.lux-btn:hover::after {
    opacity: 1;
}

/* Alternate Button (Gold/Brown) */
.lux-btn.alt {
    box-shadow: 0 4px 12px rgba(156, 93, 60, 0.1);
}

.lux-btn.alt::before {
    background: var(--gradient-2);
}

.lux-btn.alt:hover {
    color: #9C5D3C;
    /* 3-Layer Luminous Border Glow (Gold) */
    box-shadow: 
        0 0 10px rgba(156, 93, 60, 0.7), 
        0 0 25px rgba(156, 93, 60, 0.3), 
        inset 0 0 5px rgba(255, 255, 255, 0.4);
}

/* Luxury Outline Button */
.lux-btn-outline {
    display: inline-block;
    padding: 11px 36px;
    background: transparent;
    color: var(--primary-1);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 10px;
    border: 2px solid var(--primary-1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.lux-btn-outline:hover {
    background: var(--gradient-1);
    color: #fff;
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(42, 63, 255, 0.3);
}

/* Luxury Text Link */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.lux-text-link {
    display: flex;
    align-items: center;
    color: var(--primary-1);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.lux-text-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.lux-text-link:hover {
    color: var(--secondary-2);
}

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

.lux-text-link:hover svg {
    transform: translateX(5px);
    stroke: var(--secondary-2);
}

@media (max-width: 768px) {
    .section-header-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 20px;
    }
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-main);
    display: block;
}

/* --- Luxury Header Refresh (Transparent to Solid) --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: #ffffff;
    padding: 15px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

/* Scrolled State (Homepage) & Default State (Other Pages) */
.site-header,
.site-header.scrolled {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 10px 40px rgba(14, 17, 38, 0.1);
}

.site-header .site-title,
.site-header.scrolled .site-title {
    background: var(--gradient-1); /* Use brand gradient always */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-header .site-nav a,
.site-header.scrolled .site-nav a {
    color: var(--primary-1);
    opacity: 0.8;
}

.site-header .site-nav a::after,
.site-header.scrolled .site-nav a::after {
    background: var(--gradient-1);
}

/* Navigation Spacing & Style Refinement */
.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px;
}

.site-nav a {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    padding: 10px 0;
    transition: all 0.3s ease;
    display: flex; /* Added for icon alignment */
    align-items: center;
    gap: 8px; /* Space between icon and text */
}

.star-icon {
    width: 11px; /* Smaller, delicate size */
    height: 11px;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: rotate(0deg);
    fill: url(#brandGradient); /* Filled with brand gradient */
    display: inline-block;
}

.site-nav a:hover .star-icon {
    transform: rotate(360deg);
}

.site-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav a:hover {
    opacity: 1;
}

.site-nav a:hover::after {
    width: 100%; /* Full length underline */
}

/* Header Reveal/Hide Animation */
.site-header.header-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

@media (max-width: 992px) {
    .site-nav { display: none; }
    .header-container { padding: 0 20px; }
}

/* Footer Styles */
.site-footer {
    background: var(--primary-2);
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 0; /* Eliminated gap */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-widget h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo-full {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 25px;
}

.footer-widget.branding p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-menu a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-widget p strong {
    color: var(--secondary-2);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Homepage Premium Sections
   ========================================================================== */

/* Property Card Design */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.property-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(203, 212, 225, 0.3);
}

.property-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(14, 17, 38, 0.12);
}

.property-image-wrapper {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.property-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.property-card:hover .property-image-wrapper img {
    transform: scale(1.15);
}

/* Category/Discount Tags */
.property-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-1);
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
}

.lux-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #D62828; /* Premium Deep Red for focus */
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
}

.property-details {
    padding: 25px 30px; /* Tighter padding */
}

.property-details h3 {
    font-size: 20px; /* Slightly smaller for density */
    font-weight: 700;
    margin-bottom: 8px; /* Tighter gap */
    color: var(--primary-1);
    line-height: 1.3;
}

.property-price {
    font-size: 22px; /* Balanced size */
    font-weight: 700;
    background: var(--gradient-1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px; /* Tighter gap */
    display: flex;
    align-items: baseline;
    gap: 10px;
    letter-spacing: -0.5px;
}

.price-old {
    font-size: 16px;
    color: var(--primary-3);
    text-decoration: line-through;
    opacity: 0.5;
    font-weight: 600;
    -webkit-text-fill-color: var(--primary-3); /* Override gradient */
}

.property-desc {
    font-size: 14px;
    color: var(--primary-3);
    margin-bottom: 25px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* View More Text Link Styles */
.view-more-wrapper {
    margin-top: auto;
}

.view-more-btn {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 5px 0;
}

.view-more-btn::after {
    content: '→';
    font-size: 18px;
    transition: transform 0.3s ease;
}

.view-more-btn:hover {
    color: var(--secondary-2);
    gap: 12px; /* Subtle expansion on hover */
}

.view-more-btn:hover::after {
    transform: translateX(5px);
}

/* Make Whole Card Clickable */
.property-card-link {
    position: absolute;
    inset: 0;
    z-index: 10;
}

/* 1. Global Section Utilities */
.section-padding {
    padding: 100px 0;
}

.section-subtitle {
    font-size: 13px;
    font-weight: 700;
    background: var(--gradient-1); /* Blue/Purple Primary */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px; /* Standardized gap */
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gradient-1);
    display: inline-block;
    opacity: 0.6;
}

.section-title-lux {
    font-size: clamp(26px, 4vw, 42px); /* Scaled down standard size */
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--primary-1); /* Standardized to #0E1126 per request */
}

/* 2. About Rajmandir (Split Layout) */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-stack {
    position: relative;
    padding-right: 40px;
}

.about-img-main {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.about-img-accent {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 250px;
    height: 350px;
    border-radius: 20px;
    border: 10px solid #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    object-fit: cover;
    z-index: 2;
}

/* 3. Animated Stats (Premium Redesign) */
.stats-section {
    background: #F9FAFB; /* Match Why Rajmandir */
    padding: 100px 0;
    color: var(--primary-1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
}

.stat-item {
    background: #fff;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(203, 212, 225, 0.3);
    overflow: hidden;
    z-index: 1;
}

.stat-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(14, 17, 38, 0.08);
    border-color: transparent;
}

.stat-item:hover::after {
    opacity: 0.05; /* Subtle creative shimmer */
}

.stat-num {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    background: var(--gradient-1); /* Reverting to primary blue gradient for light theme */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-1);
    opacity: 0.9;
}

/* 4. Cities We Serve (Grid) */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.city-card {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 25px;
    overflow: hidden;
    display: block;
    z-index: 1;
}

.city-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 17, 38, 0.9) 0%, rgba(14, 17, 38, 0.4) 40%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    pointer-events: none;
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.city-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 17, 38, 0.7) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    z-index: 2;
    transition: all 0.5s ease;
}

.city-name {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
}

.city-card:hover img {
    transform: scale(1.15);
}

.city-card:hover::after {
    opacity: 1;
}

.city-card:hover .city-name {
    transform: translateY(-5px);
    transition: transform 0.5s ease;
}

/* 5. Why Choose Us (Redesign) */
.why-rajmandir {
    background: #F9FAFB;
    padding: 100px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-box {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-1);
    transition: width 0.4s ease;
    z-index: 1;
}

.feature-box:hover {
    /* Kept base shadow, removed scale/translate lift */
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.feature-box:hover::after {
    width: 100%; /* Slide-in gradient effect matching the button style */
}

/* Transform text to white over the new dark gradient hover */
.feature-box:hover .feat-icon,
.feature-box:hover .feat-title {
    color: #fff;
}

.feature-box:hover .feat-desc {
    color: rgba(255, 255, 255, 0.9);
}

.feat-icon, .feat-title, .feat-desc {
    position: relative;
    z-index: 2; /* Ensure content stays above the gradient */
    transition: color 0.4s ease; /* Smooth text color change */
}

.feat-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
}

.feat-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feat-desc {
    font-size: 14px;
    color: var(--primary-3);
    line-height: 1.6;
}

/* 6. More Than Company */
.cinematic-banner {
    position: relative;
    height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #000;
    border-radius: 40px; /* Modern rounded corners */
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2); /* Deep lift */
}

.cinematic-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(14, 17, 38, 0.8), rgba(14, 17, 38, 0.4), rgba(14, 17, 38, 0.8));
    z-index: 1;
}

.banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: 0;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    color: #fff;
    padding: 0 20px;
}

.banner-content .section-subtitle {
    filter: brightness(1.3);
}

/* Full-Width Investment CTA Banner */
.investment-cta {
    background: #0E1126; /* Match Footer Primary */
    position: relative;
    width: 100%;
    height: 350px; /* Reduced for better proportion */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.investment-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    opacity: 0.2; /* Slightly darker for better contrast */
    mix-blend-mode: overlay;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 5;
    width: 100%;
    padding: 20px;
}

.cta-headline {
    font-size: clamp(28px, 4vw, 42px) !important; /* Scaled for height constraint */
    color: #fff !important;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-subtext {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.lux-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 35px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
}

.lux-btn-outline:hover {
    background: #fff;
    color: #0E1126;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .investment-cta {
        height: auto;
        min-height: 450px;
        padding: 60px 0;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .lux-btn, .lux-btn-outline {
        width: 100%;
        max-width: 300px;
    }
}

.banner-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff !important;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.banner-text {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 45px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .about-split, .why-grid, .cities-grid, .stats-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .about-image-stack {
        padding-right: 0;
        margin-bottom: 60px;
    }
}