        :root {
            --gimblet: #e67e22;
            --rangitoto: #2a2a22;
            --spice: #714237;
            --brown-rust: #9d6435;
            --star-dust: #949492;
            --saddle: #553026;
            --gray: #8e8c8c;
            --chicago: #5c5c56;
            --zambezi: #5a5454;
            --armadillo: #44443c;
            --african-sun: #e67e22;
            --savannah: #f1c40f;
            --jungle-green: #27ae60;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: #f9f9f7;
            color: var(--rangitoto);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Roboto Condensed', sans-serif;
            font-weight: 700;
        }

        /* Sticky Header */
        header {
            background-color: rgba(42, 42, 34, 0.95);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 60px;
            margin-right: 15px;
        }

        .logo-text {
            color: white;
        }

        .logo-text h1 {
            font-size: 1.5rem;
            margin-bottom: 0.2rem;
            color: var(--gimblet);
        }

        .logo-text p {
            font-size: 0.8rem;
            color: var(--star-dust);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 2rem;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        nav ul li a:hover {
            color: var(--gimblet);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--gimblet);
            bottom: -5px;
            left: 0;
            transition: width 0.3s;
        }

        nav ul li a.active::after,
        nav ul li a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 101;
        }

        /* Hero Banner */
        .hero {
            height: 100vh;
            min-height: 600px;
            position: relative;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: -1;
            object-fit: cover;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 0;
        }

        .hero-content {
            max-width: 1200px;
            width: 100%;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
            text-align: center;
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            color: white;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.8rem;
            margin-bottom: 2.5rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            max-width: 800px;
        }

        .hero-features {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            font-size: 1.2rem;
        }

        .hero-feature i {
            margin-right: 0.5rem;
            color: var(--gimblet);
        }

        .btn {
            display: inline-block;
            background-color: var(--gimblet);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .btn:hover {
            background-color: var(--brown-rust);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid white;
            margin-left: 1rem;
        }

        .btn-outline:hover {
            background-color: white;
            color: var(--rangitoto);
        }

        /* Introduction Section */
        .section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--saddle);
            margin-bottom: 1rem;
        }

        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: var(--zambezi);
        }

        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: var(--gimblet);
            margin: 1.5rem auto;
        }

        .intro-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .intro-text {
            flex: 1;
        }

        .intro-text h3 {
            font-size: 1.8rem;
            color: var(--brown-rust);
            margin-bottom: 1.5rem;
        }

        .intro-text p {
            margin-bottom: 1.5rem;
            color: var(--chicago);
        }

        .intro-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .intro-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }

        .intro-image:hover img {
            transform: scale(1.05);
        }

        /* Safari Packages */
        .packages {
            background-color: #f5f5f2;
        }

        .package-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }

        .package-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .package-image {
            height: 250px;
            overflow: hidden;
        }

        .package-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .package-card:hover .package-image img {
            transform: scale(1.1);
        }

        .package-content {
            padding: 1.5rem;
        }

        .package-content h3 {
            font-size: 1.5rem;
            color: var(--saddle);
            margin-bottom: 1rem;
        }

        .package-duration {
            display: inline-block;
            background-color: var(--gimblet);
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            margin-bottom: 1rem;
        }

        .package-highlights {
            margin-bottom: 1.5rem;
        }

        .package-highlights h4 {
            font-size: 1rem;
            color: var(--brown-rust);
            margin-bottom: 0.5rem;
        }

        .package-highlights ul {
            list-style-position: inside;
            margin-bottom: 1rem;
        }

        .package-highlights li {
            margin-bottom: 0.3rem;
        }

        .package-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .btn-small {
            padding: 0.5rem 1.5rem;
            font-size: 0.8rem;
        }

        /* Why Choose Us */
        .why-us {
            background-color: var(--rangitoto);
            color: white;
        }

        .why-us .section-title h2,
        .why-us .section-title p {
            color: white;
        }

        .why-us .section-title::after {
            background-color: var(--gimblet);
        }

        .features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .feature {
            text-align: center;
            padding: 2rem 1.5rem;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .feature:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--gimblet);
            margin-bottom: 1.5rem;
        }

        .feature h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .feature p {
            color: var(--star-dust);
        }

        /* Car Rental Section */
        .car-rental {
            background-color: white;
        }

        .fleet-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .vehicle-card {
            background-color: #f9f9f7;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            border: 1px solid #e0e0e0;
        }

        .vehicle-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .vehicle-image {
            height: 200px;
            overflow: hidden;
        }

        .vehicle-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .vehicle-info {
            padding: 1.5rem;
        }

        .vehicle-info h3 {
            font-size: 1.3rem;
            color: var(--saddle);
            margin-bottom: 0.5rem;
        }

        .vehicle-info p {
            color: var(--zambezi);
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .vehicle-specs {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .spec {
            display: flex;
            align-items: center;
            font-size: 0.8rem;
            color: var(--chicago);
        }

        .spec i {
            margin-right: 0.3rem;
            color: var(--gimblet);
        }

        /* Contact Form */
        .contact {
            background-color: #f5f5f2;
        }

        .contact-container {
            display: flex;
            gap: 3rem;
        }

        .contact-form {
            flex: 1;
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .contact-form h3 {
            font-size: 1.5rem;
            color: var(--saddle);
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--chicago);
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--gimblet);
            box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .form-select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            background-color: white;
            cursor: pointer;
            transition: all 0.3s;
        }

        .form-select:focus {
            outline: none;
            border-color: var(--gimblet);
            box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
        }

        .form-select option:hover {
            background-color: var(--gimblet);
            color: white;
        }

        .conditional-field {
            display: none;
        }

        .checkbox-group {
            margin-top: 0.5rem;
        }

        .checkbox-item {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }

        .checkbox-item input[type="checkbox"] {
            appearance: none;
            -webkit-appearance: none;
            width: 18px;
            height: 18px;
            border: 2px solid var(--gimblet);
            border-radius: 3px;
            outline: none;
            cursor: pointer;
            position: relative;
            margin-right: 8px;
            flex-shrink: 0;
        }

        .checkbox-item input[type="checkbox"]:checked {
            background-color: var(--gimblet);
        }

        .checkbox-item input[type="checkbox"]:checked::after {
            content: '\2713';
            color: white;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 12px;
        }

        .checkbox-item label {
            cursor: pointer;
            display: inline;
        }

        .contact-info {
            flex: 1;
        }

        .info-item {
            display: flex;
            margin-bottom: 1.5rem;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background-color: var(--gimblet);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .info-text h4 {
            font-size: 1.1rem;
            color: var(--brown-rust);
            margin-bottom: 0.3rem;
        }

        .info-text p,
        .info-text a {
            color: var(--zambezi);
            text-decoration: none;
            transition: color 0.3s;
        }

        .info-text a:hover {
            color: var(--gimblet);
        }

        .phone-link {
            color: var(--zambezi);
            text-decoration: none;
            transition: color 0.3s;
        }

        .phone-link:hover {
            color: var(--gimblet);
        }

        /* Gallery */
        .gallery {
            background-color: white;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }

        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 5px;
            position: relative;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Footer */
        footer {
            background-color: var(--rangitoto);
            color: white;
            padding: 4rem 2rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .footer-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://bristolcarrentalsandtours.com/media/background%20pattern.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            position: relative;
            z-index: 1;
        }

        .footer-col h3 {
            font-size: 1.3rem;
            color: var(--gimblet);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--gimblet);
        }

        .footer-col p {
            color: var(--star-dust);
            margin-bottom: 1rem;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
            list-style: none;
        }

        .footer-links a {
            color: var(--star-dust);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--gimblet);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
            text-decoration: none;
        }

        .social-links a:hover {
            background-color: var(--gimblet);
            transform: translateY(-3px);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: var(--star-dust);
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
        }

        .footer-bottom a {
            color: var(--star-dust);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-bottom a:hover {
            color: var(--gimblet);
        }

        .razertech-logo {
            height: 70px;
            vertical-align: middle;
            transition: opacity 0.3s;
        }

        .razertech-logo:hover {
            opacity: 0.8;
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 99;
            transition: all 0.3s;
            text-decoration: none;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            left: 2rem;
            width: 50px;
            height: 50px;
            background-color: var(--gimblet);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--brown-rust);
            transform: translateY(-3px);
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            overflow-y: auto;
        }

        .modal-content {
            background-color: white;
            margin: 5% auto;
            padding: 2rem;
            border-radius: 10px;
            max-width: 800px;
            width: 90%;
            position: relative;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
        }

        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--gray);
            transition: color 0.3s;
        }

        .close-modal:hover {
            color: var(--rangitoto);
        }

        .modal-title {
            font-size: 1.8rem;
            color: var(--saddle);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--gimblet);
        }

        .modal-body {
            margin-bottom: 2rem;
        }

        .modal-itinerary {
            margin-bottom: 2rem;
        }

        .modal-itinerary h4 {
            font-size: 1.2rem;
            color: var(--brown-rust);
            margin-bottom: 1rem;
        }

        .modal-itinerary ul {
            list-style-position: inside;
            margin-bottom: 1rem;
        }

        .modal-itinerary li {
            margin-bottom: 0.5rem;
        }

        .modal-actions {
            display: flex;
            justify-content: flex-end;
            gap: 1rem;
        }

        /* Custom Select Container */
        .custom-select {
            position: relative;
            width: 100%;
            font-family: 'Roboto', sans-serif;
        }

        /* Selected Item Display */
        .select-selected {
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 0.8rem 1rem;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
        }

        /* Arrow for the select */
        .select-selected:after {
            position: absolute;
            content: "";
            top: 50%;
            right: 15px;
            width: 0;
            height: 0;
            border: 6px solid transparent;
            border-color: #5a5454 transparent transparent transparent;
            transform: translateY(-50%);
        }

        /* Active state for the arrow */
        .select-selected.select-arrow-active:after {
            border-color: transparent transparent #5a5454 transparent;
            top: 40%;
        }

        /* Dropdown Items */
        .select-items {
            position: absolute;
            background-color: white;
            top: 100%;
            left: 0;
            right: 0;
            z-index: 99;
            border: 1px solid #ddd;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            max-height: 200px;
            overflow-y: auto;
            display: none;
        }

        /* Individual Items */
        .select-items div {
            color: #2a2a22;
            padding: 0.8rem 1rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        /* Hover State for Items */
        .select-items div:hover {
            background-color: #e67e22;
            color: white;
        }

        /* Hide the original select but keep it for form submission */
        .custom-select select {
            display: none;
        }

        /* Focus state */
        .select-selected:focus {
            outline: none;
            border-color: #e67e22;
            box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
        }

        /* ==================== */
        /* IMPROVED RESPONSIVENESS */
        /* ==================== */

        @media (max-width: 1200px) {
            .fleet-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .intro-content {
                flex-direction: column;
            }

            .contact-container {
                flex-direction: column;
            }

            .hero h1 {
                font-size: 3.5rem;
            }

            .hero p {
                font-size: 1.5rem;
            }

            .package-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 1rem;
            }

            nav ul {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background-color: var(--rangitoto);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 2rem 0;
                clip-path: circle(0px at 90% -10%);
                transition: all 0.5s ease-out;
                pointer-events: none;
            }

            nav ul.open {
                clip-path: circle(1500px at 90% -10%);
                pointer-events: all;
            }

            nav ul li {
                margin: 1.5rem 0;
            }

            nav ul li a {
                font-size: 1.2rem;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                min-height: 500px;
            }

            .hero h1 {
                font-size: 2.5rem;
                margin-bottom: 1rem;
            }

            .hero p {
                font-size: 1.2rem;
                margin-bottom: 1.5rem;
            }

            .hero-features {
                flex-direction: column;
                gap: 1rem;
                margin-bottom: 2rem;
            }

            .hero-feature {
                font-size: 1rem;
            }

            .btn-container {
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }

            .btn-outline {
                margin-left: 0;
            }

            .section {
                padding: 3rem 1.5rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .fleet-grid {
                grid-template-columns: 1fr;
            }

            .features {
                grid-template-columns: 1fr;
            }

            .package-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-col {
                text-align: center;
            }

            .footer-col h3::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section {
                padding: 2rem 1rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .btn {
                padding: 0.6rem 1.5rem;
                font-size: 0.8rem;
            }

            .back-to-top {
                left: 1rem;
                bottom: 5rem;
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .whatsapp-btn {
                right: 1rem;
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .modal-content {
                padding: 1.5rem;
            }

            .modal-title {
                font-size: 1.5rem;
            }

            .modal-actions {
                flex-direction: column;
                gap: 0.5rem;
            }

            .modal-actions .btn {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 400px) {
            .logo img {
                height: 50px;
                margin-right: 10px;
            }

            .logo-text h1 {
                font-size: 1.2rem;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero-feature {
                font-size: 0.9rem;
            }

            .section-title h2 {
                font-size: 1.6rem;
            }

            .vehicle-specs {
                flex-direction: column;
                gap: 0.5rem;
            }
        }

        /* Smooth scrolling for anchor links */
        html {
            scroll-behavior: smooth;
        }

        /* Prevent horizontal scrolling */
        body {
            max-width: 100%;
            overflow-x: hidden;
        }

        /* Improved mobile menu transitions */
        .mobile-menu-btn {
            transition: transform 0.3s;
        }

        .mobile-menu-btn.open {
            transform: rotate(90deg);
        }

        /* Better form input sizes on mobile */
        input,
        select,
        textarea {
            font-size: 16px !important;
        }

        /* Prevent zooming on form inputs in mobile Safari */
        @media (max-width: 768px) {

            input[type="text"],
            input[type="email"],
            input[type="tel"],
            input[type="date"],
            select,
            textarea {
                font-size: 16px !important;
            }
        }