/* --- Reset --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: sans-serif; background-color: #fff; }

/* --- Desktop Header (Default) --- */
.main-header { 
    display: flex; justify-content: space-between; align-items: center; 
    padding: 20px 5%; border-bottom: 2px solid #0056b3; 
}
.logo a { font-size: 24px; font-weight: 900; color: #0056b3; text-decoration: none; }
.nav-menu { display: flex; gap: 30px; }
.nav-menu a { text-decoration: none; color: #333; font-weight: 600; text-transform: uppercase; font-size: 14px; }
.header-actions { display: flex; align-items: center; gap: 15px; }
.btn-phone { font-weight: 800; color: #0056b3; text-decoration: none; }
.btn-book { background: #0056b3; color: #fff; padding: 10px 20px; border-radius: 4px; text-decoration: none; font-weight: 700; }

/* --- Hero Section --- */
.hero-wrapper { display: flex; width: 100%; min-height: 500px; }
.hero-slider { flex: 2; background: #333; }
.hero-form { flex: 1; padding: 40px; background: #f4f4f4; border-left: 1px solid #ddd; }

/* --- Single Media Query for Mobile (The "All-in-One" Fix) --- */
/* --- Updated Mobile Fix --- */
@media (max-width: 768px) {
    /* Header Container fix */
    .main-header { 
        flex-direction: column !important; 
        align-items: center !important; 
        width: 100% !important;
        padding: 15px !important; 
        gap: 10px !important;
    }
    
    /* Nav Menu fix */
    .nav-menu { 
        flex-direction: row !important; 
        justify-content: center !important;
        flex-wrap: wrap !important; 
        gap: 15px !important; 
        width: 100% !important;
    }

    /* Actions fix */
    .header-actions { 
        flex-direction: row !important; 
        width: 100% !important;
        justify-content: center !important;
        gap: 10px !important;
    }

    /* Hero section fix */
    .hero-wrapper { flex-direction: column !important; }
    .hero-slider, .hero-form { width: 100% !important; }
}

/* --- Hero Wrapper - Flex Layout --- */
.hero-wrapper {
    display: flex;
    width: 100%;
    margin-bottom: 0 !important; /* Extra gap hatane ke liye */
}
/* Slider Area ki height fixed karo */
.slider-area {
    flex: 2;
    background: #333;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    background-size: cover;
    background-position: center;
}

/* Har slide ka style */
.hero-slide { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-size: cover; 
    background-position: center;
    opacity: 0; 
    transition: opacity 1s ease-in-out;
}

.hero-slide.active { opacity: 1; }

/* Text box ko slider ke upar lao */
.slider-text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 10;
}

/* Calculator Container - Modern Look */
.calc-area {
    flex: 1;
    padding: 40px;
    background: #fff;
    border-left: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Heading Styling */
.calc-area h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 800;
    border-left: 5px solid #0056b3;
    padding-left: 15px;
}

/* Input Fields - Interactive Look */
.calc-area input, .calc-area select {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.3s;
}

.calc-area input:focus, .calc-area select:focus {
    border-color: #0056b3;
    outline: none;
    box-shadow: 0 0 8px rgba(0,86,179,0.2);
}

/* Price Box - Highlighting the value */
.price-box {
    background: #f8fbff;
    padding: 25px;
    text-align: center;
    border: 2px dashed #0056b3;
    border-radius: 10px;
    margin: 20px 0;
}

.price-box span { font-size: 12px; color: #666; font-weight: 700; letter-spacing: 1px; }
#total { font-size: 42px; font-weight: 900; color: #0056b3; margin-top: 5px; }

/* Call to Action Button - Hover Effect */
button[type="submit"] {
    width: 100%;
    padding: 18px;
    background: #0056b3;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,86,179,0.3);
}

button[type="submit"]:hover {
    background: #004494;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,86,179,0.4);
}

/* Mobile Responsive Fix */
@media (max-width: 768px) {
    .hero-wrapper { flex-direction: column; }
    .slider-area { min-height: 300px; }
}

/* Logo Slider Section */
.logo-slider-section {
    width: 100%;
    margin-top: 0 !important;
    padding-top: 20px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    display: flex;
}

.marquee-track {
    display: flex;
    gap: 60px; /* Logos ke beech ki doori */
    animation: scroll 20s linear infinite;
    align-items: center;
}

/* Logos ko chota aur clean karne ke liye */
.logo-card {
    flex: 0 0 auto; /* Logos ko dabne mat do */
    height: 60px;   /* Fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-card img {
    height: 40px;
    width: auto;
    /* Yeh property image ko black bana degi */
    filter: brightness(0) saturate(100%); 
    transition: 0.3s;
}

.logo-card img:hover {
    filter: none;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Premium package ko thoda upar uthane ke liye */
.price-card:nth-child(3) {
    border: 2px solid #0056b3 !important;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .price-card:nth-child(3) { transform: scale(1); }
}

.testimonial-section {
    padding: 80px 5%; /* Side se thoda space dega */
    background: #fdfdfd;
}
.reviews-header { margin-bottom: 40px; }
.swiper { width: 100%; padding-bottom: 50px; }
.swiper-slide {
    height: auto; /* Height auto rahegi toh content ke hisaab se stretch hoga */
    padding: 40px; /* Andar ki space badha di */
    border: 1px solid #eee;
    border-radius: 20px; /* Corners round kiye */
    transition: 0.3s;
}
.swiper-slide:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); /* Hover par premium shadow */
}
.stars { color: #f39c12; margin-bottom: 15px; }
.google-badge { display: flex; align-items: center; margin-top: 10px; font-size: 0.8rem; color: #666; }

.reviews-header {
    text-align: center; /* Heading ko center karne ka main command */
    margin-bottom: 40px;
}

.reviews-header h2 {
    margin-bottom: 10px;
    font-size: 2rem;
}

.reviews-header p {
    max-width: 600px;
    margin: 0 auto; /* Paragraph ko bhi center karega */
}

/* Gallery section spacing */
.mySwiper { padding-bottom: 50px !important; }

/* Lightbox cursor fix */
#lightbox { cursor: pointer; }
#lightbox img { box-shadow: 0 0 20px rgba(255,255,255,0.2); }

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin: 10px 0;
}

.section-header span {
    color: #0056b3;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
}

.feature-card {
    padding: 40px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #f1f5f9;
}

.feature-card h3 { color: #0056b3; margin-bottom: 15px; }

.price-tag { 
    font-size: 1.5rem; 
    font-weight: bold; 
    color: #0056b3; 
    margin: 15px 0; 
}

.contact-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 { color: #0056b3; margin-bottom: 20px; }
.contact-info p { margin-bottom: 15px; font-size: 1.1rem; }

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
}

.contact-form button {
    background: #0056b3;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

/* Mobile ke liye responsive fix */
@media (max-width: 768px) {
    .contact-container {
        display: block !important; /* Grid hata kar block kar do */
        width: 95% !important;
        margin: 0 auto;
    }
    .contact-form input, .contact-form textarea {
        width: 100% !important; /* Inputs screen ke hisaab se set ho jayenge */
    }
}

/* Compact & Modern Calculator Design */
    .calc-wrapper {
        max-width: 850px;
        margin: 20px auto;
        background: #ffffff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        font-family: 'Segoe UI', Roboto, sans-serif;
        display: flex;
        flex-wrap: wrap;
        border: 1px solid #eee;
    }

    .calc-form-part {
        flex: 1.2;
        padding: 25px;
        min-width: 300px;
    }

    .calc-summary-part {
        flex: 1;
        background: #f8f9fa;
        padding: 25px;
        min-width: 280px;
        display: flex;
        flex-direction: column;
        border-left: 1px solid #eee;
    }

    .calc-title {
        font-size: 1.4rem;
        font-weight: 800;
        margin-bottom: 20px;
        color: #222;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .input-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 12px;
    }

    .calc-input, .calc-select {
        width: 100%;
        padding: 12px;
        border: 1.5px solid #e1e1e1;
        border-radius: 8px;
        font-size: 0.9rem;
        transition: 0.3s;
    }

    .calc-input:focus, .calc-select:focus {
        border-color: #d4af37;
        outline: none;
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    }

    .addons-title {
        font-size: 0.85rem;
        font-weight: 700;
        color: #d4af37;
        margin: 15px 0 10px;
        text-transform: uppercase;
    }

    .addon-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .addon-label {
        background: #fff;
        border: 1px solid #eee;
        padding: 10px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        font-size: 0.85rem;
        cursor: pointer;
        transition: 0.2s;
    }

    .addon-label:hover { border-color: #d4af37; }

    .addon-label input { margin-right: 10px; accent-color: #d4af37; }

    #detail-list {
        list-style: none;
        padding: 0;
        margin: 15px 0;
        font-size: 0.8rem;
        color: #555;
        flex-grow: 1;
        max-height: 150px;
        overflow-y: auto;
    }

    #detail-list li {
        padding: 5px 0;
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
    }

    #detail-list li::before {
        content: '✓';
        color: #d4af37;
        margin-right: 8px;
        font-weight: bold;
    }

    .price-display {
        text-align: center;
        margin-top: auto;
        padding-top: 20px;
    }

    .total-label { font-size: 0.7rem; color: #888; letter-spacing: 1px; }
    #total { font-size: 2.2rem; font-weight: 800; color: #d4af37; line-height: 1; margin: 5px 0; }

    .book-now-btn {
        width: 100%;
        background: #d4af37;
        color: #fff;
        border: none;
        padding: 15px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 1rem;
        cursor: pointer;
        text-transform: uppercase;
        transition: 0.3s;
        margin-top: 15px;
    }

    .book-now-btn:hover { background: #b8860b; transform: translateY(-2px); }

    @media (max-width: 600px) {
        .calc-summary-part { border-left: none; border-top: 1px solid #eee; }
        .input-group { grid-template-columns: 1fr; }
    }
    
    /* Blue Theme FAQ Styling */
    .faq-section-blue { 
        padding: 80px 20px; 
        background: #ffffff; 
        font-family: 'Segoe UI', sans-serif;
    }
    .faq-title { 
        text-align: center; 
        color: #0d1b2a; 
        margin-bottom: 50px; 
        font-size: 2.2rem; 
        font-weight: 800; 
        text-transform: uppercase;
    }
    .faq-title span { color: #0056b3; }
    
    .faq-wrapper { max-width: 850px; margin: 0 auto; }
    
    .faq-card { 
        background: #f8f9fa; 
        border: 1px solid #e2e8f0; 
        border-radius: 12px; 
        margin-bottom: 15px; 
        overflow: hidden; 
        transition: 0.3s;
    }
    .faq-card:hover { border-color: #0056b3; box-shadow: 0 5px 15px rgba(0,86,179,0.05); }

    .faq-btn {
        width: 100%;
        padding: 22px 25px;
        background: none;
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.1rem;
        font-weight: 700;
        color: #1a2b48;
        cursor: pointer;
        text-align: left;
    }

    .faq-btn:hover { color: #0056b3; }
    
    .blue-plus { 
        font-size: 1.5rem; 
        color: #0056b3; 
        transition: transform 0.3s ease; 
        font-weight: bold;
    }

    .faq-content {
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease-out;
        padding: 0 25px;
        color: #4a5568;
        line-height: 1.7;
        font-size: 1rem;
    }

    /* Active State */
    .faq-card.active { border-left: 5px solid #0056b3; background: #fff; }
    .faq-card.active .faq-content { max-height: 250px; padding-bottom: 25px; }
    .faq-card.active .blue-plus { transform: rotate(45deg); color: #0d1b2a; }
    
    :root {
        --primary-blue: #0056b3;
        --dark-navy: #0d1b2a;
        --light-bg: #f8fafc;
    }

    .about-hero {
        background: linear-gradient(rgba(13, 27, 42, 0.8), rgba(13, 27, 42, 0.8)), url('https://images.unsplash.com/photo-1520340356584-f9917d1eea6f?auto=format&fit=crop&q=80'); /* Car detailing image background */
        background-size: cover;
        background-position: center;
        padding: 100px 20px;
        text-align: center;
        color: #fff;
    }

    .about-hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 10px; }
    .about-hero p { color: #33ccff; font-size: 1.2rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }

    .content-section { padding: 80px 20px; max-width: 1100px; margin: 0 auto; }
    
    .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 80px; }

    .about-text h2 { color: var(--dark-navy); font-size: 2.2rem; margin-bottom: 20px; position: relative; }
    .about-text h2::after { content: ''; display: block; width: 60px; height: 4px; background: var(--primary-blue); margin-top: 10px; }
    .about-text p { color: #4a5568; line-height: 1.8; margin-bottom: 20px; font-size: 1.1rem; }

    .image-box { position: relative; }
    .image-box img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
    .experience-badge { 
        position: absolute; bottom: -20px; right: -20px; 
        background: var(--primary-blue); color: #fff; padding: 25px; 
        border-radius: 15px; text-align: center; font-weight: 800;
        box-shadow: 0 10px 20px rgba(0,86,179,0.3);
    }

    .stats-bar { 
        background: var(--dark-navy); padding: 50px 20px; color: #fff; 
        display: flex; justify-content: space-around; flex-wrap: wrap; text-align: center;
        border-radius: 20px; margin-top: 50px;
    }
    .stat-item h3 { font-size: 2.5rem; color: #33ccff; margin-bottom: 5px; }
    .stat-item p { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

    @media (max-width: 768px) {
        .grid-2 { grid-template-columns: 1fr; text-align: center; }
        .about-text h2::after { margin: 10px auto; }
        .about-hero h1 { font-size: 2rem; }
    }
    
    :root { --main-blue: #0056b3; --deep-navy: #0d1b2a; --text-gray: #4a5568; }

    /* Hero Section */
    .services-hero {
        background: linear-gradient(rgba(0, 86, 179, 0.9), rgba(13, 27, 42, 0.9)), url('https://images.unsplash.com/photo-1520340356584-f9917d1eea6f?auto=format&fit=crop&q=80');
        padding: 80px 20px; text-align: center; color: #fff;
    }
    .services-hero h1 { font-size: 3rem; margin-bottom: 15px; font-weight: 800; }
    .services-hero p { font-size: 1.1rem; max-width: 700px; margin: 0 auto; opacity: 0.9; }

    /* Service Card Layout */
    .services-grid { max-width: 1200px; margin: -50px auto 50px; padding: 0 20px; display: grid; gap: 30px; }
    
    .service-card {
        background: #fff; border-radius: 20px; overflow: hidden; display: flex; 
        box-shadow: 0 15px 35px rgba(0,0,0,0.1); border: 1px solid #e2e8f0;
    }
    .service-img { width: 40%; background-size: cover; background-position: center; min-height: 300px; }
    .service-info { width: 60%; padding: 40px; }
    
    .service-info h2 { color: var(--deep-navy); font-size: 1.8rem; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
    .service-info h2 i { color: var(--main-blue); }
    .service-info p { color: var(--text-gray); line-height: 1.7; margin-bottom: 20px; }
    
    .service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; list-style: none; padding: 0; margin-bottom: 25px; }
    .service-features li { font-size: 0.9rem; font-weight: 600; color: #2d3748; display: flex; align-items: center; gap: 8px; }
    .service-features li::before { content: '✓'; color: var(--main-blue); font-weight: 900; }

    .btn-service { 
        display: inline-block; padding: 12px 30px; background: var(--main-blue); color: #fff; 
        text-decoration: none; border-radius: 50px; font-weight: 700; transition: 0.3s;
    }
    .btn-service:hover { background: var(--deep-navy); transform: translateY(-3px); }

    /* SEO Content Section */
    .seo-content { background: #f8fafc; padding: 60px 20px; text-align: center; }
    .seo-text { max-width: 900px; margin: 0 auto; color: var(--text-gray); line-height: 1.8; }

    @media (max-width: 900px) {
        .service-card { flex-direction: column; }
        .service-img, .service-info { width: 100%; }
        .service-features { grid-template-columns: 1fr; }
    }
    
    .service-area-section {
        padding: 60px 20px;
        background: #f1f5f9; /* Light Blue/Gray background */
        border-top: 5px solid #0056b3;
        font-family: 'Segoe UI', sans-serif;
    }
    .area-container {
        max-width: 1100px;
        margin: 0 auto;
        text-align: center;
    }
    .area-header h2 {
        color: #0d1b2a;
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 10px;
    }
    .area-header p {
        color: #0056b3;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 40px;
    }
    .area-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    .area-box {
        background: #fff;
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0,86,179,0.05);
        transition: 0.3s;
        border: 1px solid #e2e8f0;
    }
    .area-box:hover {
        transform: translateY(-5px);
        border-color: #0056b3;
    }
    .area-box i {
        font-size: 1.5rem;
        color: #0056b3;
        margin-bottom: 15px;
        display: block;
    }
    .area-box h4 {
        color: #1a2b48;
        margin-bottom: 10px;
        font-size: 1.1rem;
    }
    .area-box p {
        font-size: 0.85rem;
        color: #718096;
        line-height: 1.5;
        margin: 0;
    }
    .area-footer-text {
        margin-top: 40px;
        color: #4a5568;
        font-style: italic;
        font-size: 0.95rem;
    }