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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background-color: #0f172a;
    background-image: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
}

/* Header Styles */
.header {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('assets/header-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 1rem 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* --- MODERN NAVBAR --- */
.nav-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
    padding: 1.1rem 4vw;
    position: fixed;
    width: 92vw;
    left: 50%;
    top: 2.2vw;
    transform: translateX(-50%);
    background: transparent;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 2.2rem;
    border: 1.5px solid rgba(255,255,255,0.10);
    z-index: 2500 !important;
    transition: background 0.3s, box-shadow 0.3s, border 0.3s;
}
.nav-container.scrolled {
    background: rgba(30, 40, 60, 0.85);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    border: 1.5px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    min-width: 0;
}
.logo img {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    background: #fff;
    object-fit: cover;
    border: 2px solid #3b82f6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.logo span {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.10);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-links {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    z-index: 3000 !important;
    position: static;
    flex-shrink: 0;
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.08rem;
    letter-spacing: 0.2px;
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    background: transparent;
    box-shadow: none;
}
.nav-links a:hover {
    background: rgba(96,165,250,0.13);
    color: #3b82f6;
    box-shadow: 0 2px 8px rgba(96,165,250,0.10);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: rgba(255,255,255,0.18);
    border: none;
    border-radius: 2rem;
    padding: 10px 12px;
    cursor: pointer;
    z-index: 1100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s;
}
.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 3.5px;
    background: #3b82f6;
    border-radius: 2px;
    transition: 0.3s;
}
.mobile-menu-btn:active, .mobile-menu-btn:focus {
    background: rgba(96,165,250,0.18);
}

@media (max-width: 1100px) {
    .nav-container {
        gap: 1.2rem;
        padding: 1rem 1vw;
    }
    .nav-links {
        gap: 1.2rem;
    }
    .logo span {
        font-size: 1.1rem;
    }
}

