        /* ===== ROOT VARIABLES ===== */
        :root {
            --maroon: #c41c1f;
            --maroon-dark: #5A0F0F;
            --maroon-light: #9E2A2A;
            --black: #1a1a1a;
            --black-light: #2d2d2d;
            --dark: #121111;
            --gold: #2a2f35;
            --gold-light: #F0D080;
            --white: #ffffff;
            --off-white: #f8f5f0;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            --transition: all 0.4s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

    

        body {
            font-family: 'Open Sans', sans-serif;
            background: var(--light-bg);
            color: var(--dark);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        a {
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--gold) !important;
        }

        .section-title {
            font-size: 2.6rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 0.3rem;
            letter-spacing: -0.5px;
        }
        .section-title span {
            color: var(--gold);
        }
        .section-sub {
            text-align: center;
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            font-weight: 400;
        }

        /* ===== HEADER ===== */
        .top-header {
            padding: 12px 0;
            border-bottom: 3px solid var(--gold);
            position: relative;
            z-index: 100;
        }
        .logo-text {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 1.8rem;
            color: #fff !important;
            letter-spacing: -0.5px;
        }
        .logo-text img {
            height: 52px;
            width: auto;
            border-radius: 6px;
            object-fit: cover;
        }
        .header-contact {
            text-align: right;
            font-size: 0.9rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 6px 16px;
        }
        .header-contact a {
            color: rgba(5, 1, 1, 0.85);
            transition: var(--transition);
            font-weight: 500;
        }
        .header-contact a:hover {
            color: var(--gold) !important;
        }
        .header-contact .divider {
            color: rgba(255, 255, 255, 0.2);
        }
        .header-contact i {
            margin-right: 5px;
            color: var(--gold);
        }
        .logo-text img{
            width:100%;
            max-width: 160px;
        }

        /* ===== BANNER ===== */
        .banner-section {
            background: url('images/ban.jpeg') no-repeat center center/cover;
            padding: 80px 0 90px;
            position: relative;
            overflow: hidden;
            min-height: 620px;
            display: flex;
            align-items: center;
        }
        .banner-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 20% 50%, rgba(122, 26, 26, 0.3) 0%, transparent 60%),
                radial-gradient(circle at 80% 50%, rgba(201, 168, 76, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }
        /* animated radio waves */
        .radio-animation {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 400px;
            height: 400px;
            pointer-events: none;
            z-index: 0;
            opacity: 0.5;
        }
        .radio-animation .wave {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            border: 2px solid var(--gold);
            animation: radioPulse 3.5s ease-out infinite;
            opacity: 0;
        }
        .radio-animation .wave:nth-child(1) {
            width: 60px;
            height: 60px;
            animation-delay: 0s;
            border-width: 3px;
        }
        .radio-animation .wave:nth-child(2) {
            width: 120px;
            height: 120px;
            animation-delay: 0.7s;
            border-width: 2px;
        }
        .radio-animation .wave:nth-child(3) {
            width: 200px;
            height: 200px;
            animation-delay: 1.4s;
            border-width: 2px;
        }
        .radio-animation .wave:nth-child(4) {
            width: 300px;
            height: 300px;
            animation-delay: 2.1s;
            border-width: 1.5px;
        }
        .radio-animation .wave:nth-child(5) {
            width: 420px;
            height: 420px;
            animation-delay: 2.8s;
            border-width: 1px;
        }
        .radio-animation .center-dot {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 16px;
            height: 16px;
            background: var(--gold);
            border-radius: 50%;
            box-shadow: 0 0 30px rgba(201, 168, 76, 0.6);
            animation: centerPulse 1.8s ease-in-out infinite;
        }

        @keyframes radioPulse {
            0% {
                transform: translate(-50%, -50%) scale(0.3);
                opacity: 0.8;
            }
            100% {
                transform: translate(-50%, -50%) scale(1.8);
                opacity: 0;
            }
        }
        @keyframes centerPulse {
            0%,
            100% {
                transform: translate(-50%, -50%) scale(1);
                box-shadow: 0 0 30px rgba(201, 168, 76, 0.6);
            }
            50% {
                transform: translate(-50%, -50%) scale(1.3);
                box-shadow: 0 0 60px rgba(201, 168, 76, 0.9);
            }
        }

        .banner-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 820px;
            margin: 0 auto;
        }

