        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', sans-serif;
            color: #2c3e50;
            line-height: 1.6;
        }

        /* Scroll offset for anchors to account for sticky nav */
        .service-card[id],
        #services,
        #about,
        #testimonials,
        #quote-form,
        #contact {
            scroll-margin-top: 150px;
        }

        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
        }

        /* Top Bar */
        .top-bar {
            background: #1a1a1a;
            color: white;
            padding: 0.75rem 2rem;
        }

        .top-bar-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .top-bar-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .top-icon {
            color: white;
            font-size: 1rem;
            opacity: 0.9;
        }

        .top-bar-item strong {
            color: white;
            font-weight: 700;
        }

        .top-bar-item a,
        .top-bar-item a:visited,
        .top-bar-item a:hover,
        .top-bar-item a:active,
        .top-bar-item a strong,
        .top-bar-item a:visited strong {
            color: white;
            text-decoration: none;
        }

        .mobile-text {
            display: none;
        }

        .desktop-text {
            display: inline;
        }

        /* Main Navigation */
        .main-nav {
            background: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
        }

        .logo-image {
            width: 150px;
            height: 150px;
            background-image: url('../images/logo-md.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            margin: -30px 0;
            position: relative;
            z-index: 10;
        }

        .main-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .main-menu a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
            transition: all 0.3s;
        }

        .main-menu a:hover {
            color: #0066ff;
            border-bottom-color: #0066ff;
        }

        .emergency-btn {
            background: #e91e8c;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
        }

        .emergency-btn:hover {
            background: #c91876;
        }

        /* Hamburger Menu Button */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .hamburger span {
            width: 30px;
            height: 3px;
            background: #2c3e50;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* Mobile Menu Overlay */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 400px;
            height: 100vh;
            background: white;
            box-shadow: -5px 0 20px rgba(0,0,0,0.3);
            z-index: 1000;
            transition: right 0.3s ease;
            overflow-y: auto;
            padding: 2rem;
            /* Hide scrollbar for Chrome, Safari and Opera */
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE and Edge */
        }

        .mobile-menu::-webkit-scrollbar {
            display: none; /* Chrome, Safari and Opera */
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #f0f0f0;
        }

        .mobile-menu-header .logo-image {
            width: 100px;
            height: 100px;
            margin: 0;
        }

        .close-menu {
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .close-menu .material-icons {
            font-size: 2rem;
            color: #2c3e50;
        }

        .mobile-menu-list {
            list-style: none;
            padding: 0;
            margin: 0 0 2rem 0;
        }

        .mobile-menu-list li {
            margin-bottom: 0;
        }

        .mobile-menu-list a {
            display: block;
            padding: 0.5rem 1rem;
            font-size: 1.25rem;
            font-weight: 500;
            color: #2c3e50;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s;
        }

        .mobile-menu-list a:hover {
            background: #f0f7ff;
            color: #0066ff;
            padding-left: 1.5rem;
        }

        .mobile-emergency-btn {
            display: block;
            background: #e91e8c;
            color: white;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .mobile-contact-info {
            padding-top: 1rem;
            border-top: 2px solid #f0f0f0;
        }

        .mobile-contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.75rem;
            margin-bottom: 0.5rem;
        }

        .mobile-contact-item .material-icons {
            color: #e91e8c;
            font-size: 1.5rem;
        }

        .mobile-contact-item a {
            color: #2c3e50;
            text-decoration: none;
            font-size: 0.95rem;
        }

        .mobile-social-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 2px solid #f0f0f0;
        }

        .mobile-social-link {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.75rem;
            background: #f8f9fa;
            border-radius: 8px;
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }

        .mobile-social-link:hover {
            background: #e91e8c;
            color: white;
        }

        .mobile-social-link .material-icons {
            font-size: 1.5rem;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(to right, rgba(0, 102, 255, 0.9), rgba(233, 30, 140, 0.9)), url('../images/van-back-side-1.jpeg') center/cover;
            color: white;
            padding: 6rem 2rem;
        }

        /* Override white text for booking form in hero */
        .hero .booking-card,
        .hero .booking-card *,
        .hero .quote-form,
        .hero .quote-form *,
        .hero .form-section-title,
        .hero label,
        .hero input,
        .hero select,
        .hero textarea {
            color: #000 !important;
        }

        /* Keep button text WHITE */
        .hero .quote-submit-btn,
        .hero input[type="submit"] {
            color: #fff !important;
        }

        .hero input::placeholder,
        .hero textarea::placeholder {
            color: #666 !important;
            opacity: 1 !important;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            line-height: 1.1;
            font-weight: 700;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            opacity: 0.95;
            font-weight: 300;
            font-style: italic;
        }

        .hero-description {
            font-size: 1.15rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            line-height: 1.6;
            max-width: 90%;
        }

        .trust-badges {
            display: flex;
            justify-content: flex-start;
            gap: 1.5rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .trust-badge {
            text-align: center;
            padding: 0.75rem 1.25rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            flex: 1;
            max-width: 150px;
        }

        .trust-badge-value {
            font-size: 2rem;
            font-weight: 700;
            display: block;
            line-height: 1;
            margin-bottom: 0.4rem;
        }

        .trust-badge-label {
            font-size: 0.75rem;
            opacity: 0.95;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

        /* Booking Card */
        .booking-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0,0,0,0.25);
        }

        .quote-form {
            padding: 2.5rem;
        }

        .form-section {
            margin-bottom: 1.5rem;
        }

        .form-section-title {
            font-size: 0.85rem;
            color: #666;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Registration Input */
        .reg-input-group {
            margin-bottom: 1.5rem;
        }

        .reg-input-wrapper {
            display: flex;
            align-items: center;
            background: #ffd500;
            border: 3px solid #000;
            border-radius: 6px;
            padding: 0.5rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }

        .reg-badge {
            background: #003399;
            color: #ffd500;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
            font-weight: 700;
            font-size: 0.9rem;
            margin-right: 0.75rem;
        }

        .reg-input {
            flex: 1;
            border: none;
            background: transparent;
            font-size: 1.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            padding: 0.5rem;
            font-family: 'Montserrat', sans-serif;
        }

        .reg-input::placeholder {
            color: #666;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .reg-input:focus {
            outline: none;
        }

        /* Tyre Specs */
        .tyre-specs {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            align-items: flex-end;
        }

        .spec-group {
            flex: 1;
        }

        .spec-group label {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            color: #666;
            margin-bottom: 0.4rem;
        }

        .spec-group select {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            background: white;
            cursor: pointer;
            transition: border-color 0.3s;
        }

        .spec-group select:focus {
            outline: none;
            border-color: #c41e3a;
        }

        /* Fitting Options */
        .fitting-options {
            display: flex;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }

        .radio-option {
            display: flex;
            align-items: center;
            cursor: pointer;
            font-weight: 500;
        }

        .radio-option input[type="radio"] {
            width: 20px;
            height: 20px;
            margin-right: 0.5rem;
            cursor: pointer;
            accent-color: #c41e3a;
        }

        .radio-option span {
            font-size: 0.95rem;
            color: #2c3e50;
        }

        /* Contact Fields */
        .contact-fields {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-fields input,
        .contact-fields textarea {
            padding: 0.85rem 1rem;
            border: 2px solid #e5e7eb;
            border-radius: 6px;
            font-size: 0.95rem;
            font-family: 'Roboto', sans-serif;
            transition: all 0.3s;
            background: #fafafa;
        }

        .contact-fields input:focus,
        .contact-fields textarea:focus {
            outline: none;
            border-color: #e91e8c;
            background: white;
            box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.1);
        }

        .contact-fields textarea {
            resize: vertical;
            min-height: 60px;
        }

        /* Quote Submit Button */
        .quote-submit-btn {
            width: 100%;
            background: #000;
            color: white;
            padding: 1.25rem;
            border: none;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            letter-spacing: 1px;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            margin-top: 1rem;
        }

        .quote-submit-btn:hover {
            background: #c41e3a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
        }

        .quote-submit-btn:active {
            transform: translateY(0);
        }

        /* Form Messages */
        .form-message {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 6px;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .form-message.success {
            background: #d4edda;
            border: 2px solid #28a745;
            color: #000;
        }

        .form-message.error {
            background: #f8d7da;
            border: 2px solid #dc3545;
            color: #000;
        }

        /* Shake animation for validation errors */
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
            20%, 40%, 60%, 80% { transform: translateX(10px); }
        }

        .booking-options {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .booking-option {
            flex: 1;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            cursor: pointer;
            text-align: center;
            transition: all 0.3s;
        }

        .booking-option:hover,
        .booking-option.active {
            border-color: #0066ff;
            background: #f0f7ff;
        }

        .booking-option-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .booking-option-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: #2c3e50;
        }

        .form-field {
            margin-bottom: 1.25rem;
        }

        .form-field label {
            display: block;
            margin-bottom: 0.5rem;
            color: #1a1a1a;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .form-field input,
        .form-field select,
        .form-field textarea {
            width: 100%;
            padding: 0.85rem 1rem;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: 'Roboto', sans-serif;
            transition: all 0.3s;
            background: #fafafa;
        }

        .form-field input:focus,
        .form-field select:focus,
        .form-field textarea:focus {
            outline: none;
            border-color: #e91e8c;
            background: white;
            box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.1);
        }

        .form-field textarea {
            resize: vertical;
            min-height: 80px;
        }

        .form-field select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            padding-right: 2.5rem;
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #0066ff, #e91e8c);
            color: white;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
            margin-top: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(233, 30, 140, 0.4);
            background: linear-gradient(135deg, #0052cc, #d11976);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        /* Services Section */
        .services {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 0rem;
        }

        .services h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #1a1a1a;
            padding: 0 2rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            padding: 0 2rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(233, 30, 140, 0.2);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, rgba(233, 30, 140, 0.1), rgba(0, 102, 255, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-icon .material-icons {
            font-size: 2.5rem;
            background: linear-gradient(135deg, #e91e8c, #0066ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .service-card h3 {
            margin-bottom: 1rem;
            color: #1a1a1a;
        }

        .service-card p {
            color: #666;
        }

        .section-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #666;
        }

        /* Vehicle Types Section */
        .vehicle-types {
            padding: 5rem 2rem;
            background: white;
        }

        .vehicle-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .vehicle-card {
            position: relative;
            height: 250px;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .vehicle-card:hover {
            transform: scale(1.05);
        }

        .vehicle-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .vehicle-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 2rem 1.5rem;
        }

        .vehicle-card h4 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        /* Why Choose Section */
        .why-choose {
            background: #f8f9fa;
            padding: 4rem 2rem;
        }

        .why-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .why-content h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #1a1a1a;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .feature {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            border-left: 4px solid #e91e8c;
        }

        .feature h3 {
            margin-bottom: 1rem;
            color: #1a1a1a;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .feature h3 .material-icons {
            background: linear-gradient(135deg, #e91e8c, #0066ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.5rem;
        }

        /* Process Section - Fun Cartoon Style */
        .process-section {
            padding: 5rem 2rem;
            background:
                url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 10 Q35 15 30 20 Q25 25 30 30 Q35 35 30 40 Q25 45 30 50' stroke='%23e0e7ff' stroke-width='1' fill='none'/%3E%3C/svg%3E"),
                linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
            background-size: 60px 60px, 100%;
            position: relative;
            overflow: visible;
        }

        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin-top: 4rem;
            position: relative;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 6px;
            background: linear-gradient(180deg, #0066ff 0%, #e91e8c 100%);
            transform: translateX(-50%);
            z-index: 1;
            border-radius: 3px;
            box-shadow: 0 2px 10px rgba(233, 30, 140, 0.3);
        }

        .step {
            position: relative;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 2rem;
            padding: 2rem 0;
        }

        .step:nth-child(odd) .step-content {
            grid-column: 1;
            text-align: left;
        }

        .step:nth-child(odd) .step-number {
            grid-column: 2;
        }

        .step:nth-child(odd) .step-placeholder {
            grid-column: 3;
        }

        .step:nth-child(even) .step-placeholder {
            grid-column: 1;
        }

        .step:nth-child(even) .step-number {
            grid-column: 2;
        }

        .step:nth-child(even) .step-content {
            grid-column: 3;
            text-align: left;
        }

        .step-placeholder {
            width: 100%;
        }

        .step-content {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1), 0 0 0 1px rgba(233, 30, 140, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            z-index: 100;
        }

        .step-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #0066ff, #e91e8c);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .step-content:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 50px rgba(233, 30, 140, 0.3), 0 0 0 2px rgba(233, 30, 140, 0.2);
        }

        .step-content:hover::before {
            opacity: 1;
        }

        .step-number {
            width: 85px;
            height: 85px;
            background:
                radial-gradient(circle at 30% 30%, rgba(255,255,255,0.5) 0%, transparent 50%),
                linear-gradient(135deg, #ff6b6b, #ffd93d);
            color: #2c3e50;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 900;
            box-shadow:
                0 10px 25px rgba(255, 107, 107, 0.4),
                inset 0 3px 6px rgba(255,255,255,0.6),
                inset 0 -3px 6px rgba(0,0,0,0.15);
            border: 6px solid white;
            position: relative;
            z-index: 100;
            flex-shrink: 0;
            transition: all 0.4s ease;
        }

        .step:hover .step-number {
            transform: scale(1.1);
            box-shadow:
                0 15px 35px rgba(255, 107, 107, 0.6),
                inset 0 3px 6px rgba(255,255,255,0.7),
                inset 0 -3px 6px rgba(0,0,0,0.15);
        }

        .step-icon {
            width: 75px;
            height: 75px;
            margin: 0 0 1.5rem 0;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.12), rgba(233, 30, 140, 0.12));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(233, 30, 140, 0.25);
            position: relative;
            box-shadow: 0 4px 15px rgba(233, 30, 140, 0.15);
        }

        .step-icon::after {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 18px;
            padding: 2px;
            background: linear-gradient(135deg, #0066ff, #e91e8c);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s;
        }

        .step-content:hover .step-icon::after {
            opacity: 1;
        }

        .step-icon .material-icons {
            font-size: 2.5rem;
            background: linear-gradient(135deg, #0066ff, #e91e8c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }


        .step h4 {
            color: #1a1a1a;
            margin-bottom: 0.85rem;
            font-size: 1.35rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            position: relative;
            padding-bottom: 0.75rem;
        }

        .step h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #0066ff, #e91e8c);
            border-radius: 3px;
            transition: width 0.4s;
        }

        .step-content:hover h4::after {
            width: 60px;
        }

        .step p {
            color: #555;
            font-size: 1rem;
            line-height: 1.7;
            font-weight: 400;
        }

        /* Van Showcase Section */
        .van-showcase {
            background: white;
            padding: 4rem 2rem;
        }

        .van-showcase-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .van-showcase-text h2 {
            font-size: 2.5rem;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
        }

        .van-showcase-text p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
        }

        .van-image-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            max-width: 500px;
        }

        .van-image-container img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Testimonials */
        .testimonials {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .testimonials h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #1a1a1a;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .stars {
            color: #ffc107;
            margin-bottom: 1rem;
            display: flex;
            gap: 0.25rem;
        }

        .stars .material-icons {
            font-size: 1.2rem;
        }

        .testimonial p {
            color: #666;
            margin-bottom: 1rem;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 600;
            color: #1a1a1a;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(to right, rgba(26, 26, 26, 0.92), rgba(26, 26, 26, 0.92)), url('../images/van-side-view.jpeg') center/cover;
            color: white;
            padding: 5rem 2rem;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-primary {
            background: #e91e8c;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background 0.3s;
        }

        .cta-primary:hover {
            background: #c91876;
        }

        .cta-secondary {
            background: transparent;
            color: white;
            padding: 1rem 2.5rem;
            border: 2px solid white;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .cta-secondary:hover {
            background: white;
            color: #1a1a1a;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            padding: 3rem 2rem 1rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1.2fr 0.8fr 1.5fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-logo {
            width: 120px;
            height: 120px;
            background-image: url('../images/logo-md.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            margin: 0 0 1rem 0;
        }

        .footer-logo-section {
            text-align: left;
        }

        .footer-logo-section h3 {
            font-size: 1.1rem;
        }

        .footer-logo-section p {
            font-size: 0.9rem;
            color: #ccc;
            line-height: 1.6;
        }

        .footer-section h3 {
            color: #e91e8c;
            margin-bottom: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #e91e8c;
        }

        .footer-section li {
            transition: transform 0.2s;
        }

        .footer-section li:hover {
            transform: translateX(3px);
        }

        /* Payment Methods in Hero Section - Redesigned */
        .payment-methods {
            margin-top: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            padding: 1.75rem 2.5rem;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        }

        /* Hide mobile payment methods on desktop */
        .payment-methods-mobile {
            display: none;
        }

        .payment-methods-label {
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #2c3e50;
            margin-right: 0.5rem;
        }

        .payment-logos {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .payment-logo {
            height: 50px;
            width: auto;
            opacity: 1;
            transition: all 0.3s;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }

        .payment-logo:hover {
            transform: scale(1.08);
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
        }

        /* Make Klarna logo bigger */
        .payment-logo[alt="Klarna Payment"] {
            height: 70px;
            width: auto;
        }

        /* Keep Clearpay at original size */
        .payment-logo[alt="Clearpay Payment"] {
            height: 50px;
            width: auto;
        }

        /* Footer Payment Methods */
        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #999;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .footer-payment-methods {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .footer-payment-label {
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #999;
        }

        .footer-payment-logos {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .footer-payment-logo {
            height: 45px;
            width: auto;
            opacity: 1;
            transition: all 0.3s;
        }

        .footer-payment-logo:hover {
            transform: scale(1.05);
        }

        /* Make Klarna logo bigger in footer */
        .footer-payment-logo[alt="Klarna Payment"] {
            height: 60px;
        }

        /* Keep Clearpay at original size in footer */
        .footer-payment-logo[alt="Clearpay Payment"] {
            height: 45px;
        }

        @media (max-width: 1100px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 2.5rem;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-steps {
                max-width: 700px;
            }

            .step {
                padding: 1.5rem 0;
            }

            .step-content {
                padding: 1.75rem;
            }

            .step-number {
                width: 70px;
                height: 70px;
                font-size: 1.75rem;
            }
        }

        @media (max-width: 968px) {
            /* Top Bar Mobile */
            .top-bar {
                padding: 0.5rem 1rem;
            }

            .top-bar-content {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                gap: 1rem;
                font-size: 0.75rem;
            }

            .top-bar-item {
                font-size: 0.75rem;
            }

            .top-bar-item:nth-child(3) {
                display: none;
            }

            .top-bar-item strong {
                color: #ffd700 !important;
                font-weight: 700;
            }

            .top-bar-item a,
            .top-bar-item a:visited,
            .top-bar-item a:hover,
            .top-bar-item a:active,
            .top-bar-item a strong,
            .top-bar-item a:visited strong {
                color: #ffd700 !important;
                text-decoration: none;
            }

            .desktop-text {
                display: none;
            }

            .mobile-text {
                display: inline;
            }

            /* Navigation Mobile */
            .nav-content {
                padding: 0.75rem 1rem;
            }

            .main-menu {
                display: none;
            }

            .emergency-btn {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .logo-image {
                width: 100px;
                height: 100px;
                margin: -20px 0;
            }

            /* Hero Mobile */
            .hero {
                padding: 1rem 1rem 3rem 1rem;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .quote-form {
                padding: 1.5rem;
            }

            .reg-input {
                font-size: 1.2rem;
                letter-spacing: 1px;
            }

            .tyre-specs {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }

            .fitting-options {
                gap: 1rem;
            }

            .radio-option input[type="radio"] {
                width: 18px;
                height: 18px;
            }

            .form-field input,
            .form-field select,
            .form-field textarea {
                padding: 0.75rem 0.85rem;
                font-size: 0.9rem;
            }

            .hero-text h1 {
                font-size: 3.25rem;
                margin-bottom: 0.75rem;
                text-align: center;
            }

            .hero-subtitle {
                font-size: 1.1rem;
                margin-bottom: 1rem;
                text-align: center;
            }

            .hero-description {
                font-size: 0.95rem;
                margin-bottom: 2rem;
                max-width: 100%;
                text-align: center;
            }

            .trust-badges {
                flex-direction: row;
                justify-content: center;
                gap: 0.75rem;
                margin-top: 2rem;
            }

            .trust-badge {
                padding: 0.6rem 0.75rem;
                flex: 1;
                min-width: auto;
                max-width: none;
            }

            .trust-badge-value {
                font-size: 1.5rem;
            }

            .trust-badge-label {
                font-size: 0.65rem;
            }

            /* Payment Methods Mobile */
            /* Hide the desktop payment methods (inside hero-text) on mobile */
            .hero-text .payment-methods {
                display: none;
            }

            /* Show the mobile payment methods (below form) on mobile */
            .payment-methods-mobile {
                display: flex;
                margin-top: 2rem;
                margin-bottom: 1.5rem;
                flex-direction: column;
                padding: 1rem 1rem;
                gap: 0.75rem;
                max-width: 100%;
                width: 100%;
            }

            .payment-methods,
            .payment-methods-mobile {
                margin-top: 2rem;
                margin-bottom: 1.5rem;
                flex-direction: column;
                padding: 1rem 1rem;
                gap: 0.75rem;
                max-width: 100%;
                width: 100%;
            }

            .payment-methods-label {
                font-size: 0.85rem;
                text-align: center;
            }

            .payment-logos {
                flex-direction: row;
                justify-content: center;
                gap: 1rem;
                width: 100%;
            }

            .payment-logo {
                height: 32px;
                max-width: 45%;
                object-fit: contain;
            }

            /* Make Klarna logo bigger on mobile */
            .payment-logo[alt="Klarna Payment"] {
                height: 80px;
                max-width: 45%;
                object-fit: contain;
            }

            /* Keep Clearpay at original size on mobile */
            .payment-logo[alt="Clearpay Payment"] {
                height: 32px;
                max-width: 45%;
                object-fit: contain;
            }

            .footer-bottom-content {
                flex-direction: column-reverse;
                text-align: center;
                gap: 1rem;
            }

            .footer-payment-methods {
                flex-direction: column;
                gap: 0.75rem;
            }

            /* Van Showcase Mobile */
            .van-showcase-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .van-showcase-text h2 {
                font-size: 2rem;
                text-align: center;
            }

            .van-showcase-text p {
                font-size: 1rem;
            }

            .van-image-container {
                max-width: 100%;
                margin: 0 auto;
            }

            /* Sections Mobile */
            .services {
                padding: 3rem 0rem;
            }

            .services h2 {
                padding: 0 1rem;
            }

            .services-grid {
                padding: 0 1rem;
            }

            .testimonials,
            .why-content,
            .van-showcase {
                padding: 3rem 1rem;
            }

            .services h2,
            .testimonials h2,
            .why-content h2,
            .section-header h2,
            .cta-section h2 {
                font-size: 1.75rem;
                margin-bottom: 2rem;
            }

            .services-grid,
            .testimonials-grid,
            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .process-section,
            .cta-section {
                padding: 3rem 1rem;
            }

            .process-steps {
                max-width: 100%;
                padding: 0 1rem;
                display: flex;
                flex-direction: column;
                position: relative;
            }

            .process-steps::before {
                left: 50%;
                transform: translateX(-50%);
                top: 0;
                bottom: 0;
                width: 4px;
                z-index: 1;
            }

            .step {
                display: flex;
                flex-direction: column;
                align-items: center;
                position: relative;
                margin-bottom: 3rem;
            }

            .step:last-child {
                margin-bottom: 0;
            }

            .step:nth-child(odd) .step-content,
            .step:nth-child(even) .step-content {
                order: 2;
                text-align: left;
                width: 100%;
                max-width: 100%;
            }

            .step:nth-child(odd) .step-number,
            .step:nth-child(even) .step-number {
                order: 1;
                width: 70px;
                height: 70px;
                font-size: 1.75rem;
                margin: 0 0 1.5rem 0;
                flex-shrink: 0;
                position: relative;
                z-index: 100;
            }

            .step:nth-child(odd) .step-placeholder,
            .step:nth-child(even) .step-placeholder {
                display: none;
            }

            .step-content {
                padding: 1.5rem;
                width: 100%;
                box-sizing: border-box;
                z-index: 100;
            }

            .step-content h4 {
                text-align: left;
            }

            .step-icon {
                width: 55px;
                height: 55px;
                margin: 0 auto 1rem auto;
            }

            .step-icon .material-icons {
                font-size: 2rem;
            }

            .step-content::after {
                display: none;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .cta-primary,
            .cta-secondary {
                width: 100%;
                text-align: center;
            }

            /* Footer Mobile */
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-logo-section {
                order: -1;
                text-align: left;
            }

            .footer-logo {
                margin: 0 0 1rem 0;
            }
        }

        @media (max-width: 480px) {
            .top-bar-content {
                font-size: 0.75rem;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .hero-description {
                font-size: 0.9rem;
            }

            .van-showcase-text h2 {
                font-size: 1.5rem;
            }

            .van-showcase-text p {
                font-size: 0.95rem;
            }

            .trust-badges {
                gap: 0.5rem;
            }

            .trust-badge {
                padding: 0.5rem 0.5rem;
            }

            .trust-badge-value {
                font-size: 1.25rem;
            }

            .trust-badge-label {
                font-size: 0.6rem;
            }

            .mobile-menu {
                max-width: 100%;
            }

            /* Payment Methods - Extra Small Screens */
            /* Hide the desktop payment methods on extra small screens */
            .hero-text .payment-methods {
                display: none;
            }

            /* Show mobile payment methods on extra small screens */
            .payment-methods-mobile {
                display: flex;
            }

            .payment-methods,
            .payment-methods-mobile {
                padding: 0.75rem 0.75rem;
                gap: 0.5rem;
            }

            .payment-methods-label {
                font-size: 0.75rem;
            }

            .payment-logo {
                height: 28px;
                max-width: 42%;
            }

            /* Make Klarna bigger on extra small screens */
            .payment-logo[alt="Klarna Payment"] {
                height: 60px;
                max-width: 42%;
            }

            /* Keep Clearpay at original size on extra small screens */
            .payment-logo[alt="Clearpay Payment"] {
                height: 28px;
                max-width: 42%;
            }

            .payment-logos {
                gap: 0.75rem;
            }
        }
