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

:root {
    --primary-color: #D4AF37;
    --primary-hover: #B8941F;
    --secondary-color: #1a1a1a;
    --secondary-dark: #000000;
    --text-color: #333333;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --light-bg: #f5f5f5;
    --bg-light: #fafafa;
    --white: #ffffff;
    --dark: #000000;
    --gray: #666666;
    --light-gray: #e5e5e5;
    --border-color: #dddddd;
    --gold-light: #E8D5A3;
    --gold-dark: #B8941F;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    /* Original website colors */
    --dark-brown: #2d1810;
    --dark-brown-2: #3d2518;
    --nav-dark: linear-gradient(135deg, #2d1810 0%, #3d2518 50%, #2d1810 100%);
    --gold-border: rgba(212, 175, 55, 0.6);
    --gold-border-light: rgba(212, 175, 55, 0.3);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Responsive Container */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
}

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

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

/* Header Styles */
.header {
    background: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

/* Prevent body scroll when hero popup is open */
body.popup-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

.header.scrolled {
    background: linear-gradient(90deg, #6c1108 0%, #da4536 50%, #640f06 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

/* Navbar always has same style - no changes on scroll */
.nav-menu a {
    color: var(--primary-color);
}

.nav-menu a:hover {
    color: var(--gold-light);
}

.phone-number {
    color: var(--primary-color);
}

.logo h2 {
    color: var(--primary-color);
}

.btn-brochure {
    background: var(--primary-color);
    color: var(--secondary-dark);
}

.btn-brochure:hover {
    background: var(--gold-light);
}

.header.scrolled .nav-menu a {
    color: var(--primary-color);
}

.header.scrolled .nav-menu a:hover {
    color: var(--gold-light);
}

.header.scrolled .phone-number {
    color: var(--primary-color);
}

.header.scrolled .logo h2 {
    color: var(--primary-color);
}

.header.scrolled .btn-brochure {
    background: var(--primary-color);
    color: var(--secondary-dark);
}

.header.scrolled .btn-brochure:hover {
    background: var(--gold-light);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    flex-wrap: nowrap;
    gap: 12px;
    overflow: visible;
    min-height: 70px;
    max-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-shrink: 0;
    min-width: fit-content;
    height: 100%;
    max-height: 70px;
}

.logo img {
    height: 65px;
    width: auto;
    max-height: 65px;
    filter: brightness(1.2) saturate(1.1);
    object-fit: contain;
    max-width: 220px;
    display: block;
}

.logo h2 {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: nowrap;
    flex: 1;
    justify-content: center;
    min-width: 0;
    overflow: visible;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 5px 6px;
}

.nav-menu a i {
    font-size: 13px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.nav-menu a:hover {
    color: var(--gold-light);
}

.nav-menu a:hover i {
    color: var(--gold-light);
}

.header.scrolled .nav-menu a {
    color: var(--primary-color);
    font-weight: 600;
}

.header.scrolled .nav-menu a:hover {
    color: var(--gold-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    min-width: fit-content;
}

.btn-brochure {
    background: var(--primary-color);
    color: var(--secondary-dark);
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 11px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    border: none;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
    line-height: 1.2;
}

.btn-brochure i {
    font-size: 11px;
    color: var(--secondary-dark);
    flex-shrink: 0;
}

.btn-brochure:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
}

.btn-whatsapp {
    background: var(--primary-color);
    color: var(--secondary-dark);
    width: 38px;
    height: 38px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.btn-whatsapp:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
}

.btn-phone {
    background: var(--primary-color);
    color: var(--secondary-dark);
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 11px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-phone i {
    font-size: 11px;
    color: var(--secondary-dark);
    flex-shrink: 0;
}

.btn-phone:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
}

.phone-number {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

.header.scrolled .phone-number {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary-dark);
    transition: all 0.3s;
    background: var(--primary-color);
    width: 45px;
    height: 45px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.mobile-menu-toggle:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
}

.mobile-menu-toggle.active {
    background: var(--gold-light);
}

/* Contact Button */
.hero {
    position: relative;
    margin-top: 0;
    padding-top: 0;
    width: 100%;
    overflow-x: hidden;
}

/* Prevent hero from overlapping with fixed header */
.hero-slider {
    margin-top: 0;
    padding-top: 0;
    position: relative;
}

.hero-slide {
    margin-top: 0;
    position: relative;
}

/* Hide Hero Slider Navigation Arrows */
.hero-slider-nav {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.hero-slider-nav.prev,
.hero-slider-nav.next {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Mobile Responsive - Hero Section Below Header */
@media (max-width: 991px) {
    .hero {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-slider {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-slide {
        margin-top: 0 !important;
        padding-top: 60px !important; /* Space for fixed header */
    }
    
    .hero-content-wrapper {
        padding-top: 80px !important;
        padding-bottom: 40px !important;
    }
    
    .hero-content {
        padding-top: 80px !important;
        padding-bottom: 40px !important;
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-slider {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-slide {
        margin-top: 0 !important;
        padding-top: 60px !important; /* Space for fixed header */
    }
    
    .hero-content-wrapper {
        padding-top: 70px !important;
        padding-bottom: 30px !important;
    }
    
    .hero-content {
        padding-top: 70px !important;
        padding-bottom: 30px !important;
    }
    
    .hero-title {
        font-size: 28px !important;
        margin-bottom: 10px !important;
    }
    
    .hero-subtitle {
        font-size: 24px !important;
        margin-bottom: 8px !important;
    }
    
    .hero-description {
        font-size: 16px !important;
        margin-bottom: 6px !important;
    }
    
    .hero-tagline {
        font-size: 14px !important;
        margin-bottom: 12px !important;
    }
}

@media (max-width: 575px) {
    .hero {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-slider {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-slide {
        margin-top: 0 !important;
        padding-top: 55px !important; /* Space for fixed header */
    }
    
    .hero-content-wrapper {
        padding-top: 60px !important;
        padding-bottom: 25px !important;
    }
    
    .hero-content {
        padding-top: 60px !important;
        padding-bottom: 25px !important;
    }
    
    .hero-title {
        font-size: 22px !important;
        margin-bottom: 8px !important;
        line-height: 1.3 !important;
    }
    
    .hero-subtitle {
        font-size: 20px !important;
        margin-bottom: 6px !important;
    }
    
    .hero-description {
        font-size: 14px !important;
        margin-bottom: 5px !important;
    }
    
    .hero-tagline {
        font-size: 12px !important;
        margin-bottom: 10px !important;
    }
    
    .investment-start-text {
        font-size: 16px !important;
        margin-bottom: 15px !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 12px !important;
        margin-top: 20px !important;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-slider {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-slide {
        margin-top: 0 !important;
        padding-top: 55px !important; /* Space for fixed header */
    }
    
    .hero-content-wrapper {
        padding-top: 55px !important;
        padding-bottom: 20px !important;
    }
    
    .hero-content {
        padding-top: 55px !important;
        padding-bottom: 20px !important;
    }
    
    .hero-title {
        font-size: 20px !important;
        margin-bottom: 6px !important;
        line-height: 1.2 !important;
    }
    
    .hero-subtitle {
        font-size: 18px !important;
        margin-bottom: 5px !important;
    }
    
    .hero-description {
        font-size: 13px !important;
        margin-bottom: 4px !important;
    }
    
    .hero-tagline {
        font-size: 11px !important;
        margin-bottom: 8px !important;
    }
    
    .investment-start-text {
        font-size: 14px !important;
        margin-bottom: 12px !important;
    }
    
    .hero-features {
        gap: 10px !important;
        margin-top: 15px !important;
    }
    
    .feature-box {
        padding: 12px !important;
    }
    
    .feature-box h3 {
        font-size: 11px !important;
    }
    
    .feature-box p {
        font-size: 16px !important;
    }
}

@media screen and (max-width: 360px) {
    /* Hero Section - Small Mobile */
    .hero {
        margin-top: 0 !important;
        padding-top: 0 !important;
        min-height: 100vh !important;
    }
    
    .hero-slider {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-slide {
        margin-top: 0 !important;
        padding-top: 50px !important; /* Space for fixed header */
    }
    
    .hero-content-wrapper {
        padding-top: 50px !important;
        padding-bottom: 20px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        margin-top: 0 !important;
    }
    
    .hero-content {
        padding-top: 50px !important;
        padding-bottom: 20px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        margin-top: 0 !important;
    }
    
    .hero-title {
        font-size: 16px !important;
        margin-top: 0 !important;
        margin-bottom: 6px !important;
        line-height: 1.2 !important;
        padding-top: 0 !important;
    }
    
    .hero-subtitle {
        font-size: 14px !important;
        margin-bottom: 5px !important;
        line-height: 1.2 !important;
    }
    
    .hero-description {
        font-size: 12px !important;
        margin-bottom: 4px !important;
        line-height: 1.3 !important;
    }
    
    .hero-tagline {
        font-size: 10px !important;
        margin-bottom: 8px !important;
        line-height: 1.3 !important;
    }
    
    .investment-start-text {
        font-size: 13px !important;
        margin-bottom: 12px !important;
        line-height: 1.2 !important;
    }
    
    .hero-features {
        gap: 8px !important;
        margin-top: 12px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    .feature-box {
        padding: 10px !important;
        min-width: calc(50% - 4px) !important;
        max-width: calc(50% - 4px) !important;
        flex: 0 0 calc(50% - 4px) !important;
    }
    
    .feature-box h3 {
        font-size: 9px !important;
        margin-bottom: 4px !important;
        line-height: 1.2 !important;
    }
    
    .feature-box p {
        font-size: 14px !important;
        line-height: 1.2 !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 10px !important;
        margin-top: 15px !important;
        width: 100% !important;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100% !important;
        padding: 10px 15px !important;
        font-size: 12px !important;
        text-align: center !important;
    }
    
    /* Hero Slide Content Positioning */
    .hero-slide .hero-content-wrapper {
        padding: 15px 10px !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .hero-slide .hero-content {
        padding: 15px 10px !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
}

.contact-button-container {
    position: fixed;
    top: 75px;
    right: 30px;
    z-index: 1000;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Contact Form Wrapper - Below Button */
.contact-form-wrapper {
    display: none;
    pointer-events: auto;
    animation: slideDown 0.3s ease;
}

.contact-form-wrapper.show {
    display: block;
    opacity: 1;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold-light) 100%);
    color: var(--secondary-dark);
    padding: 12px 25px;
    margin-top: 25px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: blink-button 2s ease-in-out infinite;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    position: relative;
    white-space: nowrap;
    visibility: visible;
    opacity: 1;
}

.contact-button i {
    font-size: 16px;
    color: var(--secondary-dark);
}

.contact-button:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--primary-color) 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.8);
    animation: blink-button 2s ease-in-out infinite;
}

.contact-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .contact-button-container {
        top: 70px;
        right: 15px;
    }

    .contact-button {
        padding: 10px 18px;
        font-size: 12px;
        gap: 8px;
    }

    .contact-button i {
        font-size: 14px;
    }
}

/* Mobile View - Move Contact Button to Header */
@media (max-width: 991px) {
    /* Move contact button to header area next to toggle button */
    .contact-button-container {
        position: fixed !important;
        top: 12px !important;
        right: 60px !important;
        left: auto !important;
        bottom: auto !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0 !important;
        margin: 0 !important;
        z-index: 1001 !important;
        width: auto !important;
        height: auto !important;
        max-width: calc(100vw - 120px) !important;
    }

    .contact-button {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-top: 0 !important;
        padding: 8px 12px !important;
        font-size: 11px !important;
        gap: 6px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        height: 38px !important;
        align-items: center !important;
        justify-content: center !important;
        max-width: 100% !important;
        overflow: visible !important;
        text-overflow: clip !important;
        cursor: pointer !important;
        pointer-events: auto !important;
        border-radius: 8px !important;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold-light) 100%) !important;
        color: var(--secondary-dark) !important;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4) !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
    }

    .contact-button i {
        font-size: 12px !important;
        flex-shrink: 0 !important;
        color: var(--secondary-dark) !important;
    }
}

@media (max-width: 768px) {
    .contact-button-container {
        top: 10px !important;
        right: 55px !important;
        gap: 0 !important;
        max-width: calc(100vw - 110px) !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        z-index: 1001 !important;
    }

    .contact-button {
        padding: 7px 10px !important;
        font-size: 10px !important;
        gap: 5px !important;
        height: 36px !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        animation: blink-button 2s ease-in-out infinite !important;
    }

    .contact-button i {
        font-size: 11px !important;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (max-width: 575px) {
    .contact-button-container {
        top: 8px !important;
        right: 50px !important;
        gap: 0 !important;
        max-width: calc(100vw - 100px) !important;
    }

    .contact-button {
        padding: 6px 8px !important;
        font-size: 9px !important;
        gap: 4px !important;
        letter-spacing: 0.5px !important;
        height: 32px !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        animation: blink-button 2s ease-in-out infinite !important;
    }

    .contact-button i {
        font-size: 10px !important;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media screen and (max-width: 491px) {
    .contact-button-container {
        top: 8px !important;
        right: 45px !important;
        gap: 0 !important;
        max-width: calc(100vw - 90px) !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        z-index: 1001 !important;
    }

    .contact-button {
        padding: 6px 10px !important;
        font-size: 10px !important;
        gap: 4px !important;
        letter-spacing: 0.5px !important;
        height: 32px !important;
        width: auto !important;
        border-radius: 8px !important;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold-light) 100%) !important;
        color: var(--secondary-dark) !important;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4) !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        align-items: center !important;
        justify-content: center !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        white-space: nowrap !important;
        animation: blink-button 2s ease-in-out infinite !important;
    }

    .contact-button i {
        font-size: 10px !important;
        color: var(--secondary-dark) !important;
        flex-shrink: 0 !important;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .contact-form-wrapper {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .contact-button-container {
        top: 8px !important;
        right: 45px !important;
        gap: 0 !important;
        max-width: calc(100vw - 90px) !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        z-index: 1001 !important;
    }

    .contact-button {
        padding: 6px 10px !important;
        font-size: 9px !important;
        gap: 4px !important;
        letter-spacing: 0.5px !important;
        height: 30px !important;
        border-radius: 8px !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold-light) 100%) !important;
        color: var(--secondary-dark) !important;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4) !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        white-space: nowrap !important;
    }

    .contact-button i {
        font-size: 9px !important;
        color: var(--secondary-dark) !important;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .contact-form-wrapper {
        display: none !important;
    }
}

@media screen and (max-width: 360px) {
    .contact-button-container {
        top: 6px !important;
        right: 40px !important;
        gap: 0 !important;
        max-width: calc(100vw - 80px) !important;
    }

    .contact-button {
        padding: 5px 6px !important;
        font-size: 8px !important;
        gap: 3px !important;
        letter-spacing: 0.3px !important;
        height: 28px !important;
    }

    .contact-button i {
        font-size: 8px !important;
    }
    
    .contact-form-wrapper {
        display: none !important;
    }

    .hero-form-container {
        width: 100%;
        max-width: 100%;
        padding: 15px;
        border-radius: 10px;
    }

    .hero-form-header {
        margin-bottom: 15px;
        padding-bottom: 12px;
    }

    .hero-form-header h3 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .hero-form-header h4 {
        font-size: 12px;
    }

    .hero-form {
        gap: 10px;
    }

    .hero-form-group input {
        padding: 9px 11px;
        font-size: 13px;
    }

    .hero-checkbox-label {
        font-size: 10px;
        gap: 6px;
        line-height: 1.3;
    }

    .hero-checkbox-label input[type="checkbox"] {
        width: 14px;
        height: 14px;
    }

    .hero-form-submit-btn {
        padding: 11px;
        font-size: 13px;
    }

    .hero-contact-icons {
        gap: 8px;
        margin-top: 12px;
        padding-top: 12px;
    }

    .hero-contact-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* Responsive Navbar Styles */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 12px;
    }

    .nav-menu a {
        font-size: 12px;
        padding: 5px 6px;
        gap: 4px;
    }

    .nav-menu a i {
        font-size: 10px;
    }

    .btn-brochure {
        padding: 9px 12px;
        font-size: 9px;
    }

    .btn-phone {
        padding: 9px 12px;
        font-size: 12px;
    }

    .logo {
        max-height: 60px;
    }

    .logo img {
        height: 55px;
        max-height: 55px;
        max-width: 180px;
    }

    .header-top {
        min-height: 60px;
        max-height: 60px;
        padding: 10px 0;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        gap: 10px;
    }

    .nav-menu a {
        font-size: 11px;
        padding: 5px 5px;
    }

    .nav-menu a span {
        display: none;
    }

    .nav-menu a i {
        font-size: 10px;
    }

    .btn-brochure {
        padding: 9px 10px;
        font-size: 10px;
        gap: 4px;
    }

    .btn-brochure span {
        display: none;
    }

    .btn-phone {
        padding: 8px 10px;
        font-size: 10px;
    }
    
    .btn-phone i {
        font-size: 10px;
    }
    
    /* Ensure header-top can accommodate contact button and toggle button */
    .header-top {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
    }
    
    /* Create a container for toggle and contact button */
    .header-top .mobile-menu-toggle,
    .header-top .contact-button-container {
        display: flex !important;
        align-items: center !important;
        flex-shrink: 0 !important;
    }
}

@media (max-width: 768px) {
    .header-top {
        padding: 10px 0;
        gap: 10px;
    }

    .logo {
        max-height: 55px;
    }

    .logo img {
        height: 50px;
        max-height: 50px;
        max-width: 160px;
    }

    .header-top {
        min-height: 55px;
        max-height: 55px;
        padding: 8px 0;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #2d1810 0%, #3d2518 50%, #2d1810 100%);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.5);
        border: 2px solid rgba(212, 175, 55, 0.3);
        display: none;
        gap: 0;
        align-items: stretch;
    }

    .header.scrolled .nav-menu {
        background: linear-gradient(135deg, #2d1810 0%, #3d2518 50%, #2d1810 100%);
        border: 2px solid rgba(212, 175, 55, 0.3);
        box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    }

    .nav-menu.active,
    .nav-menu.mobile-open {
        display: flex !important;
    }

    .nav-menu a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        color: var(--primary-color);
        font-size: 14px;
        justify-content: flex-start;
        gap: 10px;
    }

    .nav-menu a span {
        display: inline;
    }

    .nav-menu a i {
        font-size: 16px;
    }

    .header.scrolled .nav-menu a {
        color: var(--primary-color);
        font-weight: 600;
    }

    .header.scrolled .nav-menu a:hover {
        color: var(--gold-light);
    }

    .hero-slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .hero-slider-nav.prev {
        left: 15px;
    }

    .hero-slider-nav.next {
        right: 15px;
    }

    .hero-popup-header {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
        min-height: auto;
    }

    .hero-popup-content {
        width: 95%;
        margin: 10px auto;
    }

    .we-promise-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .promise-item-popup {
        padding: 15px;
    }

    .promise-item-popup i {
        font-size: 36px;
        min-width: 50px;
    }

    .promise-item-popup h3 {
        font-size: 20px;
    }

    .m3m-logo-hero-popup h2 {
        font-size: 24px;
    }

    .form-instruction {
        font-size: 14px;
    }

    .close-hero-popup {
        right: 10px;
        top: 10px;
        width: 35px;
        height: 35px;
        font-size: 30px;
    }

    .hero-popup-content {
        max-height: 90vh;
        overflow-y: auto;
    }
}


/* Promise Section */
.promise-section {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
}

.promise-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--secondary-color);
    font-weight: 700;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.promise-item {
    text-align: center;
    padding: 30px 20px;
}

.promise-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s;
}

.promise-item:hover i {
    transform: scale(1.1);
}

.promise-item h3 {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 600;
}

.m3m-logo-modal {
    text-align: center;
    margin-bottom: 20px;
}

.m3m-logo-modal h2 {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: bold;
}

/* Hero Popup Modal Styles */
.hero-popup-modal {
    display: none !important;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.9);
    overflow-y: auto;
    overflow-x: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.hero-popup-modal.show {
    display: flex !important;
    opacity: 1 !important;
}

@keyframes fadeInModal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-popup-content {
    background: var(--nav-dark);
    margin: 20px auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 700px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    border: 2px solid var(--gold-border);
    animation: slideUp 0.5s ease-out;
    overflow: hidden;
    z-index: 10000;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
}

/* Responsive Popup */
@media (max-width: 992px) {
    .hero-popup-content {
        width: 95%;
        max-width: 650px;
        margin: 15px auto;
        max-height: 85vh;
    }
}

@media (max-width: 768px) {
    .hero-popup-content {
        width: 95%;
        max-width: 550px;
        margin: 10px auto;
        max-height: 90vh;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .hero-popup-content {
        width: 95%;
        max-width: 100%;
        margin: 5px auto;
        max-height: 95vh;
        border-radius: 10px;
        border-width: 2px;
    }
}

.hero-popup-content::-webkit-scrollbar {
    width: 8px;
}

.hero-popup-content::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
}

.hero-popup-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.hero-popup-content::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-hero-popup {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    border: 2px solid var(--primary-color);
}

.close-hero-popup:hover {
    color: var(--white);
    background: var(--primary-color);
    transform: rotate(90deg);
}

.hero-popup-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 25px;
    min-height: auto;
}

/* Responsive Popup Header */
@media (max-width: 992px) {
    .hero-popup-header {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .hero-popup-header {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px 20px;
    }

    .hero-popup-left {
        padding: 15px;
    }

    .we-promise-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .promise-item-popup {
        padding: 12px;
        gap: 12px;
    }

    .promise-item-popup i {
        font-size: 30px;
        min-width: 40px;
    }

    .promise-item-popup h3 {
        font-size: 16px;
    }

    .m3m-logo-hero-popup {
        padding: 12px;
        margin-bottom: 20px;
    }

    .m3m-logo-hero-popup h2 {
        font-size: 20px;
    }

    .m3m-logo-hero-popup p {
        font-size: 12px;
    }

    .hero-popup-form-section {
        padding: 12px;
    }

    .form-instruction {
        font-size: 13px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .hero-popup-header {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 15px;
    }

    .hero-popup-left {
        padding: 10px;
    }

    .we-promise-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .promises-list {
        gap: 15px;
    }

    .promise-item-popup {
        padding: 10px;
        gap: 10px;
    }

    .promise-item-popup i {
        font-size: 26px;
        min-width: 35px;
    }

    .promise-item-popup h3 {
        font-size: 14px;
    }

    .m3m-logo-hero-popup {
        padding: 10px;
        margin-bottom: 15px;
    }

    .m3m-logo-hero-popup h2 {
        font-size: 18px;
        letter-spacing: 1.5px;
    }

    .m3m-logo-hero-popup p {
        font-size: 11px;
        margin: 6px 0 0;
    }

    .hero-popup-form-section {
        padding: 10px;
    }

    .form-instruction {
        font-size: 12px;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .form-group-hero {
        margin-bottom: 12px;
    }

    .form-group-hero input {
        padding: 10px;
        font-size: 14px;
    }

    .checkbox-group-hero label {
        font-size: 11px;
        gap: 8px;
    }

    .checkbox-group-hero input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }

    .btn-submit-hero {
        padding: 12px;
        font-size: 14px;
        margin-top: 3px;
    }

    .close-hero-popup {
        right: 10px;
        top: 10px;
        width: 30px;
        height: 30px;
        font-size: 24px;
    }
}

.hero-popup-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
}

.we-promise-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

.promises-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.promise-item-popup {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s;
}

.promise-item-popup:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.promise-item-popup i {
    font-size: 28px;
    color: var(--primary-color);
    min-width: 35px;
    text-align: center;
}

.promise-item-popup h3 {
    font-size: 15px;
    color: var(--white);
    font-weight: 600;
    margin: 0;
}

.m3m-logo-hero-popup {
    text-align: center;
    margin-bottom: 15px;
    padding: 10px;
    background: transparent;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    position: relative;
}

.popup-logo-img {
    max-width: 150px;
    width: auto;
    height: auto;
    max-height: 80px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    filter: brightness(1.2) saturate(1.1);
    object-fit: contain;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Ensure logo container shows image */
.m3m-logo-hero-popup img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Fallback text when logo doesn't load */
.m3m-logo-hero-popup div[style*="display:none"] {
    display: none !important;
}

.m3m-logo-hero-popup div[style*="display:block"] {
    display: block !important;
    text-align: center;
}

.m3m-logo-hero-popup div[style*="display:block"] h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.m3m-logo-hero-popup div[style*="display:block"] p {
    font-size: 12px;
    color: var(--white);
    margin: 6px 0 0;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Responsive Logo in Popup */
@media (max-width: 768px) {
    .popup-logo-img {
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .popup-logo-img {
        max-width: 120px;
    }
}

.m3m-logo-hero-popup h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.m3m-logo-hero-popup p {
    font-size: 12px;
    color: var(--white);
    margin: 6px 0 0;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-popup-form-section {
    padding: 0;
}

.form-instruction {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.4;
}

.form-group-hero {
    margin-bottom: 12px;
}

.form-group-hero input {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-size: 14px;
    background: rgba(0,0,0,0.4);
    color: var(--white);
    transition: all 0.3s;
    box-sizing: border-box;
}

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

.form-group-hero input:focus {
    outline: none;
    border-color: var(--gold-light);
    background: rgba(0,0,0,0.6);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.checkbox-group-hero {
    margin: 15px 0;
}

.checkbox-group-hero label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--white);
    font-size: 12px;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-group-hero input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.checkbox-group-hero span {
    flex: 1;
}

.btn-submit-hero {
    width: 100%;
    background: var(--primary-color);
    color: var(--secondary-dark);
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    margin-top: 5px;
}

.btn-submit-hero:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    overflow: auto;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s;
}

.pre-register-modal-content {
    background: var(--nav-dark);
    border: 2px solid var(--gold-border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.pre-register-modal-content .m3m-logo-modal {
    text-align: center;
    margin-bottom: 15px;
}

.pre-register-modal-content .m3m-logo-modal h2 {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.pre-register-title {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
}

.pre-register-modal-content .form-group input {
    background: rgba(0,0,0,0.4);
    border: 2px solid var(--gold-border);
    color: var(--white);
    padding: 12px 15px;
    border-radius: 8px;
}

.pre-register-modal-content .form-group input::placeholder {
    color: rgba(255,255,255,0.6);
}

.pre-register-modal-content .form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.pre-register-modal-content .checkbox-group label {
    color: var(--white);
    font-size: 13px;
    line-height: 1.6;
}

.pre-register-modal-content .close-modal {
    color: var(--primary-color);
}

.pre-register-modal-content .close-modal:hover {
    color: var(--gold-light);
}

.btn-submit-pre-register {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold-light) 100%);
    color: var(--secondary-dark);
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    margin-top: 5px;
}

.btn-submit-pre-register:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.contact-icons-bottom {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-icon-item {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--secondary-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.contact-icon-item:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--gray);
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--dark);
}

.modal-content h2 {
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-size: 20px;
}

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

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-size: 16px;
}

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

.form-group.otp-group {
    display: flex;
    gap: 10px;
}

.form-group.otp-group input {
    flex: 1;
}

.btn-otp, .btn-verify {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-otp:hover, .btn-verify:hover {
    background: var(--primary-hover);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: var(--gray);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: var(--primary-hover);
}

/* Hero Section */
.hero {
    position: relative;
    color: var(--white);
    padding: 0;
    text-align: center;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
    z-index: 1;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 148, 31, 0.05) 100%);
    opacity: 0.3;
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    height: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 120px 20px 60px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-slide .hero-content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1400px;
    padding: 40px 20px;
}

.hero-content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.hero-content-right {
    display: none;
    justify-content: flex-end;
    align-items: center;
    transition: all 0.3s ease;
}

.hero-content-right.show {
    display: flex;
    opacity: 1;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Hero Form Right */
@media (max-width: 991px) {
    .hero-content-right {
        justify-content: center;
        width: 100%;
        padding: 15px;
    }

    .hero-content-right.show {
        display: flex !important;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-content-right {
        padding: 10px;
    }

    .hero-content-right.show {
        display: flex !important;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content-right {
        padding: 5px;
    }

    .hero-content-right.show {
        display: flex !important;
        width: 100%;
        max-width: 100%;
        padding: 10px 5px;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 140px 20px 60px;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-slide .hero-content {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    padding: 40px 20px;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 12px;
    margin-top: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    line-height: 1.2;
    text-align: left;
    color: var(--white);
    width: 100%;
}

.hero-subtitle {
    font-size: 38px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    line-height: 1.3;
    text-align: left;
    width: 100%;
}

.hero-description {
    font-size: 22px;
    margin-bottom: 8px;
    line-height: 1.4;
    text-align: left;
    color: var(--white);
    width: 100%;
}

.hero-tagline {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--light-gray);
    line-height: 1.4;
    text-align: left;
    width: 100%;
}

.investment-start-text {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
    text-align: left;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.5);
}

/* Blink Animation for Hero Text */
@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255,255,255,0.8), 0 0 20px rgba(212, 175, 55, 0.6);
    }
    25%, 75% {
        opacity: 0.6;
        text-shadow: 0 0 5px rgba(255,255,255,0.4), 0 0 10px rgba(212, 175, 55, 0.3);
    }
}

.blink-text {
    animation: blink 2s ease-in-out infinite;
}

.blink-text-delay {
    animation: blink 2s ease-in-out infinite 0.3s;
}

.blink-text-delay-2 {
    animation: blink 2s ease-in-out infinite 0.6s;
}

.blink-text-delay-3 {
    animation: blink 2s ease-in-out infinite 0.9s;
}

/* Blink Animation for Contact Button */
@keyframes blink-button {
    0%, 50%, 100% {
        opacity: 1;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.6), 0 0 20px rgba(212, 175, 55, 0.8);
        transform: scale(1);
    }
    25%, 75% {
        opacity: 0.8;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3), 0 0 10px rgba(212, 175, 55, 0.4);
        transform: scale(0.98);
    }
}

@keyframes blink-box {
    0%, 50%, 100% {
        opacity: 1;
        border-color: rgba(212, 175, 55, 0.8);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    }
    25%, 75% {
        opacity: 0.8;
        border-color: rgba(212, 175, 55, 0.4);
        box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
    }
}

.blink-box {
    animation: blink-box 2.5s ease-in-out infinite;
}

.blink-box-delay {
    animation: blink-box 2.5s ease-in-out infinite 0.4s;
}

.blink-box-delay-2 {
    animation: blink-box 2.5s ease-in-out infinite 0.8s;
}

@keyframes blink-investment {
    0%, 50%, 100% {
        opacity: 1;
        color: var(--primary-color);
        text-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
    }
    25%, 75% {
        opacity: 0.7;
        color: var(--gold-light);
        text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
    }
}

.blink-investment {
    animation: blink-investment 2s ease-in-out infinite 1.2s;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
    max-width: 100%;
    width: 100%;
    padding: 0;
}

.feature-box {
    background: rgba(0,0,0,0.75);
    padding: 18px 15px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold-border);
    transition: all 0.3s;
}

.feature-box:hover {
    background: rgba(0,0,0,0.9);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
}

.feature-box.investment-highlight {
    margin: 0;
    padding: 18px 15px;
    background: rgba(0,0,0,0.75);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold-border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s;
}

.feature-box.investment-highlight:hover {
    background: rgba(0,0,0,0.9);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
}

.feature-box.investment-highlight h3 {
    font-size: 13px;
    margin-bottom: 8px;
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.3;
}

.feature-box.investment-highlight p {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.5);
    line-height: 1.2;
}

/* Hero Form Container - Right Side */
.hero-form-container {
    background: var(--nav-dark);
    border: 2px solid var(--gold-border);
    border-radius: 12px;
    padding: 20px;
    width: 320px;
    max-width: 320px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    position: relative;
    box-sizing: border-box;
}

.hero-form-header {
    text-align: center;
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold-border-light);
}

.hero-form-header h3 {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.hero-form-header h4 {
    font-size: 14px;
    color: var(--white);
    font-weight: 600;
    margin: 0;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-form-group {
    width: 100%;
}

.hero-form-group input {
    width: 100%;
    padding: 10px 12px;
    background: rgba(0,0,0,0.4);
    border: 2px solid var(--gold-border);
    border-radius: 6px;
    color: var(--white);
    font-size: 14px;
    transition: all 0.3s;
    box-sizing: border-box;
}

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

.hero-form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0,0,0,0.6);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.hero-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--white);
    font-size: 11px;
    line-height: 1.4;
    cursor: pointer;
}

.hero-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.hero-checkbox-label span {
    flex: 1;
}

.hero-form-submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--secondary-dark);
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    margin-top: 5px;
}

.hero-form-submit-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.hero-contact-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid var(--gold-border-light);
}

.hero-contact-icon {
    width: 35px;
    height: 35px;
    background: rgba(0,0,0,0.4);
    border: 2px solid var(--gold-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.hero-contact-icon:hover {
    background: var(--primary-color);
    color: var(--secondary-dark);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
}

.hero-content-left .hero-buttons {
    justify-content: center;
}

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

.feature-box h3 {
    font-size: 13px;
    margin-bottom: 8px;
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.3;
}

.feature-box p {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.5);
    line-height: 1.2;
}


.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-transform: uppercase;
}

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

/* About Section */
.about-section {
    padding: 80px 0;
    background: #600e05;
}

.about-section .section-title {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    /* color: var(--white); */
    color:#fee2a9;
    font-weight: 700;
}

.about-section .section-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--secondary-color);
    font-weight: 700;
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 40px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-section .feature-card {
    background: rgba(0,0,0,0.4);
    border: 2px solid var(--gold-border-light);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-section .feature-card:hover {
    background: rgba(0,0,0,0.5);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.feature-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.about-section .feature-card h3 {
    color: var(--white);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

.about-section .feature-card p {
    color: rgba(255,255,255,0.85);
}

/* Residential Section */
.residential-section {
    padding: 80px 0;
    background: #711309;
}

.residential-content-wrapper {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 40px;
    align-items: stretch;
    min-height: 400px;
}

.residential-content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.residential-content-right {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: 100%;
}

.residential-section .section-title {
    color: #fee2a9;
    text-align: left;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 23px;
    line-height: 1.3;
}

.residential-section .section-description {
    color: var(--white);
    text-align: left;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 16px;
    opacity: 0.95;
}

.residential-section .section-description strong {
    color: var(--white);
    font-weight: 700;
    opacity: 1;
}

.brochure-download-section {
    text-align: left;
    margin-top: 20px;
}

.btn-brochure-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--secondary-dark);
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    border: none;
}

.btn-brochure-large i {
    font-size: 18px;
    color: var(--secondary-dark);
}

.btn-brochure-large:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.residential-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    border: 3px solid var(--gold-border);
    transition: all 0.3s ease;
    display: flex;
    align-items: stretch;
}

.residential-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
    border-color: var(--primary-color);
}

.residential-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.residential-image-container:hover .residential-image {
    transform: scale(1.05);
}

.residential-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Residential Section Responsive */
@media (max-width: 991px) {
    .residential-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .residential-content-left {
        text-align: center;
    }

    .residential-section .section-title {
        text-align: center;
    }

    .residential-section .section-description {
        text-align: center;
    }

    .brochure-download-section {
        text-align: center;
    }

    .residential-image-container {
        min-height: 350px;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .residential-section {
        padding: 60px 0;
    }

    .residential-content-wrapper {
        gap: 30px;
    }

    .residential-image-container {
        min-height: 300px;
    }

    .btn-brochure-large {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .residential-section {
        padding: 50px 0;
    }

    .residential-section .section-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .residential-section .section-description {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .residential-content-wrapper {
        gap: 25px;
    }

    .residential-image-container {
        min-height: 250px;
    }

    .btn-brochure-large {
        padding: 10px 25px;
        font-size: 14px;
        width: 100%;
    }
}

@media (max-width: 360px) {
    .residential-section {
        padding: 40px 0;
    }

    .residential-content-wrapper {
        gap: 25px;
    }

    .residential-image-container {
        min-height: 250px;
        border-width: 2px;
    }

    .btn-brochure-large {
        padding: 10px 25px;
        font-size: 14px;
    }
}

.video-placeholder {
    background: linear-gradient(135deg, var(--secondary-color), #2d2d2d);
    padding: 100px 20px;
    text-align: center;
    color: var(--white);
}

.video-placeholder i {
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.video-placeholder p {
    font-size: 24px;
}

/* Masterstrokes Section */
.masterstrokes-section {
    padding: 80px 0;
    background: var(--white);
}

.masterstrokes-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.masterstroke-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.masterstroke-item:hover {
    transform: scale(1.05);
}

.masterstroke-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

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

/* Price Section */
.price-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #d94535 0%, #85190e 50%, #711309 100%);
    overflow-x: hidden;
}

.price-section .section-title {
    /* color: var(--white); */
    color:#ffc95d;
    text-align: center;
    margin-bottom: 40px;
}

.price-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

/* Mobile - Override grid to flex column */
@media screen and (max-width: 991px) {
    .price-content-wrapper {
        display: flex !important;
        grid-template-columns: none !important;
    }
}

.price-table-wrapper {
    width: 100%;
}

.price-table-container {
    overflow-x: auto;
    margin-top: 0;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-radius: 12px;
    overflow: hidden;
    border: none;
    table-layout: auto;
}

.price-table th:nth-child(1),
.price-table td:nth-child(1) {
    width: 20%;
}

.price-table th:nth-child(2),
.price-table td:nth-child(2) {
    width: 20%;
}

.price-table th:nth-child(3),
.price-table td:nth-child(3) {
    width: 25%;
}

.price-table th:nth-child(4),
.price-table td:nth-child(4) {
    width: 35%;
}

.price-table thead {
    background: var(--primary-color);
    color: var(--secondary-dark);
}

.price-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: var(--secondary-dark);
    white-space: nowrap;
}

.price-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: #711309;
    color: var(--white);
    font-size: 15px;
    white-space: nowrap;
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

.price-table tbody tr:hover {
    background: #8b1a0d;
}

.btn-price {
    background: var(--primary-color);
    color: var(--secondary-dark);
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    transition: all 0.3s;
    white-space: nowrap;
    letter-spacing: 0.3px;
    line-height: 1.2;
    display: inline-block;
}

.btn-price:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

.price-document-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.price-document-preview {
    background: rgba(255,255,255,0.1);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(5px);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.document-preview-header {
    margin-bottom: 30px;
}

.document-preview-header h3 {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.document-preview-header h4 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.document-preview-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.document-preview-content i {
    font-size: 64px;
    color: var(--primary-color);
    opacity: 0.8;
}

.document-preview-content p {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

.btn-costing-details {
    background: var(--primary-color);
    color: var(--secondary-dark);
    border: none;
    padding: 16px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    width: 100%;
}

.btn-costing-details:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* Floor Plan Section */
.floor-plan-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #d94535 0%, #85190e 50%, #711309 100%);
}

.floor-plan-section .section-title {
    color: #ffc95d;
    text-align: center;
    margin-bottom: 50px;
}

.floor-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 0;
}

.floor-plan-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

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

.floor-plan-title {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-align: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.floor-plan-item:hover .floor-plan-title {
    color: var(--gold-light);
    transform: scale(1.05);
}

.floor-plan-image-container {
    width: 100%;
    background: var(--white);
    border: 3px solid var(--gold-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
}

.floor-plan-image-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6);
    border-color: var(--primary-color);
}

.floor-plan-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
    background: var(--white);
}

.floor-plan-image-container:hover .floor-plan-image {
    transform: scale(1.08);
}

.floor-plan-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.floor-plan-image-container:hover::before {
    opacity: 1;
}

.plan-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--gray);
    min-height: 400px;
}

.plan-placeholder i {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.plan-placeholder p {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray);
}

.btn-download-plan {
    background: var(--primary-color);
    color: var(--secondary-dark);
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-download-plan::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-download-plan:hover::before {
    width: 300px;
    height: 300px;
}

.btn-download-plan i {
    font-size: 16px;
    color: var(--secondary-dark);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-download-plan {
    position: relative;
    z-index: 1;
}

.btn-download-plan:hover {
    background: var(--gold-light);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.7);
}

.btn-download-plan:hover i {
    transform: translateY(-2px) rotate(5deg);
}

/* Responsive Styles for Floor Plan Section */
@media (max-width: 992px) {
    .floor-plan-section {
        padding: 70px 0;
    }

    .floor-plan-section .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .floor-plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

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

    .floor-plan-title {
        font-size: 20px;
    }

    .floor-plan-image-container {
        height: 380px;
    }

    .floor-plan-image {
        width: 100%;
        height: auto;
    }

    .btn-download-plan {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .floor-plan-section {
        padding: 60px 0;
    }

    .floor-plan-title {
        font-size: 18px;
    }

    .floor-plan-image {
        width: 100%;
        height: auto;
    }

    .btn-download-plan {
        padding: 10px 20px;
        font-size: 12px;
        width: 100%;
    }
}

.floor-plan-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.plan-placeholder {
    background: var(--white);
    padding: 80px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.plan-placeholder i {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.plan-placeholder p {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.btn-download {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-download:hover {
    background: var(--primary-hover);
}

/* Amenities Section */
.amenities-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #d94535 0%, #85190e 50%, #711309 100%);
}

.amenities-section .section-title {
    color: #ffc95d;
    text-align: center;
    margin-bottom: 30px;
}

.amenities-section .section-description {
    color: var(--white);
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 50px;
}

.amenities-section .section-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 18px;
    background: linear-gradient(135deg, #5a0f08 0%, #711309 50%, #5a0f08 100%);
    border: 2px solid var(--gold-border);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.amenity-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.amenity-item:hover::before {
    left: 100%;
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #6a1510 0%, #85190e 50%, #6a1510 100%);
}

.amenity-item i {
    font-size: 32px;
    color: var(--white);
    min-width: 35px;
    text-align: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.amenity-item:hover i {
    transform: scale(1.2);
    color: var(--primary-color);
}

.amenity-item p {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

/* Responsive Styles for Amenities Section */
@media (max-width: 992px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .amenities-section {
        padding: 60px 0;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .amenity-item {
        padding: 18px 15px;
    }

    .amenity-item i {
        font-size: 28px;
        min-width: 30px;
    }

    .amenity-item p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .amenities-section {
        padding: 50px 0;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .amenities-section .section-description {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .amenity-item {
        padding: 16px 15px;
    }

    .amenity-item i {
        font-size: 26px;
        min-width: 28px;
    }

    .amenity-item p {
        font-size: 13px;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #d94535 0%, #85190e 50%, #711309 100%);
}

.gallery-section .section-title {
    color: #ffc95d;
    text-align: center;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    border: 3px solid var(--gold-border);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    transition: all 0.4s ease;
    background: transparent;
    width: 100%;
    min-height: 300px;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 7px;
}

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

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    border-color: var(--primary-color);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 7px;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
    background: #f0f0f0;
}

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

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    overflow: auto;
}

.gallery-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 900px;
    text-align: center;
}

.gallery-modal-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.close-gallery {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

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

/* Responsive Styles for Gallery Section */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

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

    .gallery-item img {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-item {
        border-width: 2px;
    }

    .gallery-item img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 50px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item img {
        height: 220px;
    }
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #d94535 0%, #85190e 50%, #711309 100%);
}

.location-section .section-title {
    color: #ffc95d;
    text-align: center;
    margin-bottom: 30px;
}

.location-section .section-description {
    color: var(--white);
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 20px;
}

.location-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.location-map-card,
.location-info-card {
    background: var(--white);
    border: 3px solid var(--gold-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.4s ease;
}

.location-map-card:hover,
.location-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    border-color: var(--primary-color);
}

.location-card-header {
    background: var(--primary-color);
    color: var(--secondary-dark);
    padding: 18px 25px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--secondary-dark);
}

.map-container {
    background: var(--white);
    min-height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.location-info-content {
    padding: 30px;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.location-marker-display {
    text-align: center;
}

.marker-sign {
    display: inline-block;
    background: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    padding: 30px 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.marker-city {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marker-distance {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Category Buttons */
.location-category-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0 30px;
    flex-wrap: wrap;
}

.category-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold-border);
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--primary-color);
    color: var(--secondary-dark);
    border-color: var(--primary-color);
}

/* Connectivity Details */
.connectivity-details,
.category-details {
    margin-top: 20px;
}

.connectivity-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.connectivity-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 16px;
    padding: 12px 20px;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.connectivity-list li:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(5px);
}

.connectivity-list li i {
    color: var(--primary-color);
    font-size: 18px;
    min-width: 20px;
}

/* Responsive Styles for Location Section */
@media (max-width: 992px) {
    .location-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .connectivity-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .location-section {
        padding: 60px 0;
    }

    .location-category-buttons {
        gap: 10px;
    }

    .category-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .map-container,
    .map-container iframe {
        height: 350px;
        min-height: 350px;
    }

    .location-info-content {
        min-height: 350px;
        padding: 20px;
    }

    .connectivity-list {
        gap: 12px;
    }

    .connectivity-list li {
        font-size: 14px;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .location-section {
        padding: 50px 0;
    }

    .location-section .section-description {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .location-category-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .category-btn {
        width: 100%;
        padding: 12px 20px;
    }

    .map-container,
    .map-container iframe {
        height: 300px;
        min-height: 300px;
    }

    .location-info-content {
        min-height: 300px;
        padding: 15px;
    }

    .marker-city {
        font-size: 24px;
    }

    .marker-distance {
        font-size: 20px;
    }

    .connectivity-list li {
        font-size: 13px;
        padding: 8px 12px;
    }
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.map-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-map {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-map:hover {
    background: var(--primary-hover);
}

.map-placeholder {
    background: var(--light-bg);
    padding: 100px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-placeholder i {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.map-address {
    font-size: 16px;
    color: var(--gray);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-category h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-category h3 i {
    color: var(--primary-color);
}

.location-category ul {
    list-style: none;
    padding-left: 0;
}

.location-category ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: var(--gray);
}

.location-category ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Virtual Tour Section */
.virtual-tour-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #d94535 0%, #85190e 50%, #711309 100%);
}

.virtual-tour-section .section-title {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.virtual-tour-section .title-part-1 {
    color: #ffc95d;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
}

.virtual-tour-section .title-part-2 {
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
}

.virtual-tour-section .section-description {
    color: var(--white);
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
    max-width: 100%;
    margin: 0 auto 20px;
}

.virtual-tour-section .section-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

.virtual-tour-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.virtual-tour-video-wrapper {
    width: 100%;
    max-width: 900px;
    position: relative;
}

.virtual-tour-video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid var(--gold-border);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    background: #000;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 500px;
}

.virtual-tour-video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);
    border-color: var(--primary-color);
}

.virtual-tour-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.virtual-tour-video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(2px);
    transition: filter 0.3s ease, transform 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.virtual-tour-video-container:hover .virtual-tour-video-thumbnail {
    filter: blur(0px);
    transform: scale(1.05);
}

.virtual-tour-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border: 4px solid var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    transition: all 0.4s ease;
    z-index: 2;
}

.virtual-tour-play-button:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.8);
    background: var(--gold-light);
}

.virtual-tour-play-button i {
    color: var(--secondary-dark);
    font-size: 40px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.virtual-tour-play-button:hover i {
    transform: scale(1.1);
}

/* Responsive Styles for Virtual Tour Section */
@media (max-width: 992px) {
    .virtual-tour-section {
        padding: 70px 0;
    }

    .virtual-tour-section .title-part-1,
    .virtual-tour-section .title-part-2 {
        font-size: 36px;
    }

    .virtual-tour-section .section-description {
        font-size: 15px;
    }

    .virtual-tour-video-container {
        min-height: 450px;
    }

    .virtual-tour-play-button {
        width: 90px;
        height: 90px;
    }

    .virtual-tour-play-button i {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .virtual-tour-section {
        padding: 60px 0;
    }

    .virtual-tour-section .title-part-1,
    .virtual-tour-section .title-part-2 {
        font-size: 32px;
    }

    .virtual-tour-section .section-description {
        font-size: 14px;
        text-align: left;
    }

    .virtual-tour-video-container {
        min-height: 400px;
        aspect-ratio: 16 / 9;
    }

    .virtual-tour-play-button {
        width: 80px;
        height: 80px;
    }

    .virtual-tour-play-button i {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .virtual-tour-section {
        padding: 50px 0;
    }

    .virtual-tour-section .title-part-1,
    .virtual-tour-section .title-part-2 {
        font-size: 24px;
    }

    .virtual-tour-section .section-description {
        font-size: 13px;
    }

    .virtual-tour-video-container {
        min-height: 300px;
        aspect-ratio: 16 / 9;
        border-width: 2px;
    }

    .virtual-tour-play-button {
        width: 70px;
        height: 70px;
        border-width: 3px;
    }

    .virtual-tour-play-button i {
        font-size: 28px;
        margin-left: 3px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #d94535 0%, #85190e 50%, #711309 100%);
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-bottom {
    padding: 0;
    text-align: left;
    width: 100%;
    max-width: 100%;
}

.footer-bottom .rera-info {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: left;
}

.footer-bottom .rera-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-bottom .disclaimer {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: left;
    opacity: 0.9;
}

.footer-bottom .disclaimer strong {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-bottom .copyright {
    color: var(--white);
    font-size: 15px;
    margin-top: 20px;
    text-align: left;
    line-height: 1.8;
}

.footer-bottom .copyright a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-bottom .copyright a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* Responsive Styles for Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 25px;
    }

    .footer-bottom .rera-info {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .footer-bottom .disclaimer {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .footer-bottom .copyright {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 20px;
    }

    .footer-bottom .rera-info {
        font-size: 12px;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .footer-bottom .disclaimer {
        font-size: 11px;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .footer-bottom .copyright {
        font-size: 12px;
        line-height: 1.6;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

/* Responsive Design - All Screen Sizes */
/* Extra Large Screens (1400px and above) */
@media (min-width: 1400px) {
    .hero-content-wrapper {
        max-width: 1600px;
        gap: 50px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-subtitle {
        font-size: 42px;
    }

    .hero-form-container {
        max-width: 480px;
        padding: 35px;
    }
}

/* Large Screens (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .hero-content-wrapper {
        max-width: 1200px;
        gap: 40px;
    }

    .hero-title {
        font-size: 46px;
    }

    .hero-subtitle {
        font-size: 36px;
    }

    .hero-form-container {
        max-width: 420px;
    }
}

/* Medium/Large Screens (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
        padding: 120px 20px 60px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 32px;
    }

    .hero-description {
        font-size: 19px;
    }

    .hero-form-container {
        max-width: 400px;
        padding: 28px;
    }
}

/* Medium Screens (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 100px 20px 40px;
        text-align: center;
    }

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

    .hero-content-right {
        justify-content: center;
        width: 100%;
        padding: 0 15px;
    }

    .hero-form-container {
        max-width: 500px;
        width: 100%;
        padding: 25px 20px;
        margin: 0 auto;
    }

    .hero-form-header h3 {
        font-size: 22px;
    }

    .hero-form-header h4 {
        font-size: 16px;
    }

    .hero-form-group input {
        padding: 13px 15px;
        font-size: 15px;
    }

    .hero-checkbox-label {
        font-size: 12px;
    }

    .hero-form-submit-btn {
        padding: 15px;
        font-size: 17px;
    }

    .hero-contact-icon {
        width: 42px;
        height: 42px;
        font-size: 19px;
    }

    .hero-title {
        font-size: 38px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 30px;
        text-align: center;
    }

    .hero-description {
        font-size: 18px;
        text-align: center;
    }

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

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

    .hero-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        max-width: 700px;
        margin: 20px auto;
    }

    .hero-form-container {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Small Screens (481px - 767px) */
@media (max-width: 767px) and (min-width: 481px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 100px 15px 40px;
        text-align: center;
    }

    .hero-slide .hero-content-wrapper {
        padding: 30px 15px;
        top: 50%;
    }

    /* Hero Popup Responsive for Tablets */
    .hero-popup-content {
        width: 90%;
        max-width: 750px;
        margin: 20px auto;
        max-height: 85vh;
    }

    .hero-popup-header {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        padding: 30px 25px;
    }

    .we-promise-title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .promise-item-popup {
        padding: 14px;
        gap: 14px;
    }

    .promise-item-popup i {
        font-size: 32px;
        min-width: 42px;
    }

    .promise-item-popup h3 {
        font-size: 17px;
    }

    .m3m-logo-hero-popup h2 {
        font-size: 22px;
    }

    .m3m-logo-hero-popup p {
        font-size: 13px;
    }

    .hero-popup-left {
        padding: 12px;
    }

    .hero-popup-form-section {
        padding: 12px;
    }

    .form-instruction {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .form-group-hero input {
        padding: 11px 13px;
        font-size: 14px;
    }

    .btn-submit-hero {
        padding: 13px;
        font-size: 15px;
    }

    .close-hero-popup {
        right: 15px;
        top: 15px;
        width: 35px;
        height: 35px;
        font-size: 30px;
    }

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

    .hero-content-right {
        justify-content: center;
        width: 100%;
        padding: 0 15px;
        position: relative;
        z-index: 10;
    }

    .hero-form-container {
        max-width: 100%;
        width: 100%;
        padding: 25px 20px;
        margin: 0 auto;
    }

    .hero-form-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .hero-form-header h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .hero-form-header h4 {
        font-size: 15px;
    }

    .hero-form {
        gap: 16px;
    }

    .hero-form-group input {
        padding: 13px 15px;
        font-size: 15px;
    }

    .hero-checkbox-label {
        font-size: 12px;
        gap: 8px;
    }

    .hero-checkbox-label input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }

    .hero-form-submit-btn {
        padding: 15px;
        font-size: 16px;
        margin-top: 5px;
    }

    .hero-contact-icons {
        gap: 12px;
        margin-top: 18px;
        padding-top: 18px;
    }

    .hero-contact-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .hero-title {
        font-size: 32px;
        text-align: center;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 26px;
        text-align: center;
    }

    .hero-description {
        font-size: 16px;
        text-align: center;
    }

    .hero-tagline {
        font-size: 15px;
        text-align: center;
    }

    .investment-start-text {
        font-size: 18px;
        text-align: center;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
        margin: 20px auto;
        padding: 0 10px;
    }

    .feature-box {
        padding: 15px 12px;
    }

    .feature-box h3 {
        font-size: 12px;
    }

    .feature-box p {
        font-size: 18px;
    }

    .hero-form-container {
        max-width: 100%;
        padding: 25px 20px;
        margin: 0 auto;
    }

    .hero-form-header h3 {
        font-size: 22px;
    }

    .hero-form-header h4 {
        font-size: 16px;
    }
}

/* Extra Small Screens (480px and below) */
@media (max-width: 480px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 90px 10px 40px;
        text-align: center;
    }

    .hero-slide .hero-content-wrapper {
        padding: 25px 10px;
        top: 50%;
    }

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

    .hero-content-right {
        justify-content: center;
        width: 100%;
        padding: 0 10px;
        position: relative;
        z-index: 10;
        display: none;
    }

    .hero-content-right.show {
        display: flex;
        width: 100%;
    }

    .hero-form-container {
        max-width: 100%;
        width: 100%;
        padding: 20px 15px;
        margin: 0 auto;
    }

    .hero-form-header {
        margin-bottom: 18px;
        padding-bottom: 12px;
    }

    .hero-form-header h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .hero-form-header h4 {
        font-size: 13px;
    }

    .hero-form {
        gap: 14px;
    }

    .hero-form-group input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .hero-checkbox-label {
        font-size: 11px;
        gap: 8px;
        line-height: 1.4;
    }

    .hero-checkbox-label input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .hero-form-submit-btn {
        padding: 14px;
        font-size: 15px;
        margin-top: 5px;
        width: 100%;
    }

    .hero-contact-icons {
        gap: 10px;
        margin-top: 15px;
        padding-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-contact-icon {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }

    .hero-title {
        font-size: 24px;
        text-align: center;
        letter-spacing: 1.5px;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 20px;
        text-align: center;
        margin-bottom: 8px;
    }

    .hero-description {
        font-size: 14px;
        text-align: center;
        margin-bottom: 5px;
    }

    .hero-tagline {
        font-size: 13px;
        text-align: center;
        margin-bottom: 12px;
    }

    .investment-start-text {
        font-size: 16px;
        text-align: center;
        margin-bottom: 15px;
    }

    .hero-features {
        grid-template-columns: 1fr !important;
        gap: 10px;
        max-width: 100%;
        margin: 15px auto;
        padding: 0 5px;
    }

    .feature-box {
        padding: 12px 10px;
    }

    .feature-box h3 {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .feature-box p {
        font-size: 16px;
    }

    .hero-form-container {
        max-width: 100%;
        padding: 20px 15px;
        margin: 0 auto;
    }

    .hero-form-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .hero-form-header h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .hero-form-header h4 {
        font-size: 14px;
    }

    .hero-form {
        gap: 15px;
    }

    .hero-form-group input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .hero-checkbox-label {
        font-size: 11px;
    }

    .hero-form-submit-btn {
        padding: 14px;
        font-size: 16px;
    }

    .hero-contact-icons {
        gap: 10px;
        margin-top: 15px;
        padding-top: 15px;
    }

    .hero-contact-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* Ensure form appears properly on mobile */
    .hero-content-right.show {
        display: flex !important;
        width: 100%;
        max-width: 100%;
        padding: 10px 5px;
    }

    .hero-form-container {
        max-width: 100%;
        width: 100%;
        padding: 20px 15px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .hero-form-header h3 {
        font-size: 18px;
    }

    .hero-form-header h4 {
        font-size: 13px;
    }

    .hero-form-group input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .hero-checkbox-label {
        font-size: 11px;
        gap: 8px;
        line-height: 1.4;
    }

    .hero-checkbox-label input[type="checkbox"] {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .hero-form-submit-btn {
        padding: 14px;
        font-size: 15px;
        width: 100%;
    }

    .hero-contact-icons {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Additional Responsive Fixes */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 8px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .header-actions {
        gap: 8px;
        flex-wrap: wrap;
    }

    .btn-brochure {
        padding: 8px 15px;
        font-size: 13px;
    }

    .phone-number {
        font-size: 13px;
        display: none;
    }

    .hero-content {
        padding: 120px 15px 40px;
    }

    .hero-slide .hero-content {
        padding: 20px 15px;
        top: 55%;
        transform: translate(-50%, -50%);
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 10px;
        margin-top: 15px;
        letter-spacing: 1.5px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 22px;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 5px;
        line-height: 1.3;
    }

    .hero-tagline {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
        margin: 20px auto 20px;
        padding: 0 10px;
    }

    .feature-box.investment-highlight {
        padding: 15px 12px;
    }

    .feature-box.investment-highlight h3 {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .feature-box.investment-highlight p {
        font-size: 18px;
    }

    .feature-box {
        padding: 15px 12px;
    }

    .feature-box h3 {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .feature-box p {
        font-size: 18px;
    }

    .investment-highlight {
        padding: 12px 20px;
        margin: 15px auto 20px;
    }

    .investment-highlight h3 {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .investment-highlight p {
        font-size: 20px;
    }

    .hero-buttons {
        margin-top: 20px;
        gap: 15px;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .hero-content {
        padding: 120px 15px 40px;
    }

    .hero-slide .hero-content {
        padding: 20px 15px;
        top: 55%;
        transform: translate(-50%, -50%);
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 10px;
        margin-top: 15px;
        letter-spacing: 1.5px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 20px;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 5px;
        line-height: 1.3;
    }

    .hero-tagline {
        font-size: 12px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
        max-width: 100%;
        margin: 15px auto 15px;
        padding: 0 8px;
    }

    .feature-box {
        padding: 12px 10px;
    }

    .feature-box h3 {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .feature-box p {
        font-size: 16px;
    }

    .feature-box.investment-highlight {
        padding: 12px 10px;
    }

    .feature-box.investment-highlight h3 {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .feature-box.investment-highlight p {
        font-size: 16px;
    }

    .hero-buttons {
        margin-top: 20px;
        gap: 15px;
    }

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

    .section-title {
        font-size: 28px;
        padding: 0 15px;
    }

    .section-description {
        font-size: 15px;
        padding: 0 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .price-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .price-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .price-table {
        font-size: 14px;
        min-width: 600px;
    }

    .price-table th,
    .price-table td {
        padding: 12px 8px;
    }

    .price-document-preview {
        min-height: 250px;
        padding: 30px 20px;
    }

    .document-preview-header h3 {
        font-size: 20px;
    }

    .document-preview-header h4 {
        font-size: 16px;
    }

    .document-preview-content i {
        font-size: 48px;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .promise-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .masterstrokes-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .virtual-tour-actions {
        flex-direction: column;
        gap: 10px;
    }

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

    .hero-slider-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .hero-slider-nav.prev {
        left: 10px;
    }

    .hero-slider-nav.next {
        right: 10px;
    }

    .hero-slider-controls {
        bottom: 20px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .slider-dot.active {
        width: 25px;
    }

    /* Hero Popup Responsive */
    .hero-popup-content {
        width: 95%;
        max-width: 600px;
        margin: 15px auto;
        max-height: 80vh;
    }

    .hero-popup-header {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px 20px;
    }

    .we-promise-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .promise-item-popup {
        padding: 12px;
        gap: 12px;
    }

    .promise-item-popup i {
        font-size: 30px;
        min-width: 40px;
    }

    .promise-item-popup h3 {
        font-size: 16px;
    }

    .m3m-logo-hero-popup h2 {
        font-size: 20px;
    }

    .m3m-logo-hero-popup p {
        font-size: 12px;
    }

    .hero-popup-left {
        padding: 10px;
    }

    .hero-popup-form-section {
        padding: 10px;
    }

    .form-instruction {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .form-group-hero input {
        padding: 10px 12px;
        font-size: 14px;
    }

    .btn-submit-hero {
        padding: 12px;
        font-size: 15px;
    }

    .close-hero-popup {
        right: 12px;
        top: 12px;
        width: 32px;
        height: 32px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100vh;
        min-height: 600px;
    }

    .hero-content {
        padding: 100px 10px 60px;
    }

    .hero-slide .hero-content {
        padding: 15px 10px;
        /* top: 55%; */
        padding-top: 50px;
        margin-top: 50px;
        transform: translate(-50%, -50%);
    }

    .hero-title {
        font-size: 20px;
        margin-bottom: 8px;
        margin-top: 10px;
        letter-spacing: 1px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 20px;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .hero-tagline {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .hero-features {
        gap: 12px;
        margin: 15px auto 15px;
        padding: 0 5px;
    }

    .feature-box {
        padding: 15px;
    }

    .feature-box h3 {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .feature-box p {
        font-size: 18px;
    }

    .investment-highlight {
        padding: 10px 15px;
        margin: 15px auto 20px;
    }

    .investment-highlight h3 {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .investment-highlight p {
        font-size: 18px;
    }

    .hero-buttons {
        margin-top: 15px;
        gap: 12px;
        flex-direction: column;
        width: 100%;
        padding: 0 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 12px 25px;
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    .hero-slider-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .hero-slider-nav.prev {
        left: 10px;
    }

    .hero-slider-nav.next {
        right: 10px;
    }

    /* Hero Popup Responsive for Extra Small Screens */
    .hero-popup-content {
        width: 95%;
        max-width: 100%;
        margin: 10px auto;
        max-height: 90vh;
        border-radius: 12px;
    }

    .hero-popup-header {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 15px;
    }

    .we-promise-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .promises-list {
        gap: 15px;
    }

    .promise-item-popup {
        padding: 10px;
        gap: 10px;
    }

    .promise-item-popup i {
        font-size: 28px;
        min-width: 35px;
    }

    .promise-item-popup h3 {
        font-size: 14px;
    }

    .m3m-logo-hero-popup {
        padding: 12px;
        margin-bottom: 20px;
    }

    .m3m-logo-hero-popup h2 {
        font-size: 18px;
        letter-spacing: 1.5px;
    }

    .m3m-logo-hero-popup p {
        font-size: 11px;
        margin: 6px 0 0;
    }

    .hero-popup-left {
        padding: 8px;
    }

    .hero-popup-form-section {
        padding: 8px;
    }

    .form-instruction {
        font-size: 12px;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .form-group-hero {
        margin-bottom: 12px;
    }

    .form-group-hero input {
        padding: 10px;
        font-size: 14px;
    }

    .checkbox-group-hero label {
        font-size: 11px;
        gap: 8px;
    }

    .checkbox-group-hero input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }

    .btn-submit-hero {
        padding: 12px;
        font-size: 14px;
        margin-top: 3px;
    }

    .close-hero-popup {
        right: 10px;
        top: 10px;
        width: 30px;
        height: 30px;
        font-size: 24px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Global Responsive Improvements */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

/* Responsive Section Titles */
@media (max-width: 992px) {
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
        padding: 0 10px;
    }
}

/* Responsive Section Descriptions */
@media (max-width: 768px) {
    .section-description {
        font-size: 15px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .section-description {
        font-size: 14px;
        padding: 0 10px;
    }
}

/* Responsive Buttons */
@media (max-width: 768px) {
    .btn-primary,
    .btn-secondary,
    .btn-brochure-large {
        padding: 12px 25px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .btn-primary,
    .btn-secondary,
    .btn-brochure-large {
        padding: 10px 20px;
        font-size: 8px;
        width: 100%;
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 0.6s ease-out;
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: var(--primary-color);
    color: var(--secondary-dark);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.mobile-menu-toggle:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.mobile-menu-toggle.active {
    background: var(--gold-light);
}

/* Mobile Navigation Styles */
@media screen and (max-width: 991px) {
    /* Hide desktop navigation */
    .nav-menu {
        display: none !important;
    }
    
    /* Hide header actions on mobile */
    .header-actions {
        display: none !important;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex !important;
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    
    /* Reduce header button sizes on mobile */
    .btn-brochure {
        padding: 6px 10px;
        font-size: 10px;
        gap: 4px;
    }
    
    .btn-brochure i {
        font-size: 11px;
    }
    
    .btn-whatsapp {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
    
    .btn-phone {
        padding: 6px 10px;
        font-size: 10px;
        gap: 4px;
    }
    
    .btn-phone i {
        font-size: 11px;
    }
    
    /* Mobile menu overlay */
    .nav-menu.mobile-open {
        display: flex !important;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        max-width: 320px;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #2d1810 0%, #3d2518 100%);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 20px 0;
        gap: 0;
        z-index: 9999;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
        border-right: 2px solid var(--gold-border);
    }
    
    .nav-menu.mobile-open a {
        width: 100%;
        padding: 15px 25px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        font-size: 14px;
        justify-content: flex-start;
        color: var(--primary-color);
    }
    
    .nav-menu.mobile-open a:hover {
        background: rgba(212, 175, 55, 0.1);
        color: var(--gold-light);
        padding-left: 30px;
    }
    
    .nav-menu.mobile-open a:last-child {
        border-bottom: none;
    }
    
    /* Header adjustments */
    .header-top {
        padding: 10px 0;
        min-height: 60px;
        max-height: 60px;
        gap: 8px;
    }
    
    .logo img {
        height: 45px;
        max-height: 45px;
        max-width: 140px;
    }
    
    /* Ensure mobile menu toggle is visible */
    .mobile-menu-toggle {
        width: 36px;
        height: 36px;
        font-size: 16px;
        z-index: 1001;
    }
    
    /* Mobile backdrop */
    .mobile-menu-backdrop {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(0, 0, 0, 0.7);
        z-index: 9998;
    }
    
    .mobile-menu-backdrop.active {
        display: block;
    }
}

/* Tablet and Mobile Header Actions */
@media screen and (max-width: 991px) {
    .header-actions {
        display: none;
    }
}

/* Mobile Header Actions - Show only essential buttons */
@media screen and (max-width: 991px) {
    .header-actions.mobile-visible {
        display: flex;
        gap: 5px;
    }
    
    .btn-brochure {
        display: none;
    }
    
    .btn-phone {
        display: none;
    }
    
    .btn-whatsapp {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Hero Section Mobile Responsive */
@media screen and (max-width: 991px) {
    .hero {
        min-height: 500px;
        height: auto;
    }
    
    .hero-slide {
        min-height: 500px;
        padding: 80px 0 40px;
    }
    
    .hero-content-wrapper,
    .hero-content {
        padding: 20px 15px;
    }
    
    .hero-title {
        font-size: 28px !important;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 22px !important;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 16px !important;
        margin-bottom: 10px;
    }
    
    .hero-tagline {
        font-size: 14px !important;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        margin: 20px 0;
    }
    
    .feature-box {
        width: 100%;
        padding: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .hero {
        min-height: 450px;
    }
    
    .hero-slide {
        min-height: 450px;
        padding: 70px 0 30px;
    }
    
    .hero-title {
        font-size: 24px !important;
    }
    
    .hero-subtitle {
        font-size: 20px !important;
    }
    
    .hero-description {
        font-size: 15px !important;
    }
    
    .investment-start-text {
        font-size: 16px !important;
        padding: 10px 15px;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        min-height: 400px;
    }
    
    .hero-slide {
        min-height: 400px;
        padding: 60px 0 20px;
    }
    
    .hero-title {
        font-size: 20px !important;
    }
    
    .hero-subtitle {
        font-size: 18px !important;
    }
    
    .hero-description {
        font-size: 14px !important;
    }
    
    .hero-tagline {
        font-size: 12px !important;
    }
    
    .investment-start-text {
        font-size: 14px !important;
        padding: 8px 12px;
    }
    
    .feature-box h3 {
        font-size: 14px;
    }
    
    .feature-box p {
        font-size: 16px;
    }
}

/* Contact Button Container Mobile */
@media screen and (max-width: 991px) {
    /* Contact Button - Hide on mobile */
    .contact-button-container {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    .contact-button {
        display: none !important;
    }
    
    .contact-form-wrapper {
        display: none !important;
    }
}

@media screen and (max-width: 767px) {
    /* Contact Button - Hide on mobile */
    .contact-button-container {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    .contact-button {
        display: none !important;
    }
    
    .contact-form-wrapper {
        display: none !important;
    }
}

/* Sections Mobile Responsive */
@media screen and (max-width: 991px) {
    .about-section,
    .residential-section,
    .price-section,
    .amenities-section,
    .gallery-section,
    .location-section,
    .virtual-tour-section,
    .floor-plan-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .section-description {
        font-size: 15px;
        margin-bottom: 25px;
        text-align: justify;
    }
}

@media screen and (max-width: 767px) {
    .about-section,
    .residential-section,
    .price-section,
    .amenities-section,
    .gallery-section,
    .location-section,
    .virtual-tour-section,
    .floor-plan-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .section-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 480px) {
    .about-section,
    .residential-section,
    .price-section,
    .amenities-section,
    .gallery-section,
    .location-section,
    .virtual-tour-section,
    .floor-plan-section {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .section-description {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    /* Price Section - Small Mobile */
    .price-content-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        align-items: stretch !important;
    }
    
    .price-table-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        order: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
        margin-bottom: 20px !important;
        display: block !important;
        clear: both !important;
    }
    
    .price-table-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
    }
    
    .price-document-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        order: 2 !important;
        margin: 0 !important;
        padding: 0 !important;
        margin-top: 20px !important;
        display: flex !important;
        flex-direction: column !important;
        clear: both !important;
    }
    
    .price-table {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 11px;
        border-radius: 8px;
        margin: 0 !important;
        table-layout: auto !important;
    }
    
    .price-table th,
    .price-table td {
        padding: 6px 4px;
        font-size: 10px;
    }
    
    .btn-price {
        padding: 6px 10px;
        font-size: 10px;
        white-space: normal;
        line-height: 1.3;
    }
    
    .price-document-preview {
        padding: 20px 12px;
        min-height: 200px;
        border-radius: 10px;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .document-preview-header {
        margin-bottom: 15px;
    }
    
    .document-preview-header h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .document-preview-header h4 {
        font-size: 12px;
    }
    
    .document-preview-content {
        gap: 10px;
    }
    
    .document-preview-content i {
        font-size: 36px;
    }
    
    .document-preview-content p {
        font-size: 12px;
    }
    
    .btn-costing-details {
        padding: 12px 15px;
        font-size: 12px;
        letter-spacing: 0.5px;
        line-height: 1.4;
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Residential Section Mobile */
@media screen and (max-width: 991px) {
    .residential-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .residential-content-left,
    .residential-content-right {
        width: 100%;
    }
    
    .residential-image {
        width: 100%;
        height: auto;
        max-height: 400px;
        object-fit: cover;
    }
}

/* Price Section Mobile */
@media screen and (max-width: 991px) {
    .price-content-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        align-items: stretch !important;
    }
    
    .price-table-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        order: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
        margin-bottom: 30px !important;
        display: block !important;
        clear: both !important;
    }
    
    .price-table-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
    }
    
    .price-table {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 14px;
        margin: 0 !important;
        padding: 0 !important;
        table-layout: auto !important;
        display: table !important;
        border-collapse: collapse !important;
    }
    
    .price-document-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        order: 2 !important;
        margin: 0 !important;
        padding: 0 !important;
        margin-top: 30px !important;
        display: flex !important;
        flex-direction: column !important;
        clear: both !important;
    }
    
    .price-table th,
    .price-table td {
        padding: 10px 8px;
        font-size: 13px;
    }
    
    .btn-price {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .price-document-preview {
        padding: 30px 20px;
        min-height: 250px;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .document-preview-header h3 {
        font-size: 20px;
    }
    
    .document-preview-header h4 {
        font-size: 16px;
    }
    
    .document-preview-content i {
        font-size: 48px;
    }
    
    .document-preview-content p {
        font-size: 14px;
    }
    
    .btn-costing-details {
        padding: 14px 20px;
        font-size: 14px;
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media screen and (max-width: 767px) {
    .price-content-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        align-items: stretch !important;
    }
    
    .price-table-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        order: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
        margin-bottom: 25px !important;
        display: block !important;
        clear: both !important;
    }
    
    .price-table-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
    }
    
    .price-table {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 12px;
        margin: 0 !important;
        padding: 0 !important;
        table-layout: auto !important;
        display: table !important;
        border-collapse: collapse !important;
    }
    
    .price-document-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        order: 2 !important;
        margin: 0 !important;
        padding: 0 !important;
        margin-top: 25px !important;
        display: flex !important;
        flex-direction: column !important;
        clear: both !important;
    }
    
    .price-table th,
    .price-table td {
        padding: 8px 5px;
        font-size: 11px;
    }
    
    .price-table th:first-child,
    .price-table td:first-child {
        min-width: 80px;
    }
    
    .price-document-preview {
        padding: 25px 15px;
        min-height: 220px;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .document-preview-header {
        margin-bottom: 20px;
    }
    
    .document-preview-header h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .document-preview-header h4 {
        font-size: 14px;
    }
    
    .document-preview-content {
        gap: 12px;
    }
    
    .document-preview-content i {
        font-size: 40px;
    }
    
    .document-preview-content p {
        font-size: 13px;
    }
    
    .btn-costing-details {
        padding: 12px 18px;
        font-size: 13px;
        letter-spacing: 0.8px;
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Floor Plan Section Mobile */
@media screen and (max-width: 991px) {
    .floor-plans-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Amenities Section Mobile */
@media screen and (max-width: 991px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 767px) {
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .amenity-item {
        padding: 15px;
    }
}

/* Gallery Section Mobile */
@media screen and (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media screen and (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Location Section Mobile */
@media screen and (max-width: 991px) {
    .location-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .location-map-card,
    .location-info-card {
        width: 100%;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .location-category-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .category-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
}

@media screen and (max-width: 767px) {
    .map-container iframe {
        height: 300px;
    }
    
    .location-category-buttons {
        flex-direction: column;
    }
    
    .category-btn {
        width: 100%;
        padding: 12px 15px;
    }
}

/* Virtual Tour Section Mobile */
@media screen and (max-width: 991px) {
    .virtual-tour-container {
        padding: 0 15px;
    }
    
    .virtual-tour-video-wrapper {
        width: 100%;
    }
    
    .virtual-tour-video-thumbnail {
        width: 100%;
        height: auto;
        max-height: 400px;
    }
}

/* Modals Mobile Responsive */
@media screen and (max-width: 991px) {
    .modal-content {
        width: 90%;
        max-width: 500px;
        max-height: 90vh;
        overflow-y: auto;
        padding: 25px 20px;
    }
    
    .hero-popup-content {
        width: 95%;
        max-width: 600px;
        padding: 20px 15px;
    }
    
    .hero-popup-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-popup-left,
    .hero-popup-right {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .modal-content {
        width: 95%;
        padding: 20px 15px;
    }
    
    .hero-popup-content {
        width: 98%;
        padding: 15px 12px;
    }
    
    .form-group,
    .form-group-hero {
        margin-bottom: 15px;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        padding: 12px 15px;
        font-size: 14px;
    }
}

/* Footer Mobile */
@media screen and (max-width: 991px) {
    .footer {
        padding: 30px 0;
    }
    
    .footer-bottom {
        padding: 0 15px;
    }
    
    .rera-info,
    .disclaimer,
    .copyright {
        font-size: 12px;
        line-height: 1.6;
    }
}

@media screen and (max-width: 767px) {
    .footer {
        padding: 20px 0;
    }
    
    .rera-info,
    .disclaimer,
    .copyright {
        font-size: 11px;
        line-height: 1.5;
    }
}

/* WhatsApp Float Button Mobile */
@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 24px;
        bottom: 80px;
        right: 15px;
    }
}

/* Hero Slider Mobile */
@media screen and (max-width: 991px) {
    .hero-slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .hero-slider-controls {
        bottom: 20px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

@media screen and (max-width: 767px) {
    .hero-slider-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .hero-slider-controls {
        bottom: 15px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
}

/* Features Grid Mobile */
@media screen and (max-width: 991px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Contact Icons Mobile */
@media screen and (max-width: 767px) {
    .hero-contact-icons,
    .contact-icons-bottom {
        gap: 12px;
    }
    
    .hero-contact-icon,
    .contact-icon-item {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* General Mobile Fixes */
@media screen and (max-width: 991px) {
    body {
        font-size: 15px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    h4 {
        font-size: 18px;
    }
}

@media screen and (max-width: 767px) {
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 22px;
    }
    
    h3 {
        font-size: 18px;
    }
    
    h4 {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    h1 {
        font-size: 20px;
    }
    
    h2 {
        font-size: 18px;
    }
    
    h3 {
        font-size: 16px;
    }
    
    h4 {
        font-size: 14px;
    }
}

/* ============================================
   SMALL MOBILE SCREENS (496px and below)
   ============================================ */
@media screen and (max-width: 496px) {
    /* Header - Ensure proper layout */
    .header-top {
        padding: 8px 0;
        min-height: 55px;
        max-height: 55px;
        gap: 5px;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .logo {
        flex-shrink: 1;
        min-width: 0;
        max-width: calc(100% - 120px);
    }
    
    .logo img {
        height: 40px;
        max-height: 40px;
        max-width: 120px;
        width: auto;
    }
    
    /* Mobile Menu Toggle - CRITICAL: Always visible */
    .mobile-menu-toggle {
        display: flex !important;
        width: 38px !important;
        height: 38px !important;
        font-size: 17px !important;
        z-index: 1001 !important;
        position: relative !important;
        flex-shrink: 0 !important;
        min-width: 38px !important;
        min-height: 38px !important;
        max-width: 38px !important;
        max-height: 38px !important;
        background: var(--primary-color) !important;
        color: var(--secondary-dark) !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3) !important;
        align-items: center !important;
        justify-content: center !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .mobile-menu-toggle i {
        font-size: 17px !important;
        color: var(--secondary-dark) !important;
    }
    
    /* Hide desktop navigation */
    .nav-menu {
        display: none !important;
    }
    
    /* Hide header actions on small screens */
    .header-actions {
        display: none !important;
    }
    
    /* Ensure nav menu wrapper doesn't block */
    .ul-header-nav-wrapper {
        display: none !important;
    }
    
    /* Mobile Menu when open */
    .nav-menu.mobile-open {
        display: flex !important;
        position: fixed !important;
        top: 55px !important;
        left: 0 !important;
        width: 100% !important;
        max-width: 280px !important;
        height: calc(100vh - 55px) !important;
        background: linear-gradient(135deg, #2d1810 0%, #3d2518 100%) !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding: 15px 0 !important;
        gap: 0 !important;
        z-index: 9999 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5) !important;
        border-right: 2px solid var(--gold-border) !important;
    }
    
    .nav-menu.mobile-open a {
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 13px !important;
        color: var(--primary-color) !important;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
    }
    
    .mobile-menu-backdrop {
        top: 55px !important;
    }
    
    /* Container */
    .container {
        padding: 0 10px;
    }
    
    /* Hero Section - Start right below navbar */
    .hero {
        min-height: 360px;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-slide {
        min-height: 360px;
        padding: 60px 0 20px !important; /* Start right below navbar */
        margin-top: 0 !important;
    }
    
    /* Contact Button - Hide on mobile */
    .contact-button-container {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    .contact-button {
        display: none !important;
    }
    
    .contact-form-wrapper {
        display: none !important;
    }
    
    /* Ensure hero slider doesn't overlap */
    .hero-slider {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-title {
        font-size: 18px !important;
    }
    
    .hero-subtitle {
        font-size: 16px !important;
    }
    
    .hero-description {
        font-size: 13px !important;
    }
}

/* ============================================
   VERY SMALL SCREENS (Below 491px)
   ============================================ */
@media screen and (max-width: 491px) {
    /* Header */
    .header-top {
        padding: 8px 0;
        min-height: 55px;
        max-height: 55px;
        gap: 6px;
    }
    
    .logo {
        max-width: calc(100% - 90px) !important; /* Adjusted for toggle + contact button */
    }
    
    .logo img {
        height: 42px;
        max-height: 42px;
        max-width: 130px;
    }
    
    /* Header Actions - Show contact button here */
    .header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        flex-shrink: 0 !important;
    }
    
    /* Mobile Menu Toggle - Ensure it's visible and properly sized */
    .mobile-menu-toggle {
        display: flex !important;
        width: 36px !important;
        height: 36px !important;
        font-size: 16px !important;
        z-index: 1001 !important;
        position: relative !important;
        flex-shrink: 0 !important;
        min-width: 36px !important;
        min-height: 36px !important;
        background: var(--primary-color) !important;
        color: var(--secondary-dark) !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3) !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Contact Button - Hide on mobile */
    .contact-button-container {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    .contact-button {
        display: none !important;
    }
    
    .contact-form-wrapper {
        display: none !important;
    }
    
    /* Ensure nav menu wrapper doesn't block toggle */
    .ul-header-nav-wrapper {
        display: none !important;
    }
    
    /* Mobile Menu */
    .nav-menu.mobile-open {
        top: 55px;
        max-width: 270px;
        padding: 15px 0;
    }
    
    .nav-menu.mobile-open a {
        padding: 12px 18px;
        font-size: 13px;
    }
    
    .mobile-menu-backdrop {
        top: 55px;
    }
    
    /* Hero Section - Fix overlap with navbar */
    .hero {
        min-height: 380px;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-slide {
        min-height: 380px;
        padding: 70px 0 20px !important; /* Increased top padding to avoid navbar overlap */
        margin-top: 0 !important;
    }
    
    /* Ensure hero slider doesn't overlap */
    .hero-slider {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-title {
        font-size: 19px !important;
    }
    
    .hero-subtitle {
        font-size: 17px !important;
    }
    
    .hero-description {
        font-size: 14px !important;
    }
    
    /* Sections */
    .section-title {
        font-size: 19px;
    }
    
    .section-description {
        font-size: 13px;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-secondary {
        padding: 11px 16px;
        font-size: 13px;
    }
    
    /* Contact Button */
    .contact-button {
        width: 58px;
        height: 58px;
        font-size: 22px;
    }
    
    .contact-form-wrapper {
        bottom: 75px;
        right: 15px;
        width: calc(100% - 30px);
        max-width: 380px;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 23px;
        bottom: 75px;
        right: 12px;
    }
}

/* ============================================
   EXTRA SMALL SCREENS (Below 400px)
   ============================================ */
@media screen and (max-width: 400px) {
    /* Container */
    .container {
        padding: 0 8px;
    }
    
    /* Header */
    .header-top {
        padding: 8px 0;
        min-height: 55px;
        max-height: 55px;
        gap: 8px;
    }
    
    .logo img {
        height: 40px;
        max-height: 40px;
        max-width: 120px;
    }
    
    .mobile-menu-toggle {
        width: 36px !important;
        height: 36px !important;
        font-size: 16px !important;
        display: flex !important;
        z-index: 1001 !important;
        position: relative !important;
        flex-shrink: 0 !important;
        min-width: 36px !important;
        min-height: 36px !important;
        background: var(--primary-color) !important;
        color: var(--secondary-dark) !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3) !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Further reduce button sizes on small mobile */
    .btn-brochure {
        padding: 5px 8px;
        font-size: 9px;
    }
    
    .btn-brochure i {
        font-size: 10px;
    }
    
    .btn-whatsapp {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    
    .btn-phone {
        padding: 5px 8px;
        font-size: 9px;
    }
    
    .btn-phone i {
        font-size: 10px;
    }
    
    /* Mobile Menu */
    .nav-menu.mobile-open {
        top: 55px;
        max-width: 280px;
        padding: 15px 0;
    }
    
    .nav-menu.mobile-open a {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .mobile-menu-backdrop {
        top: 55px;
    }
    
    /* Hero Section */
    .hero {
        min-height: 350px;
    }
    
    .hero-slide {
        min-height: 350px;
        padding: 55px 0 15px;
    }
    
    .hero-content-wrapper,
    .hero-content {
        padding: 15px 10px;
    }
    
    .hero-title {
        font-size: 18px !important;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 16px !important;
        margin-bottom: 8px;
    }
    
    .hero-description {
        font-size: 13px !important;
        margin-bottom: 8px;
    }
    
    .hero-tagline {
        font-size: 11px !important;
    }
    
    .investment-start-text {
        font-size: 12px !important;
        padding: 6px 10px;
        margin: 10px 0;
    }
    
    .hero-features {
        gap: 10px;
        margin: 15px 0;
    }
    
    .feature-box {
        padding: 12px;
    }
    
    .feature-box h3 {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .feature-box p {
        font-size: 14px;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    /* Hero Slider */
    .hero-slider-nav {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .hero-slider-controls {
        bottom: 10px;
    }
    
    .slider-dot {
        width: 6px;
        height: 6px;
        margin: 0 3px;
    }
    
    /* Sections */
    .about-section,
    .residential-section,
    .price-section,
    .amenities-section,
    .gallery-section,
    .location-section,
    .virtual-tour-section,
    .floor-plan-section {
        padding: 25px 0;
    }
    
    .section-title {
        font-size: 18px;
        margin-bottom: 10px;
        padding: 0 8px;
    }
    
    .section-description {
        font-size: 12px;
        margin-bottom: 15px;
        padding: 0 8px;
        line-height: 1.5;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-secondary,
    .btn-brochure-large,
    .btn-price,
    .btn-download-plan,
    .btn-costing-details {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    /* Residential Section */
    .residential-content-wrapper {
        gap: 20px;
    }
    
    .residential-image {
        max-height: 250px;
    }
    
    /* Price Section */
    .price-content-wrapper {
        gap: 20px;
    }
    
    .price-table {
        font-size: 11px;
    }
    
    .price-table th,
    .price-table td {
        padding: 6px 4px;
        font-size: 10px;
    }
    
    .price-table th:first-child,
    .price-table td:first-child {
        min-width: 70px;
    }
    
    .btn-price {
        padding: 6px 10px;
        font-size: 10px;
        white-space: nowrap;
    }
    
    .price-document-preview {
        padding: 15px;
    }
    
    .document-preview-header h3 {
        font-size: 14px;
    }
    
    .document-preview-header h4 {
        font-size: 12px;
    }
    
    /* Floor Plan Section */
    .floor-plans-grid {
        gap: 20px;
    }
    
    .floor-plan-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .floor-plan-image {
        max-height: 200px;
    }
    
    /* Amenities Section */
    .amenities-grid {
        gap: 12px;
    }
    
    .amenity-item {
        padding: 12px;
    }
    
    .amenity-item i {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .amenity-item p {
        font-size: 12px;
    }
    
    /* Gallery Section */
    .gallery-grid {
        gap: 10px;
    }
    
    .gallery-item img {
        min-height: 150px;
    }
    
    /* Location Section */
    .location-content-wrapper {
        gap: 20px;
    }
    
    .location-map-card,
    .location-info-card {
        padding: 15px;
    }
    
    .location-card-header {
        font-size: 16px;
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .location-category-buttons {
        gap: 8px;
    }
    
    .category-btn {
        padding: 10px 12px;
        font-size: 11px;
    }
    
    .connectivity-list li {
        font-size: 12px;
        padding: 8px 0;
    }
    
    .connectivity-list i {
        font-size: 12px;
        margin-right: 8px;
    }
    
    /* Virtual Tour Section */
    .virtual-tour-video-thumbnail {
        max-height: 250px;
    }
    
    .virtual-tour-play-button {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    /* Contact Button Container */
    .contact-button-container {
        bottom: 15px;
        right: 15px;
    }
    
    .contact-button {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
    
    .contact-form-wrapper {
        bottom: 75px;
        right: 15px;
        width: calc(100% - 30px);
        max-height: calc(100vh - 100px);
        padding: 15px;
    }
    
    .hero-form-container {
        padding: 15px;
    }
    
    .hero-form-header h3 {
        font-size: 16px;
    }
    
    .hero-form-header h4 {
        font-size: 14px;
    }
    
    .hero-form-group {
        margin-bottom: 12px;
    }
    
    .hero-form-group input {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .hero-checkbox-label {
        font-size: 11px;
        line-height: 1.4;
    }
    
    .hero-form-submit-btn {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .hero-contact-icons {
        gap: 10px;
        margin-top: 15px;
    }
    
    .hero-contact-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    /* Modals */
    .modal-content {
        width: 98%;
        padding: 15px 12px;
        max-height: 95vh;
    }
    
    .m3m-logo-modal h2 {
        font-size: 18px;
    }
    
    .modal-content h2 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    .form-group input {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .form-group .btn-otp,
    .form-group .btn-verify {
        padding: 10px 12px;
        font-size: 11px;
    }
    
    .checkbox-group label {
        font-size: 11px;
        line-height: 1.4;
    }
    
    .btn-submit,
    .btn-submit-pre-register {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .hero-popup-content {
        width: 98%;
        padding: 12px 10px;
    }
    
    .hero-popup-header {
        gap: 15px;
    }
    
    .we-promise-title {
        font-size: 18px;
    }
    
    .promise-item-popup {
        padding: 10px;
    }
    
    .promise-item-popup i {
        font-size: 20px;
    }
    
    .promise-item-popup h3 {
        font-size: 12px;
    }
    
    .form-instruction {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .form-group-hero {
        margin-bottom: 12px;
    }
    
    .form-group-hero input {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .checkbox-group-hero label span {
        font-size: 11px;
        line-height: 1.4;
    }
    
    .btn-submit-hero {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .close-modal,
    .close-hero-popup {
        width: 30px;
        height: 30px;
        font-size: 20px;
        top: 10px;
        right: 10px;
    }
    
    /* Footer */
    .footer {
        padding: 15px 0;
    }
    
    .footer-bottom {
        padding: 0 8px;
    }
    
    .rera-info,
    .disclaimer,
    .copyright {
        font-size: 10px;
        line-height: 1.4;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 22px;
        bottom: 70px;
        right: 12px;
    }
    
    /* Features Grid */
    .features-grid {
        gap: 15px;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .feature-card i {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .feature-card h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .feature-card p {
        font-size: 12px;
    }
    
    /* Contact Icons */
    .contact-icons-bottom {
        gap: 10px;
        margin-top: 15px;
    }
    
    .contact-icon-item {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    /* Gallery Modal */
    .gallery-modal {
        padding: 10px;
    }
    
    .gallery-modal-content img {
        max-height: 70vh;
    }
    
    .close-gallery {
        width: 30px;
        height: 30px;
        font-size: 20px;
        top: 10px;
        right: 10px;
    }
    
    /* Typography */
    body {
        font-size: 12px;
    }
    
    h1 {
        font-size: 18px;
    }
    
    h2 {
        font-size: 16px;
    }
    
    h3 {
        font-size: 14px;
    }
    
    h4 {
        font-size: 13px;
    }
    
    /* Pre-Register Modal */
    .pre-register-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    /* General Spacing */
    .brochure-download-section {
        margin-top: 20px;
    }
    
    .btn-brochure-large {
        width: 100%;
        padding: 12px 15px;
    }
}

/* ============================================
   VERY SMALL SCREENS (Below 360px)
   ============================================ */
@media screen and (max-width: 360px) {
    .container {
        padding: 0 6px;
    }
    
    .header-top {
        padding: 6px 0;
        min-height: 50px;
        max-height: 50px;
        gap: 6px;
    }
    
    .logo img {
        height: 35px;
        max-height: 35px;
        max-width: 100px;
    }
    
    .mobile-menu-toggle {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .nav-menu.mobile-open {
        top: 50px;
        max-width: 260px;
        padding: 12px 0;
    }
    
    .nav-menu.mobile-open a {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .mobile-menu-backdrop {
        top: 50px;
    }
    
    .hero {
        min-height: 300px;
    }
    
    .hero-slide {
        min-height: 300px;
        padding: 50px 0 10px;
    }
    
    .hero-title {
        font-size: 16px !important;
    }
    
    .hero-subtitle {
        font-size: 14px !important;
    }
    
    .hero-description {
        font-size: 12px !important;
    }
    
    .section-title {
        font-size: 16px;
    }
    
    .section-description {
        font-size: 11px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .price-table {
        font-size: 10px;
    }
    
    .price-table th,
    .price-table td {
        padding: 5px 3px;
        font-size: 9px;
    }
    
    .modal-content {
        padding: 12px 10px;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: 65px;
    }
}

/* ============================================
   EXTRA SMALL SCREENS (Below 320px)
   ============================================ */
@media screen and (max-width: 320px) {
    .container {
        padding: 0 5px;
    }
    
    .header-top {
        padding: 5px 0;
        min-height: 45px;
        max-height: 45px;
    }
    
    .logo img {
        height: 30px;
        max-height: 30px;
        max-width: 80px;
    }
    
    .mobile-menu-toggle {
        width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
        display: flex !important;
        z-index: 1001 !important;
        position: relative !important;
        flex-shrink: 0 !important;
        min-width: 32px !important;
        min-height: 32px !important;
        max-width: 32px !important;
        max-height: 32px !important;
        background: var(--primary-color) !important;
        color: var(--secondary-dark) !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3) !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .mobile-menu-toggle i {
        font-size: 14px !important;
        color: var(--secondary-dark) !important;
    }
    
    .nav-menu.mobile-open {
        top: 45px;
        max-width: 240px;
        padding: 10px 0;
    }
    
    .nav-menu.mobile-open a {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .mobile-menu-backdrop {
        top: 45px;
    }
    
    .hero {
        min-height: 280px;
    }
    
    .hero-slide {
        min-height: 280px;
        padding: 45px 0 8px;
    }
    
    .hero-title {
        font-size: 14px !important;
    }
    
    .hero-subtitle {
        font-size: 12px !important;
    }
    
    .hero-description {
        font-size: 11px !important;
    }
    
    .section-title {
        font-size: 14px;
    }
    
    .section-description {
        font-size: 10px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 8px 10px;
        font-size: 11px;
    }
    
    .price-table {
        font-size: 9px;
    }
    
    .price-table th,
    .price-table td {
        padding: 4px 2px;
        font-size: 8px;
    }
    
    .modal-content {
        padding: 10px 8px;
    }
    
    .whatsapp-float {
        width: 40px;
        height: 40px;
        font-size: 18px;
        bottom: 60px;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE (200px - 496px)
   ============================================ */

/* 496px and below - Main mobile breakpoint */
@media screen and (max-width: 496px) {
    /* Header - Ensure proper layout */
    .header-top {
        padding: 8px 0 !important;
        min-height: 55px !important;
        max-height: 55px !important;
        gap: 5px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        box-sizing: border-box !important;
        position: relative !important;
    }
    
    .logo {
        flex-shrink: 1 !important;
        min-width: 0 !important;
        max-width: calc(100% - 50px) !important;
    }
    
    .logo img {
        height: 40px !important;
        max-height: 40px !important;
        max-width: 120px !important;
        width: auto !important;
    }
    
    /* Mobile Menu Toggle - CRITICAL: Always visible */
    .mobile-menu-toggle {
        display: flex !important;
        width: 38px !important;
        height: 38px !important;
        font-size: 17px !important;
        z-index: 1001 !important;
        position: relative !important;
        flex-shrink: 0 !important;
        min-width: 38px !important;
        min-height: 38px !important;
        max-width: 38px !important;
        max-height: 38px !important;
        background: var(--primary-color) !important;
        color: var(--secondary-dark) !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3) !important;
        align-items: center !important;
        justify-content: center !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .mobile-menu-toggle i {
        font-size: 17px !important;
        color: var(--secondary-dark) !important;
        display: block !important;
    }
    
    /* Hide desktop navigation */
    .nav-menu {
        display: none !important;
    }
    
    /* Header Actions - Show contact button here */
    .header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        flex-shrink: 0 !important;
    }
    
    /* Ensure nav menu wrapper doesn't block */
    .ul-header-nav-wrapper {
        display: none !important;
    }
    
    /* Contact Button - Move to header next to toggle */
    .contact-button-container {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        right: auto !important;
        left: auto !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 0 !important;
        z-index: 1001 !important;
        margin: 0 !important;
        pointer-events: auto !important;
    }
    
    .contact-button {
        width: 38px !important;
        height: 38px !important;
        border-radius: 8px !important;
        padding: 0 !important;
        font-size: 17px !important;
        margin-top: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-indent: -9999px !important;
        overflow: hidden !important;
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3) !important;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold-light) 100%) !important;
    }
    
    .contact-button i {
        font-size: 17px !important;
        text-indent: 0 !important;
        position: absolute !important;
    }
    
    .contact-form-wrapper {
        position: fixed !important;
        top: 60px !important;
        right: 10px !important;
        bottom: auto !important;
        width: calc(100% - 20px) !important;
        max-width: 350px !important;
        max-height: calc(100vh - 80px) !important;
        overflow-y: auto !important;
    }
    
    /* Mobile Menu when open */
    .nav-menu.mobile-open {
        display: flex !important;
        position: fixed !important;
        top: 55px !important;
        left: 0 !important;
        width: 100% !important;
        max-width: 280px !important;
        height: calc(100vh - 55px) !important;
        background: linear-gradient(135deg, #2d1810 0%, #3d2518 100%) !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding: 15px 0 !important;
        gap: 0 !important;
        z-index: 9999 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5) !important;
        border-right: 2px solid var(--gold-border) !important;
    }
    
    .nav-menu.mobile-open a {
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 13px !important;
        color: var(--primary-color) !important;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
    }
    
    .mobile-menu-backdrop {
        top: 55px !important;
    }
}

/* 400px and below - Comprehensive Responsive */
@media screen and (max-width: 400px) {
    /* Container */
    .container {
        padding: 0 8px !important;
    }
    
    /* Header */
    .header-top {
        padding: 7px 0 !important;
        min-height: 52px !important;
        max-height: 52px !important;
        gap: 4px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .logo {
        flex-shrink: 1 !important;
        min-width: 0 !important;
        max-width: calc(100% - 80px) !important; /* Space for toggle + contact button */
    }
    
    .logo img {
        height: 38px !important;
        max-height: 38px !important;
        max-width: 110px !important;
        width: auto !important;
    }
    
    /* Mobile Menu Toggle - CRITICAL */
    .mobile-menu-toggle {
        display: flex !important;
        width: 36px !important;
        height: 36px !important;
        font-size: 16px !important;
        min-width: 36px !important;
        min-height: 36px !important;
        max-width: 36px !important;
        max-height: 36px !important;
        background: var(--primary-color) !important;
        color: var(--secondary-dark) !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3) !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 1001 !important;
        position: relative !important;
        flex-shrink: 0 !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .mobile-menu-toggle i {
        font-size: 16px !important;
        color: var(--secondary-dark) !important;
        display: block !important;
    }
    
    /* Hide desktop elements */
    .nav-menu:not(.mobile-open) {
        display: none !important;
    }
    
    .header-actions {
        display: none !important;
    }
    
    .ul-header-nav-wrapper {
        display: none !important;
    }
    
    /* Mobile Menu */
    .nav-menu.mobile-open {
        display: flex !important;
        position: fixed !important;
        top: 52px !important;
        left: 0 !important;
        width: 100% !important;
        max-width: 270px !important;
        height: calc(100vh - 52px) !important;
        background: linear-gradient(135deg, #2d1810 0%, #3d2518 100%) !important;
        flex-direction: column !important;
        padding: 15px 0 !important;
        z-index: 9999 !important;
        overflow-y: auto !important;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5) !important;
    }
    
    .nav-menu.mobile-open a {
        padding: 12px 18px !important;
        font-size: 12px !important;
    }
    
    .mobile-menu-backdrop {
        top: 52px !important;
    }
    
    /* Hero Section - Start right below navbar */
    .hero {
        min-height: 340px !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-slide {
        min-height: 340px !important;
        padding: 60px 0 15px !important; /* Start right below navbar */
        margin-top: 0 !important;
    }
    
    /* Contact Button - Hide on mobile */
    .contact-button-container {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    .contact-button {
        display: none !important;
    }
    
    .contact-form-wrapper {
        display: none !important;
    }
    
    /* Ensure hero slider doesn't overlap */
    .hero-slider {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-title {
        font-size: 17px !important;
        line-height: 1.3 !important;
    }
    
    .hero-subtitle {
        font-size: 15px !important;
    }
    
    .hero-description {
        font-size: 12px !important;
    }
    
    .hero-tagline {
        font-size: 11px !important;
    }
    
    .investment-start-text {
        font-size: 13px !important;
        padding: 7px 12px !important;
    }
    
    .hero-features {
        gap: 10px !important;
        margin: 15px 0 !important;
    }
    
    .feature-box {
        padding: 12px !important;
    }
    
    .feature-box h3 {
        font-size: 12px !important;
    }
    
    .feature-box p {
        font-size: 14px !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 11px 15px !important;
        font-size: 12px !important;
        width: 100% !important;
    }
    
    /* Sections */
    .section-title {
        font-size: 18px !important;
        margin-bottom: 12px !important;
    }
    
    .section-description {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }
    
    /* Buttons */
    .btn-brochure-large {
        padding: 10px 15px !important;
        font-size: 11px !important;
    }
    
    /* Contact Button - Hide on mobile */
    .contact-button-container {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    .contact-button {
        display: none !important;
    }
    
    .contact-form-wrapper {
        display: none !important;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        font-size: 22px !important;
        bottom: 70px !important;
        right: 10px !important;
    }
}

/* 360px and below */
@media screen and (max-width: 360px) {
    .container {
        padding: 0 7px !important;
    }
    
    .header-top {
        padding: 6px 0 !important;
        min-height: 50px !important;
        max-height: 50px !important;
        gap: 4px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    
    .logo {
        max-width: calc(100% - 42px) !important;
        flex-shrink: 1 !important;
    }
    
    .logo img {
        height: 35px !important;
        max-height: 35px !important;
        max-width: 100px !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        width: 35px !important;
        height: 35px !important;
        font-size: 15px !important;
        min-width: 35px !important;
        min-height: 35px !important;
        max-width: 35px !important;
        max-height: 35px !important;
        background: var(--primary-color) !important;
        color: var(--secondary-dark) !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3) !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 1001 !important;
        position: relative !important;
        flex-shrink: 0 !important;
    }
    
    .mobile-menu-toggle i {
        font-size: 15px !important;
        color: var(--secondary-dark) !important;
        display: block !important;
    }
    
    .nav-menu:not(.mobile-open) {
        display: none !important;
    }
    
    .header-actions {
        display: none !important;
    }
    
    .nav-menu.mobile-open {
        top: 50px !important;
        max-width: 260px !important;
        height: calc(100vh - 50px) !important;
        padding: 12px 0 !important;
    }
    
    .nav-menu.mobile-open a {
        padding: 11px 16px !important;
        font-size: 11px !important;
    }
    
    .mobile-menu-backdrop {
        top: 50px !important;
    }
    
    /* Hero Section - Fix overlap */
    .hero {
        min-height: 320px !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-slide {
        min-height: 320px !important;
        padding: 53px 0 12px !important; /* Start right below navbar */
        margin-top: 0 !important;
    }
    
    /* Contact Button - Hide on mobile */
    .contact-button-container {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    .contact-button {
        display: none !important;
    }
    
    .contact-form-wrapper {
        display: none !important;
    }
    
    .hero-slider {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-title {
        font-size: 16px !important;
    }
    
    .hero-subtitle {
        font-size: 14px !important;
    }
    
    .section-title {
        font-size: 17px !important;
    }
    
    .section-description {
        font-size: 11px !important;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 12px !important;
        font-size: 11px !important;
    }
}

/* 320px and below */
@media screen and (max-width: 320px) {
    .container {
        padding: 0 6px !important;
    }
    
    .header-top {
        padding: 5px 0 !important;
        min-height: 48px !important;
        max-height: 48px !important;
        gap: 3px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .logo {
        max-width: calc(100% - 38px) !important;
        flex-shrink: 1 !important;
        min-width: 0 !important;
    }
    
    .logo img {
        height: 32px !important;
        max-height: 32px !important;
        max-width: 90px !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
        min-width: 32px !important;
        min-height: 32px !important;
        max-width: 32px !important;
        max-height: 32px !important;
        background: var(--primary-color) !important;
        color: var(--secondary-dark) !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3) !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 1001 !important;
        position: relative !important;
        flex-shrink: 0 !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .mobile-menu-toggle i {
        font-size: 14px !important;
    }
    
    .nav-menu.mobile-open {
        top: 48px !important;
        max-width: 240px !important;
        height: calc(100vh - 48px) !important;
        padding: 12px 0 !important;
    }
    
    .nav-menu.mobile-open a {
        padding: 10px 15px !important;
        font-size: 11px !important;
    }
    
    .mobile-menu-backdrop {
        top: 48px !important;
    }
    
    /* Hero Section - Start right below navbar */
    .hero {
        min-height: 300px !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-slide {
        min-height: 300px !important;
        padding: 53px 0 10px !important; /* Start right below navbar */
        margin-top: 0 !important;
    }
    
    .hero-slider {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Contact Button - Hide on mobile */
    .contact-button-container {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    .contact-button {
        display: none !important;
    }
    
    .contact-form-wrapper {
        display: none !important;
    }
    
    .hero-title {
        font-size: 15px !important;
    }
    
    .hero-subtitle {
        font-size: 13px !important;
    }
    
    .hero-description {
        font-size: 11px !important;
    }
    
    .section-title {
        font-size: 16px !important;
    }
    
    .section-description {
        font-size: 10px !important;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 9px 10px !important;
        font-size: 10px !important;
    }
    
    .feature-box {
        padding: 10px !important;
    }
    
    .feature-box h3 {
        font-size: 11px !important;
    }
    
    .feature-box p {
        font-size: 13px !important;
    }
}

/* 280px and below */
@media screen and (max-width: 280px) {
    .header-top {
        padding: 4px 0 !important;
        min-height: 46px !important;
        max-height: 46px !important;
        gap: 3px !important;
    }
    
    .logo img {
        height: 30px !important;
        max-height: 30px !important;
        max-width: 85px !important;
    }
    
    .mobile-menu-toggle {
        width: 30px !important;
        height: 30px !important;
        font-size: 13px !important;
        min-width: 30px !important;
        min-height: 30px !important;
        max-width: 30px !important;
        max-height: 30px !important;
    }
    
    .mobile-menu-toggle i {
        font-size: 13px !important;
    }
    
    .nav-menu.mobile-open {
        top: 46px !important;
        max-width: 230px !important;
        height: calc(100vh - 46px) !important;
        padding: 10px 0 !important;
    }
    
    .nav-menu.mobile-open a {
        padding: 9px 12px !important;
        font-size: 11px !important;
    }
    
    .mobile-menu-backdrop {
        top: 46px !important;
    }
    
    /* Hero Section - Fix overlap */
    .hero {
        min-height: 290px !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-slide {
        min-height: 290px !important;
        padding: 50px 0 8px !important; /* Start right below navbar */
        margin-top: 0 !important;
    }
    
    /* Contact Button - Hide on mobile */
    .contact-button-container {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    .contact-button {
        display: none !important;
    }
    
    .contact-form-wrapper {
        display: none !important;
    }
    
    .hero-slider {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}

/* 240px and below */
@media screen and (max-width: 240px) {
    .container {
        padding: 0 4px !important;
    }
    
    .header-top {
        padding: 3px 0 !important;
        min-height: 44px !important;
        max-height: 44px !important;
        gap: 2px !important;
    }
    
    .logo {
        max-width: calc(100% - 32px) !important;
    }
    
    .logo img {
        height: 28px !important;
        max-height: 28px !important;
        max-width: 75px !important;
    }
    
    .mobile-menu-toggle {
        width: 28px !important;
        height: 28px !important;
        font-size: 12px !important;
        min-width: 28px !important;
        min-height: 28px !important;
        max-width: 28px !important;
        max-height: 28px !important;
    }
    
    .mobile-menu-toggle i {
        font-size: 12px !important;
    }
    
    .nav-menu.mobile-open {
        top: 44px !important;
        max-width: 220px !important;
        height: calc(100vh - 44px) !important;
        padding: 8px 0 !important;
    }
    
    .nav-menu.mobile-open a {
        padding: 8px 10px !important;
        font-size: 9px !important;
    }
    
    .mobile-menu-backdrop {
        top: 44px !important;
    }
    
    /* Hero Section - Fix overlap */
    .hero {
        min-height: 280px !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-slide {
        min-height: 280px !important;
        padding: 48px 0 6px !important; /* Start right below navbar */
        margin-top: 0 !important;
    }
    
    /* Contact Button - Hide on mobile */
    .contact-button-container {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    .contact-button {
        display: none !important;
    }
    
    .contact-form-wrapper {
        display: none !important;
    }
    
    .hero-slider {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-title {
        font-size: 13px !important;
    }
    
    .hero-subtitle {
        font-size: 11px !important;
    }
    
    .section-title {
        font-size: 14px !important;
    }
    
    .section-description {
        font-size: 8px !important;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 7px 8px !important;
        font-size: 8px !important;
    }
}

/* ============================================
   iPhone SPECIFIC MEDIA QUERIES
   ============================================ */

/* iPhone 14 Pro Max, iPhone 13 Pro Max, iPhone 12 Pro Max */
@media screen and (max-width: 428px) and (min-width: 390px) {
    .header-top {
        min-height: 60px !important;
        max-height: 60px !important;
    }
    
    .hero {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-slide {
        padding: 75px 0 20px !important;
    }
    
    .nav-menu.mobile-open {
        top: 60px !important;
        height: calc(100vh - 60px) !important;
    }
    
    .mobile-menu-backdrop {
        top: 60px !important;
    }
}

/* iPhone 14, iPhone 13, iPhone 12 */
@media screen and (max-width: 390px) and (min-width: 375px) {
    .header-top {
        min-height: 58px !important;
        max-height: 58px !important;
    }
    
    .hero {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-slide {
        padding: 63px 0 20px !important; /* Start right below navbar */
    }
    
    .nav-menu.mobile-open {
        top: 58px !important;
        height: calc(100vh - 58px) !important;
    }
    
    .mobile-menu-backdrop {
        top: 58px !important;
    }
    
    /* Contact Button - Hide on mobile */
    .contact-button-container {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    .contact-button {
        display: none !important;
    }
    
    .contact-form-wrapper {
        display: none !important;
    }
}

/* iPhone SE, iPhone 8, iPhone 7, iPhone 6 */
@media screen and (max-width: 375px) and (min-width: 320px) {
    .header-top {
        min-height: 56px !important;
        max-height: 56px !important;
    }
    
    .hero {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-slide {
        padding: 61px 0 18px !important; /* Start right below navbar */
    }
    
    .nav-menu.mobile-open {
        top: 56px !important;
        height: calc(100vh - 56px) !important;
    }
    
    .mobile-menu-backdrop {
        top: 56px !important;
    }
    
    /* Contact Button - Hide on mobile */
    .contact-button-container {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    .contact-button {
        display: none !important;
    }
    
    .contact-form-wrapper {
        display: none !important;
    }
}

/* 200px and below */
@media screen and (max-width: 200px) {
    .header-top {
        padding: 2px 0 !important;
        min-height: 42px !important;
        max-height: 42px !important;
        gap: 2px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .logo {
        max-width: calc(100% - 30px) !important;
        flex-shrink: 1 !important;
        min-width: 0 !important;
    }
    
    .logo img {
        height: 25px !important;
        max-height: 25px !important;
        max-width: 65px !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        width: 26px !important;
        height: 26px !important;
        font-size: 11px !important;
        min-width: 26px !important;
        min-height: 26px !important;
        max-width: 26px !important;
        max-height: 26px !important;
        background: var(--primary-color) !important;
        color: var(--secondary-dark) !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3) !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 1001 !important;
        position: relative !important;
        flex-shrink: 0 !important;
    }
    
    .mobile-menu-toggle i {
        font-size: 11px !important;
        color: var(--secondary-dark) !important;
        display: block !important;
    }
    
    .nav-menu:not(.mobile-open) {
        display: none !important;
    }
    
    .header-actions {
        display: none !important;
    }
    
    .nav-menu.mobile-open {
        top: 42px !important;
        max-width: 200px !important;
        width: 100% !important;
        height: calc(100vh - 42px) !important;
        padding: 6px 0 !important;
    }
    
    .nav-menu.mobile-open a {
        padding: 6px 8px !important;
        font-size: 8px !important;
    }
    
    .mobile-menu-backdrop {
        top: 42px !important;
    }
    
    /* Hero Section - Fix overlap */
    .hero {
        min-height: 270px !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-slide {
        min-height: 270px !important;
        padding: 50px 0 5px !important; /* Increased top padding to avoid navbar overlap */
        margin-top: 0 !important;
    }
    
    .hero-slider {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}