.banner-badge {
    display: inline-block;
    background: rgb(196 28 31);
    padding: 8px 24px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}
        .banner-badge i {
            margin-right: 8px;
        }

        .banner-content h1 {
            font-size: 3.8rem;
            font-weight: 900;
            color: #fff;
            line-height: 1.1;
            margin-bottom: 16px;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
        }
        .banner-content h1 span {
            color: var(--maroon);
        }
        .banner-content p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.15rem;
            max-width: 600px;
            margin: 0 auto 22px;
            line-height: 1.7;
        }
        .banner-features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 30px;
            margin-bottom: 32px;
            list-style: none;
            padding: 0;
        }
        .banner-features li {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            font-weight: 500;
        }
        .banner-features li i {
            color: var(--gold);
            margin-right: 8px;
        }

        .banner-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
        }
        .btn-call-now {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--maroon);
            color: #1a1a1a !important;
            padding: 16px 44px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.1rem;
            border: none;
            transition: var(--transition);
            box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
            font-family: 'Montserrat', sans-serif;
        }
        .btn-call-now:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 14px 40px rgba(201, 168, 76, 0.5);
            background: #dbb95a;
            color: #1a1a1a !important;
        }
        .btn-call-now i {
            font-size: 1.2rem;
        }

        .btn-wa-now {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #006727;
            color: #fff !important;
            padding: 16px 36px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.05rem;
            border: none;
            transition: var(--transition);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
            font-family: 'Montserrat', sans-serif;
        }
        .btn-wa-now:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 14px 40px rgba(37, 211, 102, 0.45);
            background: #2de06e;
            color: #fff !important;
        }

        /* ===== HOW IT WORKS ===== */
        .how-works {
            padding: 80px 0 70px;
            background: #fff;
        }
        .how-card {
            text-align: center;
            padding: 30px 18px 24px;
            border-radius: var(--radius);
            background: var(--light-bg);
            transition: var(--transition);
            position: relative;
            border-bottom: 4px solid transparent;
        }
        .how-card:hover {
            transform: translateY(-8px);
            border-bottom-color: var(--gold);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
        }
        .how-card .step-number {
            position: absolute;
            top: -10px;
            right: 16px;
            font-size: 3rem;
            font-weight: 900;
            color: rgba(201, 168, 76, 0.12);
            font-family: 'Montserrat', sans-serif;
            line-height: 1;
        }
        .how-card .icon-wrap {
            font-size: 2.4rem;
            color: var(--maroon);
            margin-bottom: 10px;
        }
        .how-card h5 {
            font-weight: 700;
            margin-bottom: 6px;
            font-size: 1.1rem;
        }
        .how-card p {
            color: #666;
            font-size: 0.9rem;
            margin: 0;
        }

        /* ===== VEHICLES ===== */
        .vehicles-section {
            padding: 80px 0 70px;
            background: var(--light-bg);
        }
        .vehicle-card {
            background: #fff;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .vehicle-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
        }
        .vehicle-card .img-wrap {
            position: relative;
            overflow: hidden;
            height: 200px;
            background: #ddd;
        }
        .vehicle-card .img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .vehicle-card:hover .img-wrap img {
            transform: scale(1.05);
        }
        .vehicle-card .img-wrap .tag {
            position: absolute;
            top: 14px;
            left: 14px;
            background: var(--gold);
            color: #ffffff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 4px 14px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .vehicle-card .body {
            padding: 20px 20px 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .vehicle-card .body h5 {
            font-weight: 800;
            font-size: 1.2rem;
            margin-bottom: 2px;
        }
        .vehicle-card .body .type {
            color: #888;
            font-size: 0.85rem;
            margin-bottom: 8px;
        }
        .vehicle-card .body .type i {
            color: var(--maroon);
            margin-right: 4px;
        }
        .vehicle-card .body .desc {
            font-size: 0.9rem;
            color: #555;
            flex: 1;
            margin-bottom: 12px;
        }
        .vehicle-card .body .price-tag {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--maroon);
            margin-bottom: 14px;
        }
        .vehicle-card .body .price-tag i {
            color: var(--gold);
            margin-right: 6px;
        }
        .vehicle-card .body .btn-group-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .vehicle-card .body .btn-group-actions a {
            flex: 1;
            min-width: 100px;
            text-align: center;
            padding: 10px 14px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.85rem;
            transition: var(--transition);
            border: none;
            font-family: 'Montserrat', sans-serif;
        }
        .btn-call-sm {
            background: var(--maroon);
            color: #fff !important;
        }
        .btn-call-sm:hover {
            background: #5f1414;
            color: #fff !important;
            transform: translateY(-2px);
        }
        .btn-wa-sm {
            background: #006727;
            color: #fff !important;
        }
        .btn-wa-sm:hover {
            background: #1ebd5a;
            color: #fff !important;
            transform: translateY(-2px);
        }

        /* ===== WHY CHOOSE ===== */
        .why-choose {
            padding: 80px 0 70px;
            background: #fff;
        }
        .why-card {
            text-align: center;
            padding: 30px 18px;
            border-radius: var(--radius);
            background: var(--light-bg);
            transition: var(--transition);
            height: 100%;
            border: 1px solid transparent;
        }
        .why-card:hover {
            border-color: var(--gold);
            transform: translateY(-6px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
        }
        .why-card .icon {
            font-size: 2.8rem;
            color: var(--maroon);
            display: block;
            margin-bottom: 10px;
        }
        .why-card h5 {
            font-weight: 700;
            font-size: 1.1rem;
        }
        .why-card p {
            color: #666;
            font-size: 0.9rem;
            margin: 0;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 0 30px;
            border-top: 4px solid var(--gold);
        }
        .footer .brand {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 1.6rem;
            color: #fff !important;
        }
        .footer .brand span {
            color: var(--gold);
        }
        .footer .brand i {
            color: var(--gold);
            margin-right: 6px;
        }
        
        .footer .footer-title {
            color: #fff;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 16px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gold);
        }
        .footer .footer-card {
            background: rgba(255, 255, 255, 0.04);
            padding: 14px 12px;
            border-radius: 10px;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.04);
            color: rgba(255, 255, 255, 0.7);
        }
        .footer .footer-card:hover {
            background: rgba(201, 168, 76, 0.12);
            border-color: rgba(201, 168, 76, 0.2);
            color: #fff !important;
            transform: translateY(-3px);
        }
        .footer .footer-card i {
            font-size: 1.4rem;
            color: var(--gold);
            display: block;
            margin-bottom: 4px;
        }
        .footer .footer-card h6 {
            font-size: 0.85rem;
            font-weight: 700;
            margin: 0;
            color: #fff;
        }
        .footer .footer-card p {
            font-size: 0.7rem;
            margin: 0;
            opacity: 0.6;
        }
        .footer .payment-icons {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .footer .pay-item {
            background: rgba(255, 255, 255, 0.06);
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .footer .pay-item i {
            margin-right: 6px;
            color: var(--gold);
        }
        .footer .contact-footer a {
            display: block;
            color: rgba(255, 255, 255, 0.7);
            padding: 4px 0;
            font-size: 0.9rem;
            transition: var(--transition);
        }
        .footer .contact-footer a:hover {
            color: var(--gold) !important;
            padding-left: 6px;
        }
        .footer .contact-footer a i {
            width: 24px;
            color: var(--gold);
        }
        .footer .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            color: rgba(255, 255, 255, 0.7);
            margin-right: 6px;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.04);
        }
        .footer .social-links a:hover {
            background: var(--gold);
            color: #1a1a1a !important;
            transform: translateY(-3px);
        }
        .footer .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.4);
        }
        .footer .copyright strong {
            color: rgba(255, 255, 255, 0.7);
        }
        .footer .copyright i {
            color: var(--maroon);
        }

        /* ===== FLOATING ICONS ===== */
        .float-icons {
            position: fixed;
            bottom: 30px;
            right: 24px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .float-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            color: #fff !important;
            font-size: 1.6rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
            transition: var(--transition);
            position: relative;
        }
        .float-icons a .tooltip-text {
            position: absolute;
            right: 68px;
            background: var(--dark);
            color: #fff;
            padding: 6px 14px;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: var(--transition);
            font-family: 'Montserrat', sans-serif;
        }
        .float-icons a:hover .tooltip-text {
            opacity: 1;
            right: 74px;
        }
        .float-icons a.whatsapp {
            background: #006727;
        }
        .float-icons a.whatsapp:hover {
            transform: scale(1.1) rotate(-4deg);
            box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
        }
        .float-icons a.call {
            background: var(--maroon);
        }
        .float-icons a.call:hover {
            transform: scale(1.1) rotate(4deg);
            box-shadow: 0 12px 40px rgba(122, 26, 26, 0.4);
        }

        /* ===== MODAL (footer popups - no forms) ===== */
        .modal-content {
            background: #1e1e1e;
            color: rgba(255, 255, 255, 0.85);
            border: 1px solid rgba(201, 168, 76, 0.2);
            border-radius: var(--radius);
        }
        .modal-header {
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding: 18px 24px;
        }
        .modal-header .modal-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: #fff;
        }
        .modal-header .modal-title span {
            color: var(--gold);
        }
        .modal-header .btn-close {
            filter: invert(1) brightness(0.8);
        }
        .modal-body {
            padding: 24px;
        }
        .modal-body h6 {
            color: #fff;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .modal-body p,
        .modal-body li {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.7;
        }
        .modal-body ul li {
            list-style: none;
            padding: 4px 0;
        }
        .modal-body ul li i {
            margin-right: 10px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 991px) {
            .banner-content h1 {
                font-size: 2.8rem;
            }
            .header-contact {
                text-align: center;
                justify-content: center;
                margin-top: 6px;
                font-size: 0.8rem;
            }
            .logo-text {
                justify-content: center;
            }
            .radio-animation {
                width: 280px;
                height: 280px;
            }
            .radio-animation .wave:nth-child(5) {
                width: 300px;
                height: 300px;
            }
            .radio-animation .wave:nth-child(4) {
                width: 220px;
                height: 220px;
            }
        }

        @media (max-width: 576px) {
            .banner-content h1 {
                font-size: 2rem;
            }
            .banner-content p {
                font-size: 0.95rem;
            }
            .banner-features {
                gap: 6px 16px;
            }
            .banner-features li {
                font-size: 0.8rem;
            }
            .btn-call-now,
            .btn-wa-now {
                padding: 14px 28px;
                font-size: 0.95rem;
                width: 100%;
                justify-content: center;
            }
            .banner-actions {
                flex-direction: column;
                align-items: center;
                width: 100%;
            }
            .banner-actions a {
                width: 100%;
            }
            .section-title {
                font-size: 2rem;
            }
            .vehicle-card .body .btn-group-actions a {
                min-width: 70px;
                font-size: 0.75rem;
                padding: 8px 10px;
            }
            .float-icons a {
                width: 48px;
                height: 48px;
                font-size: 1.3rem;
            }
            .radio-animation {
                width: 200px;
                height: 200px;
            }
            .radio-animation .wave:nth-child(5) {
                width: 220px;
                height: 220px;
            }
            .radio-animation .wave:nth-child(4) {
                width: 160px;
                height: 160px;
            }
            .radio-animation .wave:nth-child(3) {
                width: 120px;
                height: 120px;
            }
            .radio-animation .wave:nth-child(2) {
                width: 80px;
                height: 80px;
            }
            .radio-animation .wave:nth-child(1) {
                width: 40px;
                height: 40px;
            }
        }
