/* ========================================
   Floating Widgets - Elan The Statement
   WhatsApp, Call, Enquiry Buttons (Gold Theme)
   ======================================== */

/* Floating Widgets Container */
.floating-widgets {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Floating Button Base - Gold Theme */
.floating-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #0D0D0D;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(218, 188, 116, 0.3);
    position: relative;
    border: 2px solid rgba(218, 188, 116, 0.4);
    outline: none;
    text-decoration: none;
    background: linear-gradient(135deg, #DABC74 0%, #98723B 100%);
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 30px rgba(218, 188, 116, 0.5);
    border-color: rgba(218, 188, 116, 0.6);
}

.floating-btn:active {
    transform: scale(0.95);
}

/* Tooltip */
.float-tooltip {
    position: absolute;
    right: calc(100% + 15px);
    white-space: nowrap;
    background: #1a1a1a;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.float-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid #1a1a1a;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.floating-btn:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    right: calc(100% + 20px);
}

/* WhatsApp Button - Gold Theme with Green Accent */
.whatsapp-float {
    background: linear-gradient(135deg, #DABC74 0%, #98723B 100%);
    color: #0D0D0D;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #DABC74 0%, #98723B 100%);
    opacity: 0;
    z-index: -1;
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #C9A85C 0%, #7D5A2A 100%);
}

/* Call Button - Gold Theme */
.call-float {
    background: linear-gradient(135deg, #98723B 0%, #DABC74 100%);
    color: #0D0D0D;
}

.call-float i {
    animation: shake 2s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-8deg); }
    20% { transform: rotate(8deg); }
    30% { transform: rotate(-8deg); }
    40% { transform: rotate(8deg); }
    50% { transform: rotate(0deg); }
}

.call-float:hover {
    background: linear-gradient(135deg, #7D5A2A 0%, #C9A85C 100%);
}

/* Enquiry Button - Gold Theme */
.enquiry-float {
    background: linear-gradient(135deg, #DABC74 0%, #977138 100%);
    color: #0D0D0D;
}

.enquiry-float:hover {
    background: linear-gradient(135deg, #C9A85C 0%, #7D5A2A 100%);
}

/* Hero Section Styles */
/* Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-fallback-img {
    display: none;
}

/* Show fallback if video not supported */
.no-video .hero-video {
    display: none;
}

.no-video .hero-fallback-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   Hero RERA Banner - New Design
   ======================================== */

.hero-rera-banner {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(218, 188, 116, 0.15) 0%, rgba(152, 114, 59, 0.15) 100%);
    border: 1px solid rgba(218, 188, 116, 0.4);
    border-radius: 50px;
    padding: 12px 28px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.rera-badge-new {
    font-size: 0.9rem;
    font-weight: 600;
    color: #DABC74;
    letter-spacing: 0.5px;
}

.rera-badge-new i {
    margin-right: 6px;
    color: #DABC74;
}

.rera-divider {
    color: rgba(218, 188, 116, 0.5);
    font-weight: 300;
}

.prelaunch-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #DABC74;
    letter-spacing: 0.5px;
}

.prelaunch-text i {
    margin-right: 6px;
    animation: bounce 1.5s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* ========================================
   Overview Section - 2 Column Layout
   ======================================== */

.overview-section-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

/* Left Side - Logo */
.overview-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-main-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 40px rgba(218, 188, 116, 0.2));
    transition: all 0.4s ease;
}

.overview-main-logo:hover {
    filter: drop-shadow(0 12px 50px rgba(218, 188, 116, 0.3));
    transform: scale(1.03);
}

/* Right Side - Content */
.overview-right {
    text-align: left;
}

.overview-right .section-label {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #DABC74;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.overview-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.25;
    letter-spacing: 0.5px;
}

.overview-description {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #B8B8B8;
    margin-bottom: 30px;
}

/* Overview Stats Row */
.overview-highlights {
    display: flex;
    gap: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(218, 188, 116, 0.2);
}

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

.overview-stat .stat-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #DABC74;
    line-height: 1;
    margin-bottom: 6px;
}

.overview-stat .stat-label {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Responsive Overview 2-Column */
@media (max-width: 992px) {
    .overview-section-header {
        grid-template-columns: 1fr 1.8fr;
        gap: 40px;
    }

    .overview-main-logo {
        max-width: 260px;
    }

    .overview-heading {
        font-size: 2rem;
    }

    .overview-highlights {
        gap: 25px;
    }

    .overview-stat .stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .overview-section-header {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        margin-bottom: 50px;
    }

    .overview-left {
        order: 1;
    }

    .overview-right {
        order: 2;
        text-align: center;
    }

    .overview-main-logo {
        max-width: 220px;
    }

    .overview-heading {
        font-size: 1.7rem;
    }

    .overview-description {
        font-size: 1rem;
    }

    .overview-highlights {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .overview-stat .stat-value {
        font-size: 1.8rem;
    }

    .overview-stat .stat-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .overview-main-logo {
        max-width: 180px;
    }

    .overview-heading {
        font-size: 1.4rem;
    }

    .overview-highlights {
        gap: 15px;
    }

    .overview-stat .stat-value {
        font-size: 1.5rem;
    }
}

/* Config Buttons */
.config-buttons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.config-buttons .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 0.9rem;
}

.config-buttons .btn i {
    font-size: 0.95rem;
}

/* WhatsApp Button Style */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border: none;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    color: #fff;
}

/* ========================================
   Header Improvements - Enhanced
   ======================================== */

.header {
    padding: 12px 0;
}

.header.scrolled {
    padding: 8px 0;
}

.header .logo-img {
    height: 42px;
    width: auto;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.header.scrolled .logo-img {
    height: 36px;
    filter: brightness(1);
}

.nav {
    gap: 30px;
}

.nav-menu {
    gap: 32px;
}

.nav-menu li a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #DABC74, #98723B);
    transition: width 0.3s ease;
}

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

.nav-cta {
    margin-left: 20px;
}

/* Header Button - Outline Style for Consistency */
.btn-enquire-nav {
    padding: 10px 24px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: transparent !important;
    color: #DABC74 !important;
    border: 1px solid #DABC74 !important;
    box-shadow: none;
    transition: all 0.3s ease;
}

.btn-enquire-nav:hover {
    background: linear-gradient(135deg, #DABC74 0%, #98723B 100%) !important;
    color: #0D0D0D !important;
    border-color: #DABC74 !important;
    box-shadow: 0 4px 20px rgba(218, 188, 116, 0.3);
    transform: translateY(-1px);
}

/* RERA Banner Responsive */
@media (max-width: 768px) {
    .hero-rera-banner {
        flex-direction: column;
        gap: 8px;
        padding: 10px 20px;
        border-radius: 12px;
    }

    .rera-divider {
        display: none;
    }

    .rera-badge-new,
    .prelaunch-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-rera-banner {
        padding: 8px 15px;
    }

    .rera-badge-new,
    .prelaunch-text {
        font-size: 0.75rem;
    }
}

/* Footer Social Icons */
.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #DABC74 0%, #98723B 100%);
    transform: translateY(-3px);
}

/* RERA Info */
.rera-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rera-info i {
    color: #28a745;
}

/* Responsive Floating Widgets */
@media (max-width: 768px) {
    .floating-widgets {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .float-tooltip {
        display: none;
    }

    /* Countdown responsive */
    .launch-offer-banner {
        flex-direction: column;
        gap: 12px;
        padding: 12px 15px;
    }

    .countdown-timer {
        gap: 10px;
    }

    .countdown-item {
        min-width: 45px;
        padding: 6px 8px;
    }

    .countdown-value {
        font-size: 1.2rem;
    }

    .countdown-label {
        font-size: 0.55rem;
    }

    /* Config buttons stack */
    .config-buttons {
        flex-direction: column;
    }

    .config-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .floating-widgets {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Form Label Icons */
.lead-form label i,
.form-group label i {
    color: var(--color-gold, #DABC74);
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.lead-form h3 i {
    margin-right: 10px;
    color: var(--color-gold, #DABC74);
}

.form-privacy i {
    color: #28a745;
    margin-right: 6px;
}

/* Print - hide floating widgets */
@media print {
    .floating-widgets {
        display: none;
    }
}

/* ========================================
   Hero Section - Still Image Background
   ======================================== */

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* ========================================
   Video CTA Section - Above Footer
   ======================================== */

.video-cta-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-cta-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(13, 13, 13, 0.85) 0%,
        rgba(13, 13, 13, 0.75) 50%,
        rgba(13, 13, 13, 0.85) 100%
    );
}

.video-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.video-cta-label {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #DABC74;
    font-weight: 600;
    margin-bottom: 15px;
    padding: 8px 20px;
    border: 1px solid rgba(218, 188, 116, 0.3);
    border-radius: 25px;
}

.video-cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.video-cta-description {
    font-size: 1.1rem;
    color: #B8B8B8;
    margin-bottom: 35px;
    line-height: 1.7;
}

/* Video CTA Stats */
.video-cta-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    padding: 25px 0;
    border-top: 1px solid rgba(218, 188, 116, 0.2);
    border-bottom: 1px solid rgba(218, 188, 116, 0.2);
}

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

.cta-stat-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #DABC74;
    line-height: 1;
    margin-bottom: 6px;
}

.cta-stat-label {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Video CTA Buttons */
.video-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.video-cta-buttons .btn {
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.video-cta-buttons .btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border: none;
}

.video-cta-buttons .btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-2px);
}

.video-cta-phone {
    font-size: 0.95rem;
    color: #B8B8B8;
}

.video-cta-phone a {
    color: #DABC74;
    font-weight: 600;
    transition: color 0.3s ease;
}

.video-cta-phone a:hover {
    color: #fff;
}

.video-cta-phone i {
    margin-right: 8px;
    color: #DABC74;
}

/* ========================================
   Mobile Responsive - Video CTA Section
   ======================================== */

@media (max-width: 992px) {
    .video-cta-section {
        min-height: 450px;
    }

    .video-cta-content {
        padding: 60px 20px;
    }

    .video-cta-heading {
        font-size: 2.2rem;
    }

    .video-cta-stats {
        gap: 30px;
    }

    .cta-stat-value {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .video-cta-section {
        min-height: auto;
    }

    .video-cta-content {
        padding: 50px 15px;
    }

    .video-cta-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
        padding: 6px 15px;
    }

    .video-cta-heading {
        font-size: 1.7rem;
        margin-bottom: 12px;
    }

    .video-cta-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .video-cta-stats {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px 0;
        margin-bottom: 30px;
    }

    .cta-stat {
        flex: 1 1 80px;
        min-width: 80px;
    }

    .cta-stat-value {
        font-size: 1.5rem;
    }

    .cta-stat-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .video-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .video-cta-buttons .btn {
        width: 100%;
        min-width: auto;
        padding: 14px 20px;
    }

    .video-cta-phone {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .video-cta-content {
        padding: 40px 12px;
    }

    .video-cta-heading {
        font-size: 1.4rem;
    }

    .video-cta-description {
        font-size: 0.9rem;
    }

    .cta-stat-value {
        font-size: 1.3rem;
    }
}

/* ========================================
   Enhanced Mobile Optimizations
   ======================================== */

/* Mobile Hero Adjustments */
@media (max-width: 768px) {
    .hero {
        padding-top: 70px;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .hero-highlights {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-bottom: 25px;
    }

    .hero-highlights .highlight-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-highlights .highlight-value {
        font-size: 1.3rem;
    }

    .hero-highlights .highlight-label {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-highlights .highlight-value {
        font-size: 1.1rem;
    }

    .hero-highlights .highlight-label {
        font-size: 0.6rem;
    }
}

/* Mobile Navigation Improvements */
@media (max-width: 991px) {
    .nav-menu {
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .nav-menu li a {
        padding: 15px 0;
        font-size: 1rem;
    }

    .nav-cta {
        margin-top: 20px;
        width: 100%;
    }

    .nav-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Form Optimizations */
@media (max-width: 768px) {
    .lead-form,
    .modal-form {
        padding: 20px 15px;
    }

    .lead-form h3,
    .modal-header h3 {
        font-size: 1.2rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents iOS zoom on focus */
        padding: 14px 12px;
    }

    .btn-block {
        padding: 16px 20px;
        font-size: 1rem;
    }

    /* Modal adjustments for mobile */
    .modal-container {
        width: 95%;
        max-width: 95%;
        margin: 10px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-header {
        padding: 20px 15px;
    }

    .modal-logo {
        max-width: 140px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Mobile Section Headers */
@media (max-width: 768px) {
    .section-header h2,
    .section-label + h2 {
        font-size: 1.5rem;
        line-height: 1.25;
    }

    .section-intro {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .section-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
}

/* Mobile Card Improvements */
@media (max-width: 768px) {
    .config-card,
    .highlight-card,
    .why-card,
    .amenity-card {
        padding: 20px 15px;
    }

    .config-card h3 {
        font-size: 1.1rem;
    }

    .price-value {
        font-size: 1.3rem;
    }

    .config-specs {
        gap: 10px;
    }

    .spec-value {
        font-size: 0.75rem;
    }
}

/* Mobile Footer Improvements */
@media (max-width: 768px) {
    .footer {
        padding-top: 40px;
    }

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

    .footer-brand img {
        max-width: 180px;
    }

    .footer-description {
        font-size: 0.85rem;
    }

    .footer-column h4 {
        font-size: 0.9rem;
    }

    .footer-social {
        gap: 12px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }
}

/* Touch-friendly button sizes */
@media (max-width: 768px) {
    .btn {
        min-height: 48px;
        padding: 12px 20px;
    }

    .btn-lg {
        min-height: 52px;
        padding: 14px 24px;
    }
}

/* Gallery mobile grid */
@media (max-width: 576px) {
    .gallery-grid {
        gap: 8px;
    }

    .gallery-caption {
        font-size: 0.75rem;
        padding: 8px;
    }
}

/* Safe area insets for notched phones */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .floating-widgets {
        padding-bottom: env(safe-area-inset-bottom);
    }

    .footer-bottom {
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }
}

/* Prevent horizontal scroll on mobile */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* ========================================
   Mobile Bottom CTA Bar - Horizontal Fixed
   ======================================== */

.mobile-bottom-cta {
    display: none; /* Hidden on desktop */
}

@media (max-width: 991px) {
    /* Hide vertical floating widgets on mobile/tablet */
    .floating-widgets {
        display: none !important;
    }

    /* Show horizontal mobile bottom CTA */
    .mobile-bottom-cta {
        display: block !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 100%);
        border-top: 1px solid rgba(218, 188, 116, 0.3);
        padding: 10px 15px;
        padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
        /* Smooth scroll hide/show transition */
        transform: translateY(0);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Hidden state on scroll down */
    .mobile-bottom-cta.hidden {
        transform: translateY(100%);
    }

    .mobile-bottom-cta-inner {
        display: flex;
        gap: 12px;
        max-width: 500px;
        margin: 0 auto;
    }

    .mobile-cta-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 20px;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        min-height: 52px;
    }

    .mobile-cta-btn i {
        font-size: 18px;
    }

    .mobile-cta-btn span {
        font-size: 14px;
        font-weight: 600;
    }

    /* Call Button - Gold gradient */
    .mobile-cta-call {
        background: linear-gradient(135deg, #DABC74 0%, #98723B 100%);
        color: #0D0D0D;
        box-shadow: 0 4px 15px rgba(218, 188, 116, 0.3);
    }

    .mobile-cta-call:hover,
    .mobile-cta-call:active {
        background: linear-gradient(135deg, #C9A85C 0%, #7D5A2A 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(218, 188, 116, 0.4);
    }

    /* WhatsApp Button - Green */
    .mobile-cta-whatsapp {
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        color: #FFFFFF;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }

    .mobile-cta-whatsapp:hover,
    .mobile-cta-whatsapp:active {
        background: linear-gradient(135deg, #20BD5C 0%, #0E7A6D 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }

    /* Adjust body padding to account for fixed bottom bar */
    body {
        padding-bottom: 80px;
    }

    /* Footer needs extra bottom padding */
    .footer,
    footer {
        padding-bottom: 100px !important;
    }
}

@media (max-width: 480px) {
    .mobile-bottom-cta {
        padding: 8px 12px;
        padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    }

    .mobile-bottom-cta-inner {
        gap: 10px;
    }

    .mobile-cta-btn {
        padding: 12px 16px;
        min-height: 48px;
        border-radius: 10px;
    }

    .mobile-cta-btn i {
        font-size: 16px;
    }

    .mobile-cta-btn span {
        font-size: 13px;
    }
}
