/* Base Styles */
        :root {
            --primary: #1a5276;
            --secondary: #f39c12;
            --light: #f8f9fa;
            --dark: #343a40;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: var(--dark);
            padding-top: 70px; /* account for fixed header */
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header & Navigation */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary);
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(images/hero.jpg) no-repeat center center/cover;
            height: 80vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
            animation: fadeInUp 1s ease;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
        }
        
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--secondary), #e67e22);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
        }
        
        .btn:hover {
            background: linear-gradient(135deg, #e67e22, #d35400);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
        }
        
        /* Services Section */
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary), #e67e22);
            border-radius: 2px;
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            position: relative;
            border: 2px solid transparent;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(26, 82, 118, 0.15);
            border-color: var(--secondary);
        }
        
        .service-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }
        
        .service-header i {
            font-size: 24px;
            color: var(--secondary);
            flex-shrink: 0;
        }
        
        .service-header h3 {
            color: var(--primary);
            margin: 0;
            font-size: 1.1rem;
        }
        
        .service-img {
            height: 200px;
            background-color: #ddd;
            background-size: cover;
            background-position: center;
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content p {
            color: #666;
            margin: 0;
        }
        
        /* About Section */
        .about-section {
            background: white;
        }
        
        .about-content {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .about-text h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .about-text p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 1.05rem;
        }
        
        .about-features {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .about-features li {
            display: flex;
            align-items: center;
            color: #555;
        }
        
        .about-features li i {
            color: var(--secondary);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        /* Contact Section */
        .contact-section {
            background-color: #f8f9fa;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .contact-info h3 {
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .contact-details {
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            padding: 15px;
            background: white;
            border-radius: 8px;
            transition: transform 0.2s;
        }
        
        .contact-item:hover {
            transform: translateX(5px);
        }
        
        .contact-item i {
            margin-right: 15px;
            color: var(--secondary);
            font-size: 1.3rem;
            width: 30px;
            text-align: center;
        }
        
        .contact-item a {
            color: var(--dark);
            text-decoration: none;
        }
        
        .contact-item a:hover {
            color: var(--primary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: background 0.3s, transform 0.2s;
            font-size: 1.2rem;
        }
        
        .social-links a:hover {
            background: var(--secondary);
            transform: scale(1.1);
        }
        
        .contact-form input,
        .contact-form textarea,
        .contact-form select {
            width: 100%;
            padding: 12px;
            margin-bottom: 20px;
            border: 1px solid gray;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        .contact-form textarea {
            height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: white;
        }
        
        .footer-column ul li i {
            margin-right: 10px;
            color: var(--secondary);
        }
        
        .security-badges {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            padding: 25px 0;
            border-top: 1px solid #444;
            margin-top: 30px;
        }

        .badge-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #aaa;
            font-size: 0.9rem;
        }

        .badge-item i {
            font-size: 1.3rem;
            color: var(--secondary);
        }

        .badge-item span {
            font-weight: 500;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25d366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            z-index: 999;
            transition: transform 0.3s, box-shadow 0.3s;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
            }
        }
        
        .whatsapp-float:hover {
            transform: scale(1.15);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
            animation: none;
        }
        
        /* Skip link visible on keyboard focus */
        .skip-link {
            position: absolute;
            left: -999px;
            top: 10px;
            background: #fff;
            color: var(--primary);
            padding: 8px 12px;
            z-index: 2000;
            border-radius: 4px;
            text-decoration: none;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .skip-link:focus {
            left: 10px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }
            
            nav ul {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav ul li {
                margin: 0;
                text-align: center;
                border-bottom: 1px solid #eee;
            }
            
            nav ul li a {
                display: block;
                padding: 15px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .review-header {
                flex-direction: column;
                gap: 15px;
            }
            
            .existing-reviews {
                grid-template-columns: 1fr;
            }
            
            .submit-review {
                padding: 25px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 24px;
            }

            /* Mobile Gallery Styles */
            .featured-vans {
                padding: 0 15px;
            }

            .vans-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
                gap: 30px;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .gallery-filters {
                gap: 10px;
            }

            .filter-btn {
                padding: 8px 15px;
                font-size: 0.9rem;
            }

            .van-info {
                padding: 20px;
            }

            .van-image {
                height: 200px;
            }

            /* Mobile Video Fixes */
            .video-item {
                height: 250px;
            }

            .video-item video {
                height: 250px;
                max-height: 250px;
            }
        }

        /* Gallery Styles */
        .gallery-hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(images/hero.jpg) no-repeat center center/cover;
            height: 80vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            margin-top: 70px;
        }

        /* Featured Vans Section */
        .featured-vans {
            margin-bottom: 80px;
        }

        .vans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .van-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .van-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
        }

        .van-image {
            width: 100%;
            height: 300px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .van-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--secondary);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            z-index: 10;
        }

        .van-info {
            padding: 30px;
        }

        .van-info h4 {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 20px;
            margin-top: 0;
        }

        .van-features {
            list-style: none;
            margin-bottom: 25px;
        }

        .van-features li {
            color: #555;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .van-features i {
            color: var(--secondary);
            font-size: 1.1rem;
        }

        .btn-small {
            padding: 10px 25px;
            font-size: 0.95rem;
        }

        .gallery-filters {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 25px;
            border: 2px solid var(--primary);
            background: white;
            color: var(--primary);
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary);
            color: white;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .gallery-image {
            width: 100%;
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: flex-end;
            transition: transform 0.3s ease;
        }

        .gallery-overlay {
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            width: 100%;
            padding: 30px 20px 20px;
            color: white;
            position: relative;
            z-index: 2;
        }

        .gallery-overlay h3 {
            margin: 0;
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .gallery-overlay p {
            margin: 0;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Video Items */
        .video-item {
            position: relative;
            height: 250px;
        }

        .video-item video {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .video-wrapper {
            width: 100%;
            height: 100%;
            min-height: 250px;
            position: absolute;
            top: 0;
            left: 0;
            border-radius: 10px;
            overflow: hidden;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.3);
            opacity: 1;
            transition: opacity 0.3s ease;
            z-index: 5;
            cursor: pointer;
        }

        .video-item:hover .video-overlay {
            background: rgba(0,0,0,0.5);
        }

        .video-overlay i {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 10px;
            transition: transform 0.3s ease;
        }

        .video-item:hover .video-overlay i {
            transform: scale(1.2);
        }

        .video-overlay h3 {
            color: white;
            text-align: center;
            margin: 0;
            font-size: 1.1rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary), #0f3a52);
            text-align: center;
            color: white;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: white;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .btn-large {
            padding: 15px 40px;
            font-size: 1.1rem;
        }

        /* Logo Link */
        .logo a {
            text-decoration: none;
            color: var(--primary);
        }

        .logo a span {
            color: var(--secondary);
        }

        /* Active Navigation */
        nav ul li a.active {
            color: var(--primary);
            font-weight: 700;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 5px;
        }

        /* Fine Print - Terms & Conditions */
        .fine-print {
            padding: 15px;
            border-top: 1px solid #444;
            margin-top: 20px;
            font-size: 0.65rem;
            color: #aaa;
            line-height: 1.4;
        }

        .fine-print h4 {
            font-size: 0.7rem;
            color: #aaa;
            margin-bottom: 8px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .fine-print p {
            margin: 0;
            text-align: justify;
            color: #aaa;
        }

        .fine-print strong {
            font-weight: 700;
            color: #aaa;
        }
