
        :root {
            --primary-blue: #003580;
            --gold: #FFB703;
            --text-dark: #1A1A1A;
            --light-bg: #000000;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }

        body {
            background: var(--light-bg);
            color: var(--text-dark);
        }

        .top-bar {
            background: var(--primary-blue);
            color: white;
            padding: 8px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
        }

        .top-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .social-icon {
            width: 28px;
            height: 28px;
            background: var(--light-bg);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            text-decoration: none;
            font-size: 18px;
            transition: 0.3s;
        }

        .social-icon:hover {
            background: white;
            transform: scale(1.1);
        }

        header {
            background: var(--white);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo img {
            max-height: 50px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 20px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            transition: 0.3s;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .hero {
            background: white center/cover;
            padding: 20px 2%;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }

        .hero-text {
            flex: 1;
            color: rgb(0, 0, 0);
            min-width: 300px;
        }

        .hero-text h2 {
            font-size: 2rem;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-text p {
            font-size: 1.2rem;
            background: var(--gold);
            display: inline-block;
            color: var(--primary-blue);
            padding: 5px 15px;
            font-weight: 700;
            border-radius: 4px;
        }

        .booking-card {
            flex: 1;
            background: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            min-width: 320px;
            max-width: 500px;
            margin: auto;
            margin-right: 10%;
        }

        .booking-card h3 {
            margin-bottom: 2px;
            border-left: 5px solid var(--gold);
            padding-left: 10px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .full-w {
            grid-column: span 2;
        }

        input,
        select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 15px;
        }

        .book-btn {
            width: 100%;
            background: var(--gold);
            border: none;
            padding: 15px;
            font-weight: 900;
            font-size: 18px;
            cursor: pointer;
            border-radius: 4px;
            transition: 0.3s;
            margin-top: 15px;
        }

        .book-btn:hover {
            background: #e6a600;
        }

        .toggle-row {
            display: flex;
            padding: 5px;
            margin-bottom: 12px;
            border-radius: 4px;
            overflow: hidden;
        }

        .toggle-btn {
            flex: 1;
            padding: 8px;
            border: none;
            background: #ddd;
            cursor: pointer;
            font-weight: 600;
        }

        .toggle-btn.active {
            background: var(--gold);
        }

        .section {
            padding: 60px 5%;
            text-align: center;
        }

        .about-section {
            padding: 80px 20px;
            background: #fff;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 20px 20px 0px var(--primary-blue);
        }

        .experience-badge {
            position: absolute;
            bottom: -20px;
            right: 20px;
            background: var(--gold);
            color: #000;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .experience-badge .years {
            display: block;
            font-size: 2rem;
            font-weight: 800;
        }

        .experience-badge .exp-text {
            font-size: 14px;
            font-weight: 600;
        }

        .sub-title {
            color: var(--primary-blue);
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 1px;
            font-size: 14px;
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin: 15px 0;
            line-height: 1.2;
        }

        .description {
            color: #666;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .features-grid {
            display: grid;
            gap: 20px;
            margin-bottom: 40px;
        }

        .feature-item {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .feature-item i {
            background: #f0f4f8;
            color: var(--primary-blue);
            padding: 12px;
            border-radius: 50%;
            font-size: 18px;
        }

        .feature-item h4 {
            margin: 0 0 5px 0;
            font-size: 18px;
        }

        .feature-item p {
            margin: 0;
            font-size: 14px;
            color: #777;
        }

        .about-cta-btn {
            display: inline-block;
            padding: 15px 35px;
            background: var(--primary-blue);
            color: #fff;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 700;
            transition: 0.3s;
        }

        .about-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .fleet-container {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 40px;
        }

        .car-card {
            background: white;
            width: 300px;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }

        .car-card img {
            width: 100%;
            height: 180px;
            object-fit: contain;
        }

        .car-card h4 {
            margin: 15px 0 5px;
            color: var(--primary-blue);
        }

        .view-details-btn {
            width: 100%;
            background: white;
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
            padding: 10px;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: #fff;
            margin: 5% auto;
            padding: 20px;
            border-radius: 15px;
            width: 90%;
            max-width: 800px;
            position: relative;
        }

        .close-modal {
            position: absolute;
            right: 20px;
            top: 10px;
            font-size: 30px;
            cursor: pointer;
            color: #888;
        }

        .modal-body {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            padding: 20px 10px;
        }

        @media (max-width: 768px) {
            .modal-body {
                grid-template-columns: 1fr;
            }
        }

        .modal-car-info img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        .modal-form input,
        .modal-form textarea {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-family: inherit;
        }

        .submit-btn {
            width: 100%;
            background: #25D366;
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            font-size: 16px;
            transition: 0.3s;
        }

        .submit-btn:hover {
            background: #128C7E;
        }

        .main-footer {
            background: #111;
            color: #ccc;
            padding: 60px 0 0 0;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            padding: 0 20px;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 40px;
            height: 2px;
            background: #007bff;
        }

        .footer-feedback-form select,
        .footer-feedback-form textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            border-radius: 5px;
            border: 1px solid #333;
            background: #222;
            color: #fff;
            font-size: 14px;
        }

        .fb-submit-btn {
            width: 100%;
            background: #007bff;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
        }

        .fb-submit-btn:hover {
            background: #0056b3;
        }

        .footer-bottom {
            background: #000;
            margin-top: 50px;
            padding: 20px 0;
            border-top: 1px solid #222;
            text-align: center;
            font-size: 14px;
            color: #888;
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        }

        .floating-whatsapp {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #25D366;
            color: white;
            padding: 14px 20px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
            z-index: 9999;
        }

        .floating-whatsapp:hover {
            transform: translateY(-3px);
        }

        .mobile-actions {
            position: fixed;
            bottom: 0;
            width: 100%;
            display: none;
            z-index: 2000;
        }

        .mobile-actions a {
            flex: 1;
            text-align: center;
            padding: 15px;
            color: white;
            font-weight: 900;
            font-size: 16px;
            text-decoration: none;
        }

        .call-now {
            background: var(--primary-blue);
        }

        .wa-now {
            background: #25D366;
        }

        @media (max-width: 768px) {
            .mobile-actions {
                display: flex;
            }

            body {
                padding-bottom: 60px;
            }

            .about-container {
                grid-template-columns: 1fr;
            }
        }