@media (max-width: 900px) {
    .nav-container {
        width: 96vw;
        padding: 1rem 2vw;
        top: 1vw;
        gap: 0.5rem;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        right: 2vw;
        background: rgba(30, 40, 60, 0.98);
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 2.5rem;
        border-radius: 18px;
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
        z-index: 1200;
        min-width: 180px;
        animation: slideDown 0.3s;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 600px) {
    .nav-container {
        width: 98vw;
        padding: 0.7rem 1vw;
        top: 0.5vw;
        gap: 0.2rem;
    }
    .logo img {
        height: 34px;
        width: 34px;
    }
    .logo span {
        font-size: 1rem;
    }
    .nav-links a {
        font-size: 0.98rem;
        padding: 0.5rem 0.9rem;
    }
}

.hero {
    text-align: center;
    padding: 120px 20px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1 !important;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.subheadline {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.trust-bar {
    margin-bottom: 2rem;
}

.google-reviews {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.google-reviews:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.stars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.stars i.fa-google {
    color: #4285F4;
    font-size: 1.2rem;
}

.star-rating {
    color: #FFD700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.trust-text {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
}

.badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(96,165,250,0.12);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #3b82f6;
    transition: all 0.3s ease;
    border: 1.5px solid #3b82f6;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.cta-container {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.cta-button.primary, .cta-button.secondary {
    height: 56px;
    padding: 0 2.4rem;
    font-size: 1.18rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-top: 0;
    min-width: 220px;
}

.cta-button.primary {
    background: linear-gradient(90deg, #3b82f6 60%, #60a5fa 100%);
    color: #fff;
    box-shadow: 0 6px 24px rgba(59,130,246,0.18), 0 1.5px 6px rgba(0,0,0,0.08);
    border-radius: 18px;
    border: none;
    font-size: 1.18rem;
    font-weight: 700;
    padding: 1.1rem 2.4rem;
    letter-spacing: 0.5px;
    transition: background 0.22s, box-shadow 0.22s, transform 0.18s;
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    text-shadow: 0 1.5px 6px rgba(59,130,246,0.10);
    text-decoration: none !important;
}
.cta-button.primary:hover, .cta-button.primary:focus {
    background: linear-gradient(90deg, #60a5fa 60%, #3b82f6 100%);
    box-shadow: 0 10px 32px rgba(59,130,246,0.22), 0 2px 8px rgba(0,0,0,0.10);
    transform: translateY(-2px) scale(1.04);
    color: #fff;
    outline: none;
    text-decoration: none !important;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 20px;
    }

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

    .subheadline {
        font-size: 1.2rem;
    }

    .cta-container {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
    }

    .badges {
        flex-direction: column;
        align-items: center;
    }

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

/* Video Section */
.video-section {
    display: none;
}

/* Testimonials Section */
.testimonials {
    background: #0f172a;
    padding: 80px 20px;
    text-align: center;
    color: #e2e8f0;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: #f1f5f9;
    margin-bottom: 50px;
}

.testimonial-slider {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-controls button {
    background: #3b82f6;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s;
    color: #fff;
}

.slider-controls button:hover {
    transform: scale(1.1);
    background: #60a5fa;
}

.view-more-reviews {
    display: inline-block;
    margin-top: 30px;
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.view-more-reviews:hover {
    background: #3b82f6;
    color: white;
}

/* Booking Section */
.booking-section {
    padding: 5rem 1rem;
    background: #0f172a;
}

.booking-section h2 {
    text-align: center;
    margin-bottom: 1.2rem;
    font-size: 2.2rem;
    font-weight: 700;
    color: #f1f5f9;
}

.booking-section .section-subtitle {
    text-align: center;
    margin-bottom: 2.2rem;
    font-size: 1.15rem;
    color: #cbd5e1;
    font-weight: 500;
}

.booking-container {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-group {
    flex: 1 1 0;
    position: relative;
    cursor: pointer;
}

.form-group select {
    min-width: 220px;
    width: 100%;
    max-width: 340px;
    font-size: 1.13rem;
    font-weight: 500;
    color: #e2e8f0;
    padding: 1.1rem 2.2rem 1.1rem 2.8rem;
    min-height: 48px;
    border: 1.5px solid #475569;
    border-radius: 12px;
    background: #334155 url('data:image/svg+xml;utf8,<svg fill="%233b82f6" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7.293 7.293a1 1 0 011.414 0L10 8.586l1.293-1.293a1 1 0 111.414 1.414l-2 2a1 1 0 01-1.414 0l-2-2a1 1 0 010-1.414z"/></svg>') no-repeat right 1.2rem center/1.2em 1.2em;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: border 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.form-group select:focus {
    border-color: #3b82f6;
    background-color: #475569;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}
.form-group select option {
    font-size: 1.13rem;
    font-weight: 500;
    color: #e2e8f0;
    padding: 8px 16px;
    background: #334155;
    border-bottom: 1px solid #475569;
}
.form-group select option:last-child {
    border-bottom: none;
}
.form-group select option:hover,
.form-group select option:focus {
    background: #475569;
}
@media (max-width: 600px) {
    .form-group select {
        min-width: 0;
        max-width: 100%;
        font-size: 1.08rem;
    }
}

.form-group input {
    width: 100%;
    padding: 1.1rem 1.1rem 1.1rem 2.5rem;
    border: 1.5px solid #475569;
    border-radius: 12px;
    font-size: 1.12rem;
    font-weight: 500;
    color: #e2e8f0;
    background: #334155;
    transition: border 0.2s, box-shadow 0.2s;
    margin-bottom: 0;
}

.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    background: #475569;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.form-group .input-icon {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: #3b82f6;
    font-size: 1.1rem;
    pointer-events: none;
}

.service-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.2rem;
}

@media (max-width: 600px) {
    .service-options {
        grid-template-columns: 1fr;
    }
}

.service-option {
    display: flex;
    flex-direction: column;
    padding: 1.1rem 1rem;
    border: 1.5px solid #475569;
    border-radius: 14px;
    cursor: pointer;
    background: #334155;
    transition: border 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: relative;
}

.service-option:hover,
.service-option:has(.service-checkbox:checked) {
    border-color: #3b82f6;
    background: #475569;
    box-shadow: 0 4px 16px rgba(59,130,246,0.2);
}

.service-name {
    font-weight: 600;
    color: #e2e8f0;
    font-size: 1.08rem;
    margin-bottom: 0.2rem;
}

.service-desc {
    font-size: 0.97rem;
    color: #cbd5e1;
}

.quote-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    background: #334155;
    border-radius: 12px;
    margin: 1rem 0 0.5rem 0;
    border: 1.5px solid #475569;
    font-size: 1.08rem;
}

.quote-label {
    font-size: 1.08rem;
    color: #cbd5e1;
    font-weight: 500;
}

.quote-amount {
    font-size: 2.1rem;
    font-weight: 700;
    color: #3b82f6;
}

.book-now-btn {
    background: linear-gradient(90deg, #3b82f6 60%, #60a5fa 100%);
    color: #fff;
    padding: 1.2rem;
    border: none;
    border-radius: 14px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 4px 16px rgba(59,130,246,0.10);
    margin-top: 0.5rem;
}

.book-now-btn:hover {
    background: linear-gradient(90deg, #60a5fa 60%, #3b82f6 100%);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgba(59,130,246,0.13);
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
    padding: 13px 18px;
    background: #475569;
    border-radius: 12px;
    color: #e2e8f0;
    font-weight: 600;
    font-size: 1.08rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: 1.5px solid #64748b;
}

.trust-badge i {
    color: #3b82f6;
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: #0f172a;
    color: #e2e8f0;
    padding: 4rem 1rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-section a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }

    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background: white;
        margin: 5px 0;
        transition: 0.3s;
    }

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

    .subheadline {
        font-size: 1.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* --- HERO LOGO --- */
.hero-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    border: 3px solid #3b82f6;
    background: #fff;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* --- TRUST BAR --- */
.trust-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1.1rem;
    margin-top: 0.5rem;
}
.stars {
    color: #ffd700;
    font-size: 1.5rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.trust-text {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 500;
    opacity: 0.92;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

/* --- BADGES --- */
.badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.badge {
    background: rgba(96,165,250,0.12);
    color: #3b82f6;
    border: 1.5px solid #3b82f6;
    border-radius: 20px;
    padding: 0.4rem 1.1rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    text-shadow: 0 1px 4px rgba(0,0,0,0.10);
    display: inline-block;
}
.badge.guarantee {
    background: linear-gradient(90deg, #3b82f6 60%, #e0f2fe 100%);
    color: #1e283c;
    border: none;
}
.badge.mobile {
    background: rgba(30, 40, 60, 0.18);
    color: #3b82f6;
    border: 1.5px solid #3b82f6;
}

/* --- SECONDARY CTA --- */
.secondary-cta {
    margin-top: 1.1rem;
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
    box-shadow: 0 2px 8px rgba(96,165,250,0.10);
    letter-spacing: 0.5px;
}
.secondary-cta:hover {
    background: #3b82f6;
    color: #fff;
    border: 2px solid #3b82f6;
}

/* --- SLIDESHOW BACKGROUND PREP --- */
.header-bg-slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0 !important;
    pointer-events: none;
}
.header-bg-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(.4,0,.2,1);
}
.header-bg-slide.active {
    opacity: 1;
}
.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 30, 60, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}
.hero, .nav-container {
    position: relative;
    z-index: 2;
}

@media (max-width: 600px) {
    .hero-logo {
        width: 60px;
        height: 60px;
    }
    .trust-bar .stars {
        font-size: 1.1rem;
    }
    .trust-bar .trust-text {
        font-size: 0.9rem;
    }
    .badges {
        flex-direction: column;
        gap: 0.5rem;
    }
    .badge {
        font-size: 0.9rem;
        padding: 0.3rem 0.7rem;
    }
    .secondary-cta {
        font-size: 0.95rem;
        padding: 0.7rem 1.2rem;
    }
}

/* --- BOOKING FORM SERVICE OPTIONS --- */
.service-options {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.3rem;
}
.service-options label {
    font-weight: 400;
    color: #e2e8f0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}
.service-checkbox {
    accent-color: #ffd700;
    width: 1.1rem;
    height: 1.1rem;
}
#vehicle-type {
    padding: 0.8rem;
    border: 1.5px solid #475569;
    border-radius: 5px;
    font-size: 1rem;
    background: #334155;
    color: #e2e8f0;
}

.testimonial-card {
    background: #1e293b;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    width: 100%;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
}

.testimonial-header {
    display: flex;
    padding: 2rem 2.5rem;
    gap: 2rem;
    align-items: center;
}

.testimonial-info {
    flex: 1;
    text-align: left;
}

.name {
    font-weight: 600;
    color: #f1f5f9;
    margin: 0 0 1rem;
    font-size: 1.3rem;
}

.stars {
    color: #FFD700;
    font-size: 1.4rem;
    letter-spacing: 3px;
}

.testimonial-image {
    width: 180px;
    height: 180px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-image:hover img {
    transform: scale(1.05);
}

.comment {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    padding: 0 2.5rem 2.5rem;
    text-align: left;
}

/* Remove all scrollbar related styles */
.testimonial-container::-webkit-scrollbar,
.testimonial-container::-webkit-scrollbar-track,
.testimonial-container::-webkit-scrollbar-thumb,
.testimonial-container::-webkit-scrollbar-thumb:hover {
    display: none;
}

@media (max-width: 768px) {
    .testimonial-container {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        min-width: unset;
    }

    .testimonial-header {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .testimonial-image {
        width: 140px;
        height: 140px;
    }

    .name {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .stars {
        font-size: 1.3rem;
    }

    .comment {
        font-size: 1rem;
        padding: 0 1.5rem 1.5rem;
    }
}

/* How It Works Section */
.how-it-works-section {
    padding: 5rem 1rem;
    background: #0f172a;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: #1e293b;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #334155;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: #334155;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(96,165,250,0.3);
}

.step-icon i {
    font-size: 2rem;
    color: #fff;
}

.step h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.step p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.how-it-works-section .cta-button {
    margin-top: 2rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

@media (max-width: 900px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step {
        padding: 1.5rem;
    }

    .step-icon {
        width: 70px;
        height: 70px;
    }

    .step-icon i {
        font-size: 1.8rem;
    }

    .step h3 {
        font-size: 1.3rem;
    }

    .step p {
        font-size: 1rem;
    }

    .how-it-works-section .cta-button {
        width: 100%;
        padding: 1rem 2rem;
    }
}

/* Services Page Styles */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(30, 40, 60, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    border-bottom: 1.5px solid rgba(255,255,255,0.18);
}

.services-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/services-header.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 180px 20px 100px;
    margin-bottom: 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.services-hero .subheadline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Quick Navigation */
.service-nav {
    background: white;
    padding: 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.service-nav .nav-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-item:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.nav-item i {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 8px;
}

.nav-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
    background: #f8f9fa;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(59,130,246,0.10);
    border: 2.5px solid #3b82f6;
    transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
}

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

.service-card.premium {
    border: 2px solid #3b82f6;
}

.service-header {
    background: linear-gradient(90deg, #e0f2fe 60%, #f8fafc 100%);
    color: #1e283c;
    padding: 30px;
    text-align: center;
    position: relative;
    border-bottom: 2px solid #e0f2fe;
}

.service-header i {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 15px;
}

.service-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #2563eb;
}

.price {
    font-size: 1.4rem;
    color: #3b82f6;
    font-weight: 600;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    color: #1e283c;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #444;
}

.service-features i {
    color: #3b82f6;
}

.service-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

.detail-item i {
    color: #3b82f6;
}

.book-service-btn {
    width: 100%;
    padding: 15px;
    background: #3b82f6;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-service-btn:hover {
    background: #60a5fa;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials {
    background: #0f172a;
    padding: 80px 20px;
    text-align: center;
    color: #e2e8f0;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: #f1f5f9;
    margin-bottom: 50px;
}

.view-more-reviews {
    display: inline-block;
    margin-top: 30px;
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.view-more-reviews:hover {
    background: #3b82f6;
    color: white;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Trust Badge */
.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    color: #666;
}

.trust-badge i {
    color: #3b82f6;
    font-size: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-hero {
        padding: 140px 20px 80px;
    }

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

    .services-hero .subheadline {
        font-size: 1.2rem;
    }

    .service-nav .nav-container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav-item {
        padding: 8px 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 40px 15px;
    }

    .service-header {
        padding: 20px;
    }

    .service-content {
        padding: 20px;
    }

    .final-cta {
        padding: 60px 20px;
    }

    .final-cta h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero .subheadline {
        font-size: 1.1rem;
    }

    .service-details {
        flex-direction: column;
        gap: 10px;
    }

    .final-cta h2 {
        font-size: 1.8rem;
    }
}

/* Mobile Car Detailing Intro Section - Two Column Layout */
.mobile-detailing-intro {
    background: #f7f8fa;
    padding: 64px 0 48px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.intro-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 48px;
    padding: 0 24px;
}
.intro-text {
    flex: 1 1 0;
    max-width: 520px;
}
.intro-headline {
    font-size: 2.3rem;
    font-weight: 700;
    color: #1e283c;
    margin-bottom: 18px;
    line-height: 1.15;
}
.intro-subheadline {
    font-size: 1.2rem;
    color: #3b4256;
    margin-bottom: 18px;
    font-weight: 500;
}
.intro-desc {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}
.intro-text .cta-button {
    margin-top: 8px;
}
.intro-image-container {
    flex: 1 1 0;
    max-width: 480px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.intro-image {
    width: 100%;
    max-width: 100%;
    border-radius: 18px;
    display: block;
}
.intro-image:hover {
    box-shadow: 0 8px 40px rgba(30,40,60,0.18);
}
.review-badge.right {
    position: absolute;
    right: 24px;
    bottom: 24px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(30,40,60,0.13);
    padding: 5px 12px 5px 7px;
    display: flex;
    align-items: center;
    min-width: 210px;
    max-width: 320px;
    z-index: 2;
    border: 1.5px solid #e5e7eb;
    font-size: 0.97rem;
}
.review-badge-row {
    display: flex;
    align-items: center;
    gap: 6px;
}
.review-cert {
    background: none;
    color: #3b82f6;
    font-size: 0.82em;
    font-weight: 500;
    border-radius: 0;
    padding: 0;
    margin-left: 0;
    margin-top: 2px;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 4px;
}
.review-cert::before {
    content: '\2022'; /* bullet point */
    color: #3b82f6;
    font-size: 1em;
    margin-right: 6px;
    display: inline-block;
}
.review-car-thumb {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    object-fit: cover;
    margin-right: 6px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 4px rgba(30,40,60,0.08);
}
.review-badge-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.review-badge-header {
    display: flex;
    align-items: center;
    gap: 5px;
}
.review-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #3b82f6;
    box-shadow: 0 1px 2px rgba(30,40,60,0.10);
}
.reviewer-name {
    font-weight: 600;
    color: #23262f;
    font-size: 0.98rem;
}
.review-score {
    color: #3b82f6;
    font-size: 0.97rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 2px;
}
.review-snippet {
    color: #3b4256;
    font-size: 0.93rem;
    font-style: italic;
    margin-top: 1px;
    line-height: 1.2;
    font-weight: 400;
    opacity: 0.92;
}
@media (max-width: 900px) {
    .intro-content {
        flex-direction: column;
        gap: 32px;
        align-items: stretch;
        padding: 0 10px;
    }
    .intro-image-container, .intro-text {
        max-width: 100%;
    }
    .intro-image {
        max-width: 100%;
    }
}
@media (max-width: 600px) {
    .mobile-detailing-intro {
        padding: 36px 0 24px 0;
    }
    .intro-headline {
        font-size: 1.35rem;
    }
    .intro-subheadline {
        font-size: 1.05rem;
    }
    .intro-desc {
        font-size: 0.97rem;
    }
    .review-badge.right {
        min-width: 140px;
        max-width: 200px;
        padding: 3px 6px 3px 4px;
        font-size: 0.85rem;
        right: 8px;
        bottom: 8px;
    }
    .review-car-thumb {
        display: none;
    }
    .review-avatar {
        width: 16px;
        height: 16px;
    }
    .reviewer-name {
        font-size: 0.85rem;
    }
    .review-score {
        font-size: 0.85rem;
    }
    .review-snippet {
        font-size: 0.80rem;
    }
}
.review-badge-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}
.review-cert {
    margin-left: 0;
    margin-top: 2px;
}
.review-badge-top {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.intro-slider {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-track {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.slide {
    display: none;
    position: relative;
    width: 100%;
    transition: opacity 0.4s;
}
.slide.active {
    display: block;
}
.slider-btn {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(30,40,60,0.10);
    margin: 0 8px;
    transition: background 0.2s;
}
.slider-btn:hover {
    background: #e0f2fe;
}
@media (max-width: 600px) {
    .intro-image-container {
        padding: 0 8px 16px 0;
        box-sizing: border-box;
    }
    .slide {
        padding: 0;
    }
}

.flatpickr-calendar {
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(59,130,246,0.13) !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.08rem !important;
    background: #fff !important;
    border: none !important;
    padding: 10px 0 !important;
}

.flatpickr-day.selected {
    background: #3b82f6;
    border-color: #3b82f6;
}

.flatpickr-day:hover {
    background: #60a5fa;
    border-color: #60a5fa;
}

.flatpickr-time {
    background: #fff !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.08rem !important;
    padding: 16px 0 !important;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.flatpickr-time input {
    font-size: 1.5rem !important;
    padding: 10px 18px !important;
    border-radius: 8px;
    min-width: 70px;
    text-align: center;
    background: #f8faff !important;
    border: 1.5px solid #e0e0e0 !important;
}

.flatpickr-am-pm {
    font-size: 1.3rem !important;
    font-weight: 700;
    padding: 10px 18px !important;
    border-radius: 8px;
    margin-left: 18px;
    background: #e0f2fe !important;
    color: #3b82f6 !important;
    min-width: 60px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none !important;
}

.flatpickr-months .flatpickr-month {
    background: #333;
    color: #fff;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: #333;
    color: #fff;
}

.flatpickr-weekdays {
    background: #333;
}

.flatpickr-weekday {
    color: #fff;
    opacity: 0.8;
}

#date-time-picker {
    cursor: pointer;
    background: #fff;
}

.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(30, 40, 60, 0.55);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}
.modal-content {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(30,40,60,0.18);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 400px;
    width: 95vw;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    animation: fadeInModal 0.3s;
}
@keyframes fadeInModal {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #3b4256;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}
.modal-close:hover {
    color: #3b82f6;
}
.modal-content h3 {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e283c;
    text-align: center;
}
.modal-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.7rem;
}
.modal-form-group label {
    font-size: 1.05rem;
    font-weight: 500;
    color: #3b4256;
}
.modal-form-group input {
    padding: 0.9rem 1rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1.08rem;
    font-weight: 500;
    color: #1e283c;
    background: #f8faff;
    transition: border 0.2s, box-shadow 0.2s;
}
.modal-form-group input:focus {
    border-color: #3b82f6;
    background: #fff;
    box-shadow: 0 0 0 2px #e0f2fe;
    outline: none;
}

@media (min-width: 769px) {
    .cta-container .cta-button {
        height: 64px;
        padding-top: 0;
        padding-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1.2;
    }
}

#load-more-testimonials {
    display: none;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 0;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #3b82f6;
    outline: none;
    transition: color 0.2s, transform 0.2s;
}
#load-more-testimonials:hover {
    color: #2563eb;
    transform: translateY(3px) scale(1.15);
}

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

#show-less-testimonials {
    display: none;
    align-items: center;
    justify-content: center;
    margin: 0;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #3b82f6;
    outline: none;
    transition: color 0.2s, transform 0.2s;
}

#show-less-testimonials:hover {
    color: #2563eb;
    transform: translateY(3px) scale(1.15);
}

.form-group textarea {
    width: 100%;
    padding: 1.1rem 1.1rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1.12rem;
    font-weight: 500;
    color: #1e283c;
    background: #f8faff;
    transition: border 0.2s, box-shadow 0.2s;
    min-height: 120px;
    resize: vertical;
    font-family: 'Poppins', sans-serif;
}

.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: #fff;
    box-shadow: 0 0 0 2px #e0f2fe;
}

.message-group {
    margin-top: 0.5rem;
}

.message-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: #3b4256;
}

.modal-form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1.08rem;
    font-weight: 500;
    color: #1e283c;
    background: #f8faff;
    transition: border 0.2s, box-shadow 0.2s;
    min-height: 100px;
    resize: vertical;
    font-family: 'Poppins', sans-serif;
}

.modal-form-group textarea:focus {
    border-color: #3b82f6;
    background: #fff;
    box-shadow: 0 0 0 2px #e0f2fe;
    outline: none;
}

.thank-you-content {
    text-align: center;
    padding: 2.5rem 2rem;
    max-width: 420px;
}

.thank-you-icon {
    font-size: 4rem;
    color: #3b82f6;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s ease;
}

.thank-you-content h3 {
    font-size: 1.8rem;
    color: #1e283c;
    margin-bottom: 1rem;
}

.thank-you-content p {
    font-size: 1.1rem;
    color: #3b4256;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.thank-you-content .response-time {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.thank-you-content .book-now-btn {
    width: 100%;
    margin-top: 1rem;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .thank-you-content {
        padding: 2rem 1.5rem;
    }
    
    .thank-you-icon {
        font-size: 3rem;
    }
    
    .thank-you-content h3 {
        font-size: 1.5rem;
    }
    
    .thank-you-content p {
        font-size: 1rem;
    }
}

/* --- Booking Section Improvements --- */
@media (max-width: 900px) {
  .booking-container {
    padding: 1.5rem 0.5rem;
    max-width: 98vw;
  }
}
@media (max-width: 600px) {
  .booking-section {
    padding: 2.5rem 0.2rem;
  }
  .booking-container {
    padding: 1.2rem 0.2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(30,40,60,0.08);
  }
  .booking-form {
    gap: 1.1rem;
  }
  .form-row {
    flex-direction: column !important;
    gap: 0.7rem;
    align-items: center;
  }
  .form-group {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
  }
  .form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: #1e283c;
  }
  .form-group input,
  .form-group select {
    font-size: 1.05rem;
    padding: 1rem 1rem 1rem 2.2rem;
    min-height: 44px;
  }
  .service-options {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    margin-top: 0.5rem;
  }
  .service-option {
    padding: 0.9rem 0.7rem;
    border-radius: 10px;
  }
  .quote-display {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 1rem 0.5rem;
    margin: 0.7rem 0 0.5rem 0;
    font-size: 1.01rem;
  }
  .book-now-btn {
    width: 100%;
    font-size: 1.13rem;
    padding: 1.1rem 0;
    border-radius: 2rem;
    margin-top: 0.5rem;
  }
}

/* Form Styles with Icons */
.form-group label i {
    margin-right: 8px;
    color: #3b82f6;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon .input-icon {
    position: absolute;
    left: 12px;
    color: #3b82f6;
    pointer-events: none;
}

.input-with-icon input,
.input-with-icon select {
    padding-left: 35px;
}

select option {
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

select option i {
    margin-right: 8px;
    color: #3b82f6;
}

select optgroup {
    font-weight: 600;
    color: #1e283c;
}

select optgroup option {
    font-weight: normal;
    color: #333;
}

/* Style for the select dropdown */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 35px;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background: #0f172a;
}

/* Section Titles */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #f1f5f9;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #cbd5e1;
    text-align: center;
    margin-bottom: 2rem;
}

/* Form Section Styles */
.form-section {
    background: #1e293b;
    border-radius: 18px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section-heading {
    font-size: 1.4rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.8rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .form-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .section-heading {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .form-section {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .section-heading {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
} 
