 /* =========================================
       GLOBAL VARIABLES & BASE STYLES
       ========================================= */
    :root {
        --hl-red: #e60000;
        --hl-red-hover: #e60000;
        --text-dark: #111827;
        --text-muted: #6B7280;
        --bg-light: #F9FAFB;
        --line-gray: #E5E7EB;
        --25D366: #25D366;
    }
    body {
        font-family: 'Plus Jakarta Sans', sans-serif;
        color: var(--text-dark);
        background-color: #ffffff;
        overflow-x: hidden;
    }

    /* =========================================
       HEADER & NAVBAR
       ========================================= */
    .custom-navbar {
        background: #fff;
        box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
        padding: 15px 0;
        border-bottom: 1px solid #E5E7EB;
    }
    .navbar-brand {
        font-weight: 700;
        font-size: 30px;
        color: #111 !important;
        letter-spacing: -0.02em;
    }
    .navbar-brand span { color: var(--hl-red); }
    .nav-link {
        font-weight: 500;
        color: #222 !important;
        font-size: 0.95rem;
        margin-left: 20px;
        padding: 0 15px !important;
    }
    .nav-link:hover, .dropdown-toggle:hover { color: var(--hl-red) !important; }
    .btn-header-estimate {
        background-color: var(--hl-red);
        color: white;
        font-weight: 600;
        font-size: 0.85rem;
        padding: 12px 25px;
        border-radius: 8px;
        border: none;
    }
    
    /* Mobile Menu */
    .offcanvas.offcanvas-end {
        width: 300px !important;
        max-width: 80%;
        border-left: none;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, .15);
    }
    .offcanvas-backdrop.show { opacity: .35; }
    .offcanvas-header { padding: 25px; border-bottom: 1px solid #eee; }
    .offcanvas-title { font-size: 24px; font-weight: 700; }
    .offcanvas-body { padding: 25px; }
    .mobile-menu { list-style: none; padding: 0; margin: 0; }
    .mobile-menu li { border-bottom: 1px solid #f1f1f1; }
    .mobile-menu li a {
        display: block;
        padding: 16px 0;
        color: #222;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        transition: .3s;
    }
    .mobile-menu li a:hover { color: var(--hl-red); padding-left: 8px; }
    .navbar-toggler { font-size: 28px; }
    @media(max-width:576px) { .offcanvas.offcanvas-end { width: 280px !important; } }
    @media(min-width:768px) { .offcanvas.offcanvas-end { width: 340px !important; } }

    /* =========================================
       HERO BANNER & LEAD FORM
       ========================================= */
    .hero-section {
        position: relative;
        min-height: 90vh;
        display: flex;
        align-items: center;
        padding: 100px 0 80px 0;
        overflow: hidden;
        background-color: #111827;
    }
    .hero-slider-container, .hero-slide {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }
    .hero-slider-container { z-index: 1; }
    .hero-slide {
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1.5s ease-in-out, transform 7s ease-out;
        transform: scale(1);
    }
    .hero-slide.active { opacity: 1; z-index: 2; transform: scale(1.05); }
    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
        z-index: 3;
    }
    .hero-container { position: relative; z-index: 4; }
    .hero-text-wrapper { padding: 20px 0; }
    .hero-tagline {
        color: #e20f18;
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 3px;
        display: block;
        margin-bottom: 12px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
    .hero-title {
        font-size: 3.8rem;
        font-weight: 700;
        line-height: 1.15;
        letter-spacing: -0.02em;
        color: #ffffff !important;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    }
    .hero-title span { color: var(--hl-red) !important; font-weight: 800; }
    .hero-desc {
        color: #E5E7EB !important;
        font-size: 1.25rem;
        max-width: 580px;
        font-weight: 400;
        line-height: 1.6;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    }

    /* Glassmorphism Lead Capture Form */
    .form-card {
        background: rgba(255, 255, 255, 0.82);
        padding: 30px 24px;
        border-radius: 12px;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
        position: relative;
        width: 100%;
        max-width: 380px;
    }
    .form-card h3 { font-size: 1.5rem; font-weight: 700; color: #111827; margin-bottom: 4px; }
    .form-card .text-muted { color: #4B5563 !important; }
    .form-control-custom {
        background: rgba(255, 255, 255, 0.9) !important;
        border: 1px solid #D1D5DB !important;
        padding: 10px 14px !important;
        border-radius: 6px !important;
        font-size: 0.9rem;
        height: auto !important;
        width: 100%;
        color: #111827 !important;
    }
    .form-control-custom:focus {
        border-color: var(--hl-red) !important;
        box-shadow: 0 0 0 2px rgba(255, 46, 99, 0.1) !important;
    }
    .phone-input-wrapper { position: relative; width: 100%; }
    .phone-input-wrapper .form-control-custom { padding-left: 48px !important; }
    .iti { width: 100%; }
    
    .whatsapp-row {
        background: rgba(249, 250, 251, 0.7) !important;
        padding: 8px 12px !important;
        border-radius: 6px;
        border: 1px solid rgba(229, 231, 233, 0.5);
    }
    .wa-label { color: #374151 !important; font-weight: 600 !important; font-size: 0.85rem; display: flex; align-items: center; gap: 6px; cursor: pointer; }
    .wa-label i { color: #25D366; font-size: 1rem; }
    .custom-switch-input { width: 2.2em !important; height: 1.1em !important; cursor: pointer; }
    .custom-switch-input:checked { background-color: #25D366 !important; border-color: #25D366 !important; }
    
    .submit-wrapper { position: relative; width: 100%; margin-top: 15px; }
    .btn-submit {
        width: 100%;
        background: #e20f18;
        color: #ffffff;
        border: none;
        padding: 12px;
        font-size: 1rem;
        font-weight: 700;
        border-radius: 6px;
        transition: background 0.3s ease;
        box-shadow: 0 4px 12px rgba(255, 46, 99, 0.2);
    }
    .btn-submit:hover { background: #e60000; }
    
    /* Rotating Badge */
    .rotating-badge-container {
        position: absolute;
        right: -18px;
        top: 70%;
        transform: translateY(-50%) translateY(4px);
        z-index: 10;
        pointer-events: none;
    }
    .rotating-badge {
        position: relative;
        width: 52px;
        height: 52px;
        background: #ffffff;
        border-radius: 50%;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .rotating-badge svg { width: 100%; height: 100%; animation: rotateText 12s linear infinite; }
    .rotating-badge text { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 14px; fill: #e20f18; letter-spacing: 2.5px; }
    .center-star { position: absolute; color: #e20f18; font-size: 0.95rem; z-index: 11; }
    @keyframes rotateText { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

    @media (max-width: 991.98px) {
        .hero-section { padding: 60px 0; }
        .hero-title { font-size: 2.6rem; text-align: center; }
        .hero-desc { text-align: center; margin: 0 auto; font-size: 1.1rem; }
        .form-card { margin: 0 auto; }
        .rotating-badge-container { right: -10px; }
    }
    @media (max-width: 768px) { .hero-text-wrapper { margin-top: 0; } }

    /* =========================================
       TRUST BADGES & PARTNERS
       ========================================= */
    .partners-wrap { margin-top: -35px; position: relative; z-index: 20; }
    .partners-box {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
        padding: 12px 50px;
    }
    .partners-title {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-align: center;
        margin-bottom: 15px;
        color: #555;
    }
    .partner-slider .slick-slide { text-align: center; }
    .partner-logo {
        width: 110px;
        max-width: 110px;
        height: 35px;
        object-fit: contain;
        margin: auto;
        transition: .3s;
    }
    .partner-logo:hover { transform: scale(1.05); }
    .stats-bar {
        background: var(--hl-red);
        border-radius: 10px;
        margin-top: 15px;
        overflow: hidden;
    }
    .stat-item {
        padding: 18px 10px;
        text-align: center;
        color: #fff;
        border-right: 1px solid rgba(255, 255, 255, .2);
    }
    .stat-item:last-child { border-right: none; }
    .stat-item i { font-size: 18px; margin-bottom: 5px; }
    .stat-item h3 { font-size: 28px; font-weight: 700; line-height: 1; margin-bottom: 2px; }
    .stat-item p { margin: 0; font-size: 11px; }

    /* =========================================
       OUR SERVICES
       ========================================= */
    .services-section { background: #fff; }
    .services-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 3px; }
    .services-header > div { flex: 1; }
    .section-tag { color: #ef2b2d; font-size: 13px; font-weight: 700; letter-spacing: 1px; display: block; margin-bottom: 10px; }
    .section-title { font-size: 25px; font-weight: 700; margin: 0; color: #111; }
    .explore-btn { border: 1px solid #ef2b2d; color: #ef2b2d; text-decoration: none; padding: 14px 28px; border-radius: 10px; font-weight: 600; transition: .3s; }
    .explore-btn:hover { background: #ef2b2d; color: #fff; }
    
    .service-card {
        background: #fff;
        border: 1px solid #ececec;
        border-radius: 14px;
        overflow: hidden;
        position: relative;
        text-align: center;
        height: 100%;
        transition: .4s;
    }
    .service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0, 0, 0, .08); }
    .service-img img { width: 100%; height: 150px; object-fit: cover; }
    .service-icon {
        width: 75px;
        height: 75px;
        background: #fff;
        border: 3px solid #ef2b2d;
        border-radius: 50%;
        position: absolute;
        top: 112px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ef2b2d;
        font-size: 28px;
    }
    .service-content { padding: 55px 15px 22px; }
    .service-content h5 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
    .service-content p { color: #666; font-size: 14px; line-height: 1.6; margin: 0; }
    
    @media(max-width:991px) { .section-title { font-size: 20px; } }
    @media(max-width:767px) {
        .services-header { flex-direction: column; align-items: flex-start; }
        .section-title { font-size: 26px; }
        .service-img img { height: 130px; }
        .service-icon { top: 95px; }
    }

    /* =========================================
       OUR PROJECTS
       ========================================= */
    .our-projects { background: #fff; }
    .project-header { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; }
    .project-subtitle { color: #ef2b2d; font-size: 13px; font-weight: 700; letter-spacing: 1px; display: block; margin-bottom: 6px; }
    .project-title { font-size: 25px; font-weight: 700; color: #111; margin: 0; line-height: 1.1; }
    .project-filters { display: flex; gap: 10px; flex-wrap: wrap; }
    .filter-btn { background: #fff; border: 1px solid #ddd; padding: 9px 20px; border-radius: 30px; font-size: 13px; transition: .3s; }
    .filter-btn.active { background: #ef2b2d; color: #fff; border-color: #ef2b2d; }
    .project-card { height: 170px; border-radius: 14px; overflow: hidden; position: relative; }
    .project-card img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
    .project-card:hover img { transform: scale(1.08); }
    .video-card::before { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, .55); z-index: 1; }
    .all-project-btn { border: 1px solid #ef2b2d; color: #ef2b2d; text-decoration: none; padding: 14px 30px; border-radius: 10px; font-weight: 600; transition: .3s; }
    .all-project-btn:hover { background: #ef2b2d; color: #fff; }
    
    @media(max-width:991px) { .project-title { font-size: 32px; } }
    @media(max-width:767px) {
        .project-header { flex-direction: column; align-items: flex-start; }
        .project-title { font-size: 26px; }
        .project-card { height: 140px; }
        .project-filters { gap: 8px; }
    }

    /* =========================================
       OFFERINGS
       ========================================= */
    .offerings-section { background: #fff; }
    .offering-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
    .offering-header h3 { font-size: 28px; font-weight: 700; color: #111; margin: 0; }
    .offering-header a { color: #ff4d2d; text-decoration: none; font-weight: 600; font-size: 18px; }
    .offering-slider { position: relative; }
    .offering-slider .item { padding: 0; }
    .offering-card { border-radius: 12px; overflow: hidden; }
    .offering-card img { width: 100%; height: 265px; object-fit: cover; border-radius: 12px; transition: .4s; }
    .offering-card:hover img { transform: scale(1.05); }
    .offering-slider .owl-nav { margin-top: 0 !important; }
    .offering-slider .owl-prev, .offering-slider .owl-next {
        width: 52px !important; height: 52px !important; border-radius: 50% !important;
        background: #fff !important; box-shadow: 0 5px 15px rgba(0,0,0,.15);
        position: absolute; top: 42%; transform: translateY(-50%);
    }
    .offering-slider .owl-prev { left: -25px; }
    .offering-slider .owl-next { right: -25px; }
    .offering-slider .owl-prev i, .offering-slider .owl-next i { color: #333; font-size: 18px; }
    .offering-slider .owl-prev span, .offering-slider .owl-next span, .offering-slider .owl-dots { display: none; }
    
    @media(max-width:991px){
        .offering-card img{ height:230px; }
        .offering-slider .owl-prev{ left:-10px; }
        .offering-slider .owl-next{ right:-10px; }
    }
    @media(max-width:767px){
        .offering-header h3{ font-size:24px; }
        .offering-header a{ font-size:15px; }
        .offering-card img{ height:220px; }
        .offering-slider .owl-prev, .offering-slider .owl-next{ width:42px !important; height:42px !important; }
    }

    /* =========================================
       ESTIMATE PROCESS
       ========================================= */
    .estimate-card { background: #000; color: #fff; border-radius: 16px; padding: 30px; height: 100%; }
    .estimate-card h3 { font-size: 34px; font-weight: 700; margin-bottom: 10px; }
    .estimate-card p { color: #ddd; margin-bottom: 20px; }
    .estimate-card .form-select { height: 48px; border-radius: 8px; }
    .estimate-btn {
        margin-top: 20px; width: 100%; height: 52px; border: none; border-radius: 10px;
        background: #ef2b2d; color: #fff; font-weight: 600;
    }
    #estimateResult{
        background:#fff; color:#111; padding:12px; border-radius:8px;
        font-weight:600; display:none;
    }
    .process-card { border: 1px solid #eee; border-radius: 16px; padding: 30px; height: 100%; }
    .process-card h3 { margin-bottom: 25px; font-weight: 700; }
    .process-row { display: flex; justify-content: space-between; gap: 15px; }
    .process-item { text-align: center; flex: 1; }
    .process-icon {
        width: 70px; height: 70px; border: 2px solid #ffd5d5; border-radius: 50%;
        margin: auto; display: flex; align-items: center; justify-content: center;
        color: #ef2b2d; font-size: 24px; margin-bottom: 15px;
    }
    .process-item h6 { font-weight: 700; }
    .process-item p { font-size: 13px; color: #666; }
    @media(max-width:991px) { .process-row { flex-wrap: wrap; } .process-item { width: 30%; flex: none; } }

    /* =========================================
       ANF PROCESS TIMELINE
       ========================================= */
    .anf-process-section { padding: 80px 0; background: #f7f7f7; }
    .anf-process-title { text-align: center; font-size: 28px; font-weight: 700; color: #111827; margin-bottom: 45px; }
    .anf-process-title span { color: #ef2b2d; }
    .anf-timeline { max-width: 650px; margin: 0 auto 50px; position: relative; display: flex; justify-content: space-between; }
    .anf-line { position: absolute; left: 0; right: 0; top: 22px; height: 2px; background: #e4e4e4; z-index: 1; }
    .anf-step {
        width: 45px; height: 45px; background: #fff; border: 2px solid #ddd; border-radius: 50%;
        display: flex; align-items: center; justify-content: center; font-weight: 700; color: #777;
        position: relative; z-index: 2; cursor: pointer; transition: .3s;
    }
    .anf-step:hover { transform: scale(1.08); }
    .anf-step.active { background: #ef2b2d; border-color: #ef2b2d; color: #fff; box-shadow: 0 0 15px rgba(239,43,45,.35); }
    .anf-process-card { background: #fff; border-radius: 20px; padding: 50px; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,.05); min-height: 500px; display: flex; align-items: center; }
    .anf-slide { display: none; animation: anfFade .5s ease; }
    .anf-slide.active { display: flex; width: 100%; }
    @keyframes anfFade{ from{ opacity:0; transform:translateX(40px); } to{ opacity:1; transform:translateX(0); } }
    .anf-content h3 { font-size: 38px; font-weight: 700; color: #111827; margin-bottom: 20px; }
    .anf-content p { font-size: 17px; line-height: 1.8; color: #6b7280; margin: 0; }
    .anf-image img { width: 100%; height: 350px; object-fit: cover; border-radius: 15px; }
    .anf-arrow {
        width: 52px; height: 52px; border: none; border-radius: 50%; background: #fff;
        box-shadow: 0 4px 20px rgba(0,0,0,.12); position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; transition: 0.3s;
    }
    .anf-arrow:hover { background: #ef2b2d; color: #fff; }
    .anf-prev { left: -26px; }
    .anf-next { right: -26px; }
    .anf-arrow i { font-size: 18px; }
    .anf-progress-wrap { width: 180px; height: 6px; background: #e5e5e5; border-radius: 50px; margin: 30px auto 0; overflow: hidden; }
    .anf-progress-bar { width: 25%; height: 100%; background: #ef2b2d; border-radius: 50px; transition: 0.3s; }
    
    @media(max-width:991px){
        .anf-process-title{ font-size:34px; }
        .anf-process-card{ padding:25px; }
        .anf-content{ margin-bottom:25px; text-align:center; }
        .anf-content h3{ font-size:28px; }
        .anf-image img{ height:250px; }
        .anf-prev{ left:10px; }
        .anf-next{ right:10px; }
    }

    /* =========================================
       INTERIOR SOLUTIONS
       ========================================= */
    .interior-solutions { background: #fff; }
    .interior-solutions h2.section-title { font-size: 42px; font-weight: 700; color: #1a1a1a; }
    .solution-item { text-align: center; transition: .3s; cursor: pointer; padding: 25px 15px; border-radius: 12px; }
    .solution-item i { font-size: 65px; color: #111; margin-bottom: 18px; transition: .3s; }
    .solution-item img { width: 85px; height: 85px; object-fit: contain; margin-bottom: 15px; }
    .solution-item h6 { font-size: 18px; font-weight: 500; color: #222; margin: 0; }
    .solution-item:hover { transform: translateY(-8px); }
    .solution-item:hover i { color: #ef233c; }
    .design-btn {
        display: inline-block; background: #ef233c; color: #fff; text-decoration: none;
        padding: 15px 40px; border-radius: 8px; font-weight: 600; font-size: 18px;
    }
    .design-btn:hover { background: #d90429; color: #fff; }
    
    @media(max-width:768px){
        .interior-solutions h2.section-title { font-size: 28px; }
        .solution-item i { font-size: 45px; }
        .solution-item img { width: 65px; height: 65px; }
        .solution-item h6 { font-size: 14px; }
    }

    /* =========================================
       CTA BANNER
       ========================================= */
    .cta-banner {
        background: linear-gradient(135deg, #fdf2f4, #fff);
        padding: 70px 0; border-radius: 25px; margin: 60px 0; overflow: hidden;
    }
    .cta-content h2 { font-size: 42px; font-weight: 700; color: #1b1b1b; margin-bottom: 15px; }
    /*this [N] website [I] is [G] Developed [A] by NkM Dev [M] kanpur */
    .cta-content p { font-size: 17px; color: #666; line-height: 1.8; margin-bottom: 30px; }
    .cta-btn {
        display: inline-block; background: #e60000; color: #fff; text-decoration: none;
        padding: 14px 35px; border-radius: 50px; font-weight: 600; transition: .3s;
    }
    .cta-btn:hover { background: #e60000; color: #fff; transform: translateY(-2px); }
    .cta-banner img { max-height: 320px; }
    @media(max-width:768px) {
        .cta-banner { padding: 40px 25px; text-align: center; }
        .cta-content h2 { font-size: 28px; }
        .cta-banner img { margin-top: 25px; max-height: 220px; }
    }

    /* =========================================
       WHY US
       ========================================= */
    .why-us-section { padding: 70px 0; background: #fafafa; }
    .why-card {
        background: #fff; padding: 30px; text-align: center; border-radius: 15px;
        height: 100%; transition: .3s; border: 1px solid #eee;
    }
    .why-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 0, 0, .08); }
    .why-card i { font-size: 40px; color: #e60000; margin-bottom: 20px; }
    .why-card h4 { font-size: 20px; margin-bottom: 10px; }

    /* =========================================
       EXPERIENCE SECTION & GOOGLE REVIEWS
       ========================================= */
    .experience-section { background: #fff; padding: 80px 0; }
    .experience-title { font-size: 28px; font-weight: 700; color: #222; }
    .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
    .gallery-item { position: relative; overflow: hidden; border-radius: 12px; }
    .gallery-item img { width: 100%; height: 180px; object-fit: cover; transition: .4s; }
    .gallery-item:hover img { transform: scale(1.08); }
    .gallery-item span {
        position: absolute; bottom: 10px; left: 10px; color: #fff; font-size: 14px;
        font-weight: 600; text-shadow: 0 2px 5px rgba(0, 0, 0, .5);
    }
    .more-box .overlay-text {
        position: absolute; inset: 0; background: rgba(0, 0, 0, .6); color: #fff;
        display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700;
    }
    .review-box { padding-left: 40px; }
    .google-review-box { display: flex; align-items: center; gap: 15px; margin-bottom: 30px; }
    .google-logo img { width: 60px; height: 60px; }
    .rating-content h3 { font-size: 32px; font-weight: 700; margin: 0; color: #222; }
    .rating-content p { margin: 0; color: #666; }
    .stars { color: #ffb400; font-size: 20px; letter-spacing: 2px; }
    .city-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
    .city-list span { background: #f3f3f3; padding: 8px 15px; border-radius: 30px; font-size: 14px; }
    .award-box { display: flex; align-items: center; gap: 15px; background: #f8f8f8; padding: 15px; border-radius: 12px; }
    .award-box p { margin: 0; font-size: 15px; }
    
    @media(max-width:991px) {
        .gallery-grid { grid-template-columns: repeat(2, 1fr); }
        .review-box { padding-left: 0; margin-top: 30px; }
        .experience-title { font-size: 32px; }
    }

    /* =========================================
       MARQUEE
       ========================================= */
    .marquee-section {
        background: linear-gradient(90deg, #e60000, #e60000);
        padding: 12px 0; overflow: hidden; white-space: nowrap; margin-bottom: 0 !important;
    }
    .marquee-content { display: inline-block; animation: marquee 25s linear infinite; }
    .marquee-content span { color: #fff; font-weight: 600; margin: 0 40px; font-size: 15px; }
    @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    /* =========================================
       FOOTER & UTILS
       ========================================= */
    .footer-modern {
        background: #111827; color: #fff; padding: 90px 0 0; margin-top: 0 !important; position: relative;
    }
    .footer-modern::before {
        content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, #e60000, #e60000);
    }
    .footer-about { color: #cbd5e1; margin: 25px 0; line-height: 1.9; }
    .footer-modern h5 {
        color: #fff; font-size: 20px; font-weight: 700; margin-bottom: 25px; position: relative; padding-bottom: 12px;
    }
    .footer-modern h5::after { content: ''; position: absolute; left: 0; bottom: 0; width: 45px; height: 2px; background: #e60000; }
    .footer-modern ul { list-style: none; padding: 0; margin: 0; }
    .footer-modern ul li { margin-bottom: 12px; }
    .footer-modern ul li a, footer a { color: #cbd5e1 !important; text-decoration: none !important; transition: .3s; }
    .footer-modern ul li a:hover { color: #e60000 !important; padding-left: 5px; }
    .social-links { display: flex; gap: 12px; }
    .social-links a {
        width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, .08);
        color: #fff !important; display: flex; align-items: center; justify-content: center; transition: .3s;
    }
    .social-links a:hover { background: #e60000; transform: translateY(-3px); }
    .contact-info p { color: #cbd5e1; margin-bottom: 15px; }
    .contact-info i { color: #e60000; width: 22px; }
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, .08); margin-top: 40px; padding: 25px 0;
        display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
    }
    .footer-bottom p { margin: 0; color: #94a3b8; font-size: 14px; }
    
    @media(max-width:768px) {
        .footer-modern { text-align: center; }
        .footer-modern h5::after { left: 50%; transform: translateX(-50%); }
        .social-links { justify-content: center; }
        .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    }

    .whatsapp-sticky {
        position: fixed; bottom: 25px; right: 25px; z-index: 9999; background: #25D366; color: white;
        width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center;
        justify-content: center; font-size: 30px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); text-decoration: none;
    }