/* Root Variables and Base Styles */
:root {
    --primary-color: #ff6b6b;
    --primary-hover: #ff5252;
    --text-light: #ffffff;
    --text-dark: #333333;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --accent-color: #3498db;
    --secondary-color: #e74c3c;
    --light-bg: #f8f9fa;
    --dark-bg: #2c3e50;
    --gradient-main: linear-gradient(135deg, #2193b0, #6dd5ed);
    --gradient-accent: linear-gradient(135deg, #ee0979, #ff6a00);
    --gradient-soft: linear-gradient(135deg, #E0EAFC, #CFDEF3);
    --box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    background: var(--light-bg);
    overflow-x: hidden;
}

/* Navigation Styles */
nav {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #007bff;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

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

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

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

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #000; /* Prevents white flash */
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.loading-spinner {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    z-index: 3;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.video-background video.loaded {
    opacity: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: clamp(1rem, 5vw, 3rem);
    color: var(--text-light);
    max-width: min(90%, 800px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: clamp(1rem, 3vw, 2rem);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8),
                 0 0 30px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8),
                 0 0 20px rgba(0, 0, 0, 0.5);
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.4;
    max-width: 600px;
}

.cta-btn {
    padding: clamp(0.8rem, 2vw, 1.2rem) clamp(1.5rem, 4vw, 2.5rem);
    font-size: clamp(1rem, 2vw, 1.2rem);
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    -webkit-tap-highlight-color: transparent;
}

.cta-btn:hover, .cta-btn:focus {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

/* Touch Device Optimizations */
@media (hover: none) {
    .cta-btn:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
}

/* Responsive Design */
/* Large Screens */
@media (min-width: 1200px) {
    .hero-content {
        padding: var(--spacing-lg);
    }
}

/* Medium Screens */
@media (max-width: 992px) {
    .hero-content {
        padding: var(--spacing-md);
    }
}

/* Small Screens */
@media (max-width: 768px) {
    .hero {
        height: 100vh; /* Use viewport height on mobile */
        height: 100svh; /* Use small viewport height for mobile browsers */
    }
    
    .hero-content {
        padding: var(--spacing-sm);
        justify-content: center;
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .hero-content {
        text-align: center;
        padding: var(--spacing-sm);
    }
}

/* Landscape Mode */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        margin-bottom: 0.5rem;
    }
    
    .hero-content p {
        font-size: clamp(0.9rem, 2vw, 1.2rem);
        margin-bottom: 1rem;
    }
}

/* Print Styles */
@media print {
    .hero {
        height: auto;
        background: none !important;
    }
    
    .video-background,
    .video-overlay {
        display: none;
    }
    
    .hero-content {
        color: var(--text-dark);
        text-shadow: none;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .cta-btn {
        transition: none;
    }
    
    .video-background video {
        display: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: more) {
    .video-overlay {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .hero-content {
        text-shadow: none;
    }
    
    .cta-btn {
        border: 2px solid var(--text-light);
    }
}

/* Vehicle Section */
#noah {
    padding: 5rem 2rem;
    background: var(--gradient-soft);
    position: relative;
    overflow: hidden;
}

.vehicle-details {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    margin: 2rem auto;
    max-width: 1200px;
}

/* Services Section */
#services {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-details {
    margin-top: 1rem;
}

.service-details ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-details li::before {
    content: '✓';
    color: var(--accent-color);
}

.price-tag {
    display: inline-block;
    background: var(--gradient-main);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Service Features Section */
.service-features {
    margin-top: 4rem;
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.9);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.feature .icon {
    font-size: 2rem;
    color: var(--accent-color);
}

/* Hover Effects */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover::after {
    transform: translateX(100%);
}

/* Updated Contact Section with Blue Gradient */
.contact-section {
    background: linear-gradient(135deg, #2193b0, #6dd5ed); /* Blue gradient */
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Add subtle pattern overlay */
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.1) 75%),
                linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.1) 75%);
    background-size: 20px 20px;
    opacity: 0.1;
}

.contact-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-info {
    color: white;
    text-align: center;
    margin-top: 20px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.location-details {
    background: rgba(255,255,255,0.15);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.location-details h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.coverage-list li {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.coverage-list li:hover {
    background: rgba(255,255,255,0.3);
    transform: translateX(10px);
}

.coverage-list .tick {
    background: #27ae60;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Contact Form Styling */
.contact-form {
    background: rgba(255,255,255,0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.contact-form button {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-weight: bold;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

/* Floating Elements Animation */
.contact-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-30px, 30px) rotate(180deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-container {
        padding: 1.5rem;
    }

    .location-details {
        padding: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .contact-form {
        background: rgba(255,255,255,0.8);
    }

    .contact-form input,
    .contact-form textarea {
        background: rgba(255,255,255,0.95);
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 40px 32px;
    border-radius: 12px;
    width: 95%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    max-height: 90vh;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #666;
    cursor: pointer;
}

.close:hover {
    color: #333;
}

.modal h2 {
    margin-bottom: 25px;
    font-size: 24px;
    color: #007bff; /* Primary color for headings */
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    color: #333;
    background-color: #f9f9f9; /* Light background for inputs */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #007bff; /* Highlight border on focus */
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.modal-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 25px;
}

.modal-buttons button {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.modal-buttons button[type="submit"] {
    background-color: #007bff; /* Primary color for submit button */
    color: white;
}

.modal-buttons button[type="submit"]:hover {
    background-color: #0056b3; /* Darker shade on hover */
    transform: translateY(-2px);
}

.modal-buttons button[type="button"] {
    background-color: #6c757d; /* Gray color for back button */
    color: white;
}

.modal-buttons button[type="button"]:hover {
    background-color: #5a6268; /* Darker shade on hover */
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .modal-content {
        margin: 20% auto;
        padding: 20px;
    }

    .modal h2 {
        font-size: 22px;
    }

    .form-group input,
    .form-group select {
        font-size: 14px;
        padding: 10px;
    }

    .modal-buttons button {
        font-size: 14px;
        padding: 10px;
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .search-box form {
        grid-template-columns: 1fr;
    }

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

    .service-card {
        padding: 1.5rem;
    }

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

    .logo {
        font-size: 1rem;
    }

    .modal-content {
        width: 98%;
        max-width: 98vw;
        padding: 20px 8px;
        margin: 10% auto;
    }
}

/* Additional Animations */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.animated-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-main);
    opacity: 0.1;
    filter: blur(40px);
    animation: floatAnimation 20s infinite;
}

@keyframes floatAnimation {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(50px, -50px); }
    50% { transform: translate(-30px, 30px); }
    75% { transform: translate(40px, 20px); }
}

/* Car Showcase Styles */
.car-3d-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.car-view {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.car-view img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-view:hover {
    transform: scale(1.05);
}

/* Loading Animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-car {
    position: relative;
    animation: drive 2s infinite linear;
}

@keyframes drive {
    0% { transform: translateX(-50px); }
    100% { transform: translateX(50px); }
}

/* Add these new styles */
.whatsapp-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.floating-whatsapp button {
    background: #25D366;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.floating-whatsapp button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.floating-whatsapp img {
    width: 24px;
    height: 24px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .floating-whatsapp {
        bottom: 1rem;
        right: 1rem;
    }
}

/* Enhanced WhatsApp Button Styles */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
}

.whatsapp-bubble {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-bubble::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.5;
    animation: pulse 2s infinite;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    display: block;
    transition: transform 0.3s ease;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: #333;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-whatsapp-btn:hover .whatsapp-bubble {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Updated Contact Section Styles */
.coverage-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.coverage-list li .tick {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #2ecc71;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.coverage-list li:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.2);
}

.coverage-list li:hover .tick {
    transform: scale(1.2);
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .floating-whatsapp-btn {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-bubble {
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
}

/* Updated Coverage List Styles */
.coverage-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.coverage-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.coverage-list .tick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #2ecc71;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0; /* Prevents tick from shrinking */
}

.coverage-list .location-text {
    font-size: 1rem;
    color: inherit;
}

.coverage-list li:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.2);
}

.coverage-list li:hover .tick {
    transform: scale(1.2) rotate(360deg);
    background: #27ae60;
}

/* Ensure consistent styling across all list items */
.coverage-list li {
    opacity: 1;
    visibility: visible;
}

/* Animation for list items */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.coverage-list li {
    animation: fadeInLeft 0.5s ease forwards;
}

/* Stagger the animations */
.coverage-list li:nth-child(1) { animation-delay: 0.1s; }
.coverage-list li:nth-child(2) { animation-delay: 0.2s; }
.coverage-list li:nth-child(3) { animation-delay: 0.3s; }
.coverage-list li:nth-child(4) { animation-delay: 0.4s; }
.coverage-list li:nth-child(5) { animation-delay: 0.5s; }

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .coverage-list li {
        padding: 10px 12px;
    }

    .coverage-list .tick {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .coverage-list .location-text {
        font-size: 0.9rem;
    }
}

/* Car Gallery Styles */
.car-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    margin: 0;
    font-size: 1.2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .car-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .gallery-item img {
        height: 250px;
    }

    .gallery-item p {
        font-size: 1.1rem;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .car-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item img {
        height: 200px;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Dark background */
    text-align: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%; /* Responsive max width */
    max-height: 80%; /* Responsive max height */
    border-radius: 10px; /* Rounded corners */
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #ccc; /* Change color on hover */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .car-gallery {
        grid-template-columns: 1fr;
    }

    .small-image {
        width: 120px; /* Smaller size for mobile */
        height: 80px; /* Smaller size for mobile */
    }
}

.book-now-btn {
    background: linear-gradient(135deg, #007bff, #00bfff);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: clamp(14px, 2.5vw, 18px);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: auto;
    min-width: 120px;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn-icon {
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: flex-start;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.modal-header h2 {
    color: #007bff;
    margin-bottom: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.submit-btn {
    padding: 12px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #218838;
}

.modal-footer {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 10px;
        align-items: center;
    }

    .modal-content {
        width: min(95%, 400px);
    }

    input, select {
        font-size: 16px !important;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
}

@media (max-width: 480px) {
    .book-now-btn {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }

    .modal-content {
        width: 100%;
        border-radius: 0;
        margin: 0;
        height: 100vh;
        overflow-y: auto;
    }

    .modal-overlay {
        padding: 0;
    }

    .form-group {
        margin-bottom: 15px;
    }

    input, select {
        padding: 12px !important;
        font-size: 16px !important;
    }
}

/* Mobile landscape specific */
@media (max-width: 768px) and (orientation: landscape) {
    .modal-content {
        max-height: 90vh;
        overflow-y: auto;
    }
}

/* Prevent zoom on input focus */
@media (max-width: 480px) {
    input, select, textarea {
        font-size: 16px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .modal-content {
        animation: none;
    }
}

.datetime-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

input[type="date"],
input[type="time"] {
    position: relative;
    background: #f5f5f5;
    border: 2px solid #ddd;
    padding: 10px;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

input[type="date"]:focus,
input[type="time"]:focus {
    border-color: #007bff;
    background: white;
}

/* Custom date/time picker styling */
input[type="date"]::before,
input[type="time"]::before {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23007bff"><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7v-5z"/></svg>') no-repeat center;
}

input[type="time"]::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23007bff"><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"/></svg>');
}

.our-car-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.image-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.image-item:hover {
    transform: scale(1.02);
}

.image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}


.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 1rem;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.close-btn:hover {
    color: #ccc;
}

@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .image-item img {
        height: 150px;
    }
}

/* Add smooth scrolling behavior */
html {
    scroll-behavior: smooth;
}

/* Style the active navigation link */
nav a.active {
    color: #007bff;
    font-weight: bold;
}

/* Add some padding to account for fixed header */
section {
    scroll-margin-top: 80px; /* Adjust based on your header height */
}

.contact-link {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    font-size: 1.2rem;
    margin: 10px 0;
    padding: 10px 15px;
    border: 2px solid #007bff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #007bff;
    color: white;
}

.contact-link .icon {
    margin-right: 10px;
}

#reviews {
    padding: 60px 20px;
    background: #f8f9fa;
    text-align: center;
}

.reviews-container {
    max-width: 800px;
    margin: 0 auto;
}

.reviews-list {
    margin-bottom: 40px;
}

.review {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: left;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-name {
    font-weight: bold;
    font-size: 1.1rem;
}

.review-rating {
    color: #ffc107;
    font-size: 1.2rem;
}

.review-text {
    margin: 0;
    color: #555;
}

.review-form {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.review-form h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.rating-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.rating-stars span {
    font-size: 1.5rem;
    cursor: pointer;
    color: #ddd;
    transition: color 0.3s ease;
}

.rating-stars span.active {
    color: #ffc107;
}

.rating-stars span:hover,
.rating-stars span:hover ~ span {
    color: #ffc107;
}

textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    resize: vertical;
    min-height: 100px;
}

#contact {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.contact-info {
    text-align: center;
    margin-top: 20px;
}

.contact-link {
    display: inline-block;
    color: white; /* White text for links */
    text-decoration: none;
    font-size: 1.2rem;
    margin: 10px 0;
    padding: 10px 15px;
    border: 2px solid white; /* White border for links */
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: white; /* White background on hover */
    color: #007bff; /* Blue text on hover */
}

.contact-link .icon {
    margin-right: 10px;
}

#about-us {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.about-text h3 {
    font-size: 1.5rem;
    color: #007bff;
    margin-top: 20px;
    margin-bottom: 10px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.about-text ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.about-text ul li {
    margin-bottom: 10px;
    color: #333;
}

.about-gallery {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.about-gallery img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Specific size adjustments for About Us images */
.about-gallery img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

.about-gallery img:hover {
    transform: scale(1.05);
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-text, .about-gallery {
        min-width: 100%;
    }

    .about-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .about-text h3 {
        font-size: 1.3rem;
    }

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

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #ccc;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-text, .about-gallery {
        min-width: 100%;
    }

    .about-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #007bff;
}

.price-info {
    margin-top: 15px;
}

.confirm-price {
    display: inline-block;
    padding: 10px 15px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.confirm-price:hover {
    background: #0056b3;
}

/* General Responsive Styles */
@media (max-width: 768px) {
    /* Navigation Bar */
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    /* Home Section */
    #home h1 {
        font-size: 2rem;
    }

    #home p {
        font-size: 1rem;
    }

    /* Our Car Section */
    .car-container {
        flex-direction: column;
        align-items: center;
    }

    .car-item {
        width: 90%;
        margin-bottom: 20px;
    }

    /* Services Section */
    .service-item {
        width: 100%;
        margin-bottom: 20px;
    }

    /* About Us Section */
    #about-us {
        padding: 20px;
    }

    #about-us h2 {
        font-size: 1.8rem;
    }

    #about-us p {
        font-size: 1rem;
    }

    /* Contact Section */
    #contact {
        padding: 20px;
    }

    #contact h2 {
        font-size: 1.8rem;
    }

    #contact p {
        font-size: 1rem;
    }

    /* Reviews Section */
    .review-form {
        width: 90%;
    }

    .review-list {
        width: 90%;
    }

    /* Footer */
    footer {
        padding: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Home Section */
    #home h1 {
        font-size: 1.5rem;
    }

    #home p {
        font-size: 0.9rem;
    }

    /* About Us Section */
    #about-us h2 {
        font-size: 1.5rem;
    }

    #about-us p {
        font-size: 0.9rem;
    }

    /* Contact Section */
    #contact h2 {
        font-size: 1.5rem;
    }

    #contact p {
        font-size: 0.9rem;
    }

    /* Booking Modal */
    .modal {
        width: 95%;
        padding: 15px;
    }

    .form-group input,
    .form-group select {
        font-size: 14px;
    }

    .modal-buttons button {
        font-size: 14px;
    }
}

h1, h2, h3 {
    font-family: 'Arial', sans-serif;
    color: #333;
    margin-bottom: 20px;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#home {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
} 