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

a, button {
    -webkit-tap-highlight-color: rgba(200, 217, 45, 0.3);
}

html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

:root {
    --accent: #c8d92d;
    --accent-dark: #a9bb1f;
    --bg-main: #f8f7f4;
    --bg-section: #fdfcf9;
    --bg-card: #ffffff;
}

:root {
    --header-height: 86px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background-color: var(--bg-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

img {
    max-width: 100%;
    height: auto;
}

body.no-scroll {
    overflow: hidden;
}

/* Header Styles */
.header {
    display: flex;
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    background-color: var(--bg-card);
    transition: transform 0.3s ease;
    z-index: 20;
    align-items: center;
    justify-content: space-between;
}

.header-hidden {
    transform: translateY(-100%);
}

.header-left {
    width: auto;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 14px;
    min-width: 0;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.logo-icon {
    width: auto;
    height: 68px;
    flex-shrink: 0;
    max-width: clamp(140px, 34vw, 260px);
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.header-right {
    width: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 14px;
    overflow: hidden;
    background-color: transparent;
    min-width: 0;
}

.header-right::before {
    display: none;
}

.header-right::after {
    display: none;
}

.header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    position: relative;
    z-index: 2;
    flex-wrap: nowrap;
}

.btn-menu,
.btn-book-service {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    min-height: 40px;
    border-radius: 25px;
    border: 2px solid white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.btn-menu {
    background-color: #2C2C2C;
    color: white;
    border-color: white;
}

.btn-menu:hover {
    background-color: #3C3C3C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-book-service {
    background-color: var(--accent);
    color: #111827;
    border-color: var(--accent);
}

.btn-book-service:hover {
    background-color: var(--accent-dark);
    color: #111827;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-menu svg,
.btn-book-service svg {
    flex-shrink: 0;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    z-index: 150;
    display: none;
    align-items: flex-start;
    justify-content: flex-end;
    padding: calc(var(--header-height) + 24px) 24px 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.is-open {
    display: flex;
    opacity: 1;
}

.menu-panel {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 0;
    min-width: 300px;
    max-width: 340px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.menu-panel-header {
    padding: 24px 28px 20px;
    border-bottom: 2px solid var(--accent);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.menu-panel-title {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.menu-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    color: #6b7280;
    line-height: 1;
    transition: all 0.2s ease;
}

.menu-close:hover {
    background: var(--accent);
    color: #111827;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
}

.menu-link {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
}

.menu-link::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.menu-link:hover {
    color: var(--accent);
    background: rgba(200, 217, 45, 0.08);
    border-left-color: var(--accent);
}

.menu-link:hover::before {
    opacity: 1;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - var(--header-height));
    padding: 40px 60px;
    padding-top: calc(var(--header-height) + 40px);
    background-color: var(--bg-main);
    max-width: 100%;
    overflow-x: hidden;
}

/* Max-width container for large PC screens */
@media (min-width: 1400px) {
    .main-content {
        max-width: 1400px;
        margin: 0 auto;
    }
}

/* Hero Section */
.hero {
    display: flex;
    gap: 30px;
    align-items: stretch;
    position: relative;
    padding-top: 10px;
    margin-bottom: 220px;
}

.hero-slider {
    flex: 1;
    width: 100%;
}

.hero-form {
    position: absolute;
    top: 20px;
    right: 40px;
    transform: none;
    width: min(386px, 83%);
    z-index: 5;
}

/* Slider */
.slider {
    position: relative;
    background: #e8e6e3;
    border-radius: 24px;
    overflow: hidden;
    height: 520px;
    width: 100%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    padding: 0;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide.is-active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    object-position: center;
}

.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.35) 100%);
}

.slide-caption {
    position: absolute;
    left: 40px;
    bottom: 40px;
    color: #ffffff;
    z-index: 2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}


.slide-caption h2 {
    font-size: 34px;
    margin-bottom: 6px;
}

.slide-caption p {
    font-size: 18px;
    opacity: 0.9;
}


/* Form Card */
.form-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

.form-card form {
    overflow-y: auto;
    padding-right: 6px;
}

.form-multistep {
    overflow: visible;
}

.form-step-indicator {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 16px;
}

.form-step-indicator .form-step-current {
    font-weight: 700;
    color: #111827;
}

.form-step {
    display: none;
}

.form-step.is-active {
    display: block;
}

.form-nav {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
}

.form-btn-back,
.form-btn-next {
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    font-family: inherit;
}

.form-btn-back {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #374151;
    margin-right: auto;
}

.form-btn-back:hover {
    background: #e5e7eb;
}

.form-btn-next {
    background: var(--accent);
    border: none;
    color: #111827;
}

.form-btn-next:hover {
    background: var(--accent-dark);
    color: #111827;
}

.form-nav .form-submit {
    margin-top: 0;
}

.form-card h3 {
    font-size: 24px;
    margin-bottom: 6px;
    color: #2c2c2c;
}

.form-subtitle {
    color: #6b7280;
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin: 16px 0 8px;
    color: #2c2c2c;
}

/* Red asterisk for required fields - must be clearly visible in red */
.form-label.required::after,
span.form-label.required::after,
.form-card .form-label.required::after,
.form-card span.form-label.required::after,
.modal .form-label.required::after,
.modal span.form-label.required::after {
    content: '*';
    color: #b91c1c !important;
    font-weight: 700 !important;
    margin-left: 2px;
    font-size: inherit;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    outline: none;
    font-size: 14px;
}

.form-control.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.form-error {
    display: none;
    font-size: 12px;
    color: #dc2626;
    margin-top: 4px;
}

.form-error.is-visible {
    display: block;
}

.form-control:focus {
    border-color: #32cd32;
    box-shadow: 0 0 0 3px rgba(50, 205, 50, 0.15);
}

.form-group {
    margin-top: 10px;
}

.pill-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pill-group-stack {
    flex-direction: column;
}

/* Type of service - styled button options */
.service-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 8px;
}

.service-type-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s ease;
}

.service-type-option::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.service-type-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.service-type-option:has(input:checked) {
    background: var(--accent);
    border-color: var(--accent);
    color: #111827;
}

.service-type-option:has(input:checked)::before {
    background: #111827;
}

.service-type-option:hover:not(:has(input:checked)) {
    background: #e5e7eb;
}

.service-type-text {
    flex: 1;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    cursor: pointer;
    font-size: 14px;
}

.pill input {
    accent-color: #32cd32;
}

.form-submit {
    width: 100%;
    margin-top: 20px;
    padding: 12px 16px;
    border-radius: 12px;
    border: none;
    background: var(--accent);
    color: #111827;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
}

.form-submit:hover {
    background: var(--accent-dark);
    color: #111827;
}

/* Responsive Design - Tablet & Mobile */
@media (max-width: 1024px) {
    .main-content {
        padding: 24px 20px;
        padding-top: calc(var(--header-height) + 24px);
    }

    .hero {
        margin-bottom: 180px;
    }

    .hero-form {
        right: 20px;
        width: min(368px, 98%);
    }

    .slide-caption h2 {
        font-size: 28px;
    }

    .slide-caption p {
        font-size: 16px;
    }

    .locator-image-text h2 {
        font-size: 30px;
    }

    .carwash-content {
        padding: 30px 24px;
    }

    .carwash-header h2 {
        font-size: 28px;
    }

    .carwash-cards {
        gap: 12px;
    }

    .carwash-service-card {
        min-width: 140px;
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: row;
        height: var(--header-height);
    }

    .header-left,
    .header-right {
        width: auto;
    }

    .header-left {
        padding: 10px 12px;
    }

    .header-right {
        padding: 10px 12px;
        justify-content: flex-end;
    }

    .logo-container {
        justify-content: center;
    }

    .logo-icon {
        height: 62px;
    }

    .header-buttons {
        flex-direction: row;
        width: auto;
        gap: 8px;
    }

    .btn-menu,
    .btn-book-service {
        padding: 7px 12px;
        min-height: 38px;
        font-size: 13px;
    }

    .main-content {
        padding: 16px 12px;
        padding-top: calc(var(--header-height) + 16px);
    }

    .hero {
        flex-direction: column;
        margin-bottom: 40px;
        gap: 20px;
    }

    .slider {
        height: 280px;
        border-radius: 16px;
    }

    .hero-form {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
    }

    .form-card {
        height: auto;
        min-height: 400px;
    }

    .slide-caption {
        left: 20px;
        bottom: 20px;
    }

    .slide-caption h2 {
        font-size: 22px;
    }

    .slide-caption p {
        font-size: 14px;
    }

    .locator-image {
        padding: 24px 16px;
    }

    .locator-image-text h2 {
        font-size: 24px;
    }

    .locator-car-grid img {
        height: 160px;
        min-height: 160px;
    }

    .carwash {
        min-height: 320px;
    }

    .carwash-content {
        padding: 24px 16px;
    }

    .carwash-header h2 {
        font-size: 24px;
    }

    .carwash-packages {
        padding: 24px 16px;
    }

    .carwash-packages-header h2 {
        font-size: 24px;
    }

    .plans-header h2 {
        font-size: 24px;
    }

    .ludhiana-serve {
        padding: 24px 16px;
    }

    .ludhiana-serve h2 {
        font-size: 22px;
    }

    .comparison-section .comparison-table-wrap {
        padding: 12px;
    }

    .comparison-table {
        font-size: 12px;
        min-width: 400px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 8px 10px;
    }

    .book-cta-section {
        padding: 32px 20px;
    }

    .book-cta-section h2 {
        font-size: 22px;
    }

    .book-cta-list li a {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* Image Section */
.locator-image {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
    background: var(--bg-section);
    border-radius: 24px;
    padding: 40px;
}

.locator-image-text h2 {
    font-size: 36px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #111827;
}

.locator-image-text h2 span {
    color: var(--accent);
}

.locator-divider {
    width: 120px;
    height: 2px;
    background: #111827;
    margin: 16px 0;
}

.locator-subtitle {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 16px;
}

.locator-text {
    color: #374151;
    max-width: 520px;
    margin-bottom: 22px;
}

.locator-cta {
    border: none;
    background: var(--accent);
    color: #111827;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
}

.locator-image-visual img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
}

.locator-features {
    list-style: none;
    padding: 0;
    margin: 16px 0 20px;
}

.locator-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #374151;
    font-size: 15px;
}

.locator-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--accent);
}

.locator-icon svg {
    width: 20px;
    height: 20px;
}

.locator-car-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.locator-car-grid img {
    width: 100%;
    min-height: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

@media (max-width: 900px) {
    .locator-image {
        grid-template-columns: 1fr;
        padding: 24px;
    }
}

.ludhiana-serve {
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-section);
    border-radius: 24px;
    text-align: center;
}

.ludhiana-serve h2 {
    font-size: 28px;
    color: #22c55e;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-shadow: 0 1px 2px rgba(34, 197, 94, 0.2);
}

.ludhiana-serve h2 span {
    color: #22c55e;
}

.ludhiana-intro {
    color: #374151;
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.ludhiana-if {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.ludhiana-search-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.ludhiana-search-list li {
    padding: 8px 0;
    color: #374151;
    font-size: 15px;
}

.ludhiana-search-list li::before {
    content: '✓ ';
    color: var(--accent);
    font-weight: 700;
}

.ludhiana-cta {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

/* OTO Motors Comparison Table */
.comparison-section .comparison-table-wrap {
    margin-top: 24px;
    background: var(--bg-card);
    border-radius: 12px;
    padding: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    text-align: left;
}

.comparison-table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    font-size: 14px;
}

.comparison-table th,
.comparison-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.comparison-table th {
    background: #f9fafb;
    font-weight: 700;
    color: #374151;
}

.comparison-table .oto-column {
    background: #dcfce7;
    color: #15803d;
    font-weight: 600;
}

.comparison-table thead .oto-column {
    background: #22c55e;
    color: #ffffff;
}

.comparison-table tbody tr:hover {
    background: #f9fafb;
}

.comparison-table tbody tr:hover .oto-column {
    background: #bbf7d0;
}

.comparison-feature {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.comparison-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
}

.comparison-icon svg {
    width: 18px;
    height: 18px;
}

.book-cta-section {
    margin-top: 60px;
    padding: 48px 40px;
    background: #1f2129;
    border-radius: 24px;
    text-align: center;
}

.book-cta-section h2 {
    font-size: 28px;
    color: #ffffff;
    margin: 0 0 12px 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.book-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ec4899;
}

.book-cta-icon svg {
    width: 28px;
    height: 28px;
}

.book-cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin: 0 0 28px 0;
}

.book-cta-list {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
}

.book-cta-list li a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--accent);
    color: #111827;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.book-cta-list li a:hover {
    background: var(--accent-dark);
    color: #111827;
    transform: translateY(-2px);
}

.book-cta-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111827;
}

.book-cta-btn-icon svg {
    width: 18px;
    height: 18px;
}

.book-cta-tagline {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 600px) {
    .book-cta-list {
        flex-direction: column;
        align-items: stretch;
    }

    .book-cta-list li a {
        text-align: center;
    }
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
}

.modal.is-open {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.modal-content {
    position: relative;
    z-index: 2;
    width: min(828px, 92%);
    max-height: 92vh;
    overflow: auto;
    background: transparent;
}

.modal-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 22px;
    cursor: pointer;
    z-index: 3;
}

.modal-form {
    height: auto;
}

/* Thank you popup after booking submit */
.thank-you-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 300;
    padding: 24px;
}

.thank-you-modal.is-open {
    display: flex;
}

.thank-you-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.thank-you-dialog {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px 28px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.thank-you-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.thank-you-dialog h3 {
    font-size: 24px;
    color: #111827;
    margin: 0 0 10px 0;
}

.thank-you-message {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.thank-you-btn {
    border: none;
    background: var(--accent);
    color: #111827;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 32px;
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
}

.thank-you-btn:hover {
    background: var(--accent-dark);
}


/* Brands Section */
.brands {
    margin-top: 60px;
    padding: 10px 0 30px;
    text-align: center;
}

.brands h2 {
    font-size: 32px;
    text-transform: uppercase;
    color: #111827;
    margin-bottom: 24px;
}

.brands h2 span {
    color: var(--accent);
}

.brands-slider-wrapper {
    overflow: hidden;
    background: var(--bg-card);
    padding: 16px 0;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 0 24px;
    animation: brandsScroll 25s linear infinite;
}

.brands-track:hover {
    animation-play-state: paused;
}

.brands-track img {
    width: 100px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
    filter: grayscale(1);
    opacity: 0.9;
    mix-blend-mode: multiply;
}

.brands-track img:hover {
    filter: none;
    opacity: 1;
}

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

@media (max-width: 768px) {
    .brands-track {
        gap: 40px;
        animation-duration: 20s;
    }

    .brands-track img {
        width: 80px;
    }
}

/* Car Wash Section */
.carwash {
    position: relative;
    margin-top: 60px;
    border-radius: 24px;
    overflow: hidden;
    min-height: 400px;
    background-color: #1f2937;
    background-image: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.carwash-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.55);
}

.carwash-content {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.carwash-header h2 {
    font-size: 32px;
    margin-bottom: 8px;
}

.carwash-header h2 span {
    color: var(--accent);
}

.carwash-header p {
    color: rgba(255, 255, 255, 0.8);
}

.carwash-cards {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.carwash-service-card {
    flex: 1;
    min-width: 160px;
    max-width: 200px;
    background: #1f2937;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.carwash-card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    flex-shrink: 0;
}

.carwash-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carwash-service-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.carwash-service-card:hover .carwash-card-details,
.carwash-service-card.is-expanded .carwash-card-details {
    max-height: 280px;
    opacity: 1;
}

.carwash-service-card.is-expanded {
    border-color: var(--accent);
}

.carwash-service-card:hover h3,
.carwash-service-card.is-expanded h3 {
    background: var(--accent);
    color: #111827;
}

.carwash-service-card:hover .carwash-card-icon,
.carwash-service-card.is-expanded .carwash-card-icon {
    color: #111827;
}


.carwash-service-card h3 {
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #374151;
    transition: background 0.3s ease, color 0.3s ease;
}

.carwash-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carwash-card-icon svg {
    width: 18px;
    height: 18px;
}

.carwash-service-card:nth-child(1) .carwash-card-icon { color: #9ca3af; }
.carwash-service-card:nth-child(2) .carwash-card-icon { color: #60a5fa; }
.carwash-service-card:nth-child(3) .carwash-card-icon { color: #f472b6; }
.carwash-service-card:nth-child(4) .carwash-card-icon { color: #a78bfa; }
.carwash-service-card:nth-child(5) .carwash-card-icon { color: #60a5fa; }
.carwash-service-card:nth-child(6) .carwash-card-icon { color: #d4a574; }

.carwash-card-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.35s ease;
}

.carwash-card-details p {
    margin: 0;
    padding: 14px 16px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    background: #374151;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.carwash-cta {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.carwash-cta button {
    border: none;
    background: var(--accent);
    color: #111827;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
}

.carwash-packages {
    margin-top: 60px;
    padding: 40px 24px;
    background: var(--bg-main);
}

.carwash-packages-header {
    text-align: center;
    margin-bottom: 30px;
}

.carwash-packages-header h2 {
    font-size: 32px;
    letter-spacing: 0.5px;
    color: #1f2937;
    text-transform: uppercase;
    margin: 0 0 8px 0;
}

.carwash-packages-header h2 span {
    color: var(--accent);
}

.carwash-packages-header p {
    color: #4b5563;
    margin: 0;
    font-size: 15px;
}

.carwash-plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.carwash-plans-grid .plan-card {
    min-height: 380px;
    border-radius: 8px;
    padding: 0;
}

.carwash-plans-grid .plan-header {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
}

.carwash-plans-grid .plan-title-wrap {
    flex: 1;
    min-width: 0;
}

.carwash-plans-grid .plan-title {
    font-size: 22px;
    line-height: 1.2;
}

.carwash-plans-grid .plan-price {
    flex-shrink: 0;
    min-width: 115px;
}

.carwash-plans-grid .plan-gst {
    white-space: nowrap;
}

.carwash-plans-grid .plan-section {
    padding: 16px 20px;
}

.carwash-plans-grid .plan-footer {
    padding: 20px;
}

@media (max-width: 900px) {
    .carwash-plans-grid {
        grid-template-columns: 1fr;
    }

    .carwash-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        justify-items: center;
    }

    .carwash-service-card {
        max-width: 100%;
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 600px) {
    .carwash-cards {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Vehicle Strength Section */
.vehicle-strength-section {
    margin-top: 60px;
    padding: 50px 40px;
    background: #1f2937;
    border-radius: 24px;
    color: #ffffff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.vehicle-strength-left {
    text-align: left;
}

.vehicle-strength-section h2 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.vehicle-strength-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #d1d5db;
    margin-bottom: 32px;
}

.vehicle-strength-stats {
    display: flex;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
}

.vehicle-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vehicle-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
}

.vehicle-stat-label {
    font-size: 15px;
    color: #ffffff;
    font-weight: 500;
}

.vehicle-strength-right {
    min-width: 0;
}

.vehicle-strength-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.vehicle-strength-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
}

.vehicle-strength-card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

.vehicle-strength-card-label {
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}

@media (max-width: 900px) {
    .vehicle-strength-section {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .vehicle-strength-left {
        text-align: center;
    }

    .vehicle-strength-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .vehicle-strength-section {
        padding: 36px 24px;
    }

    .vehicle-strength-section h2 {
        font-size: 24px;
    }

    .vehicle-strength-section p {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .vehicle-strength-cards {
        gap: 16px;
    }

    .vehicle-stat-number {
        font-size: 30px;
    }

    .vehicle-stat-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .vehicle-strength-section {
        padding: 28px 16px;
    }

    .vehicle-strength-section h2 {
        font-size: 20px;
    }

    .vehicle-strength-stats {
        flex-direction: column;
        align-items: center;
    }

    .vehicle-strength-cards {
        grid-template-columns: 1fr;
    }
}

/* App Promo Section */
.app-promo {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
    background: var(--bg-section);
    border-radius: 24px;
    padding: 40px;
}

.app-text h2 {
    font-size: 34px;
    line-height: 1.2;
    color: #2c2c2c;
    text-transform: uppercase;
}

.app-text h2 span {
    color: var(--accent);
}

.app-divider {
    width: 140px;
    height: 2px;
    background: #2c2c2c;
    margin: 16px 0 10px;
}

.app-text p {
    color: #4b5563;
    margin-bottom: 20px;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.why-choose-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #374151;
    font-size: 16px;
    line-height: 1.5;
}

.why-choose-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
}

.app-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.store-badge {
    height: 48px;
    width: auto;
}


.app-visual {
    position: relative;
    min-height: 448px;
}

.app-card-bg {
    display: none;
}

.app-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 532px;
    height: 392px;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
    z-index: 2;
}

@media (max-width: 900px) {
    .app-promo {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .app-visual {
        min-height: 364px;
    }

    .app-image {
        position: relative;
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 504px;
        object-fit: contain;
    }
}

/* Footer */
.site-footer {
    margin-top: 60px;
    background: #1a1a2e;
    color: #ffffff;
    padding: 50px 60px 0;
    border-radius: 24px 24px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr 1.2fr;
    gap: 40px;
    padding-bottom: 30px;
}

.footer-searches ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-searches li {
    margin-bottom: 8px;
}

.footer-searches a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 13px;
}

.footer-searches a:hover {
    color: var(--accent);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent);
    margin-bottom: 16px;
}

.footer-about .footer-logo {
    display: block;
    width: 172px;
    height: 172px;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #252540;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: var(--accent);
    color: #1e3a5f;
    border-color: var(--accent);
}

.footer-quick-links ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-quick-links li,
.footer-legal li {
    margin-bottom: 10px;
}

.footer-quick-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
}

.footer-quick-links a:hover,
.footer-legal a:hover {
    color: var(--accent);
}

.footer-contact p {
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact .footer-icon {
    color: var(--accent);
    flex-shrink: 0;
}

.footer-contact p a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer-contact p a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.footer-strip {
    height: 4px;
    background: var(--accent);
    border-radius: 0 0 24px 24px;
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-searches {
        grid-column: 1 / -1;
    }

    .footer-searches ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 24px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 30px 24px 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 24px;
    }

    .footer-searches {
        grid-column: auto;
    }

    .footer-searches ul {
        grid-template-columns: 1fr;
    }

    .footer-about p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 24px 16px 0;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

/* Plans Section */
.plans {
    margin-top: 60px;
}

.plans-header {
    text-align: center;
    margin-bottom: 30px;
}

.plans-header h2 {
    font-size: 32px;
    letter-spacing: 0.5px;
    color: #1f2937;
    text-transform: uppercase;
}

.plans-header h2 span {
    color: var(--accent);
}

.plans-header p {
    margin-top: 8px;
    color: #4b5563;
}

.plans-fuel-row {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 16px;
}

.plans-fuel-label {
    font-size: 14px;
    font-weight: 700;
    color: #374151;
}

.plans-fuel-pills {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.plans-fuel-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    user-select: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.plans-fuel-pill input {
    accent-color: #22c55e;
}

.plans-fuel-pill:has(input:checked) {
    border-color: var(--accent);
    background: rgba(200, 217, 45, 0.18);
}

.plans-fuel-pill em {
    font-style: normal;
    font-weight: 600;
    color: #6b7280;
    font-size: 12px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.plan-card {
    background: #f5fde9;
    border-radius: 22px;
    border: 1px solid #dbe7c0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
}

/* Basic Service - Green */
.plan-basic .plan-header { background: #f4fde6; }
.plan-basic { background: #f5fde9; border-color: #dbe7c0; }
.plan-basic .plan-highlights-section { background: #dcf7b9; }
.plan-basic .plan-footer { background: #f5fde9; border-top-color: #dbe7c0; }
.plan-basic .plan-more { border-color: #c8d92d; background: #f6ffe0; }
.plan-basic .plan-cta { background: #c8d92d; color: #111827; }
.plan-basic .plan-save strong { color: #15803d; }

/* Standard Service - Accent (no blue) */
.plan-standard .plan-header { background: #f4fde6; }
.plan-standard { background: #f5fde9; border-color: #dbe7c0; }
.plan-standard .plan-highlights-section { background: #dcf7b9; }
.plan-standard .plan-footer { background: #f5fde9; border-top-color: #dbe7c0; }
.plan-standard .plan-more { border-color: #c8d92d; background: #f6ffe0; }
.plan-standard .plan-cta { background: var(--accent); color: #111827; }
.plan-standard .plan-save strong { color: #15803d; }

/* Premium Service - Purple */
.plan-premium .plan-header { background: #f5f0ff; }
.plan-premium { background: #faf5ff; border-color: #ddd0f0; }
.plan-premium .plan-highlights-section { background: #e9d5ff; }
.plan-premium .plan-footer { background: #faf5ff; border-top-color: #ddd0f0; }
.plan-premium .plan-more { border-color: #8b5cf6; background: #f5f3ff; }
.plan-premium .plan-cta { background: var(--accent); color: #111827; }
.plan-premium .plan-save strong { color: #6d28d9; }

/* Basic Car Wash - Teal */
.plan-carwash-basic .plan-header { background: #e6fffa; }
.plan-carwash-basic { background: #f0fffd; border-color: #99d9d0; }
.plan-carwash-basic .plan-highlights-section { background: #a7f3ec; }
.plan-carwash-basic .plan-footer { background: #f0fffd; border-top-color: #99d9d0; }
.plan-carwash-basic .plan-more { border-color: #14b8a6; background: #ccfbf1; }
.plan-carwash-basic .plan-cta { background: var(--accent); color: #111827; }
.plan-carwash-basic .plan-save strong { color: #0d9488; }

/* Standard Car Wash - Orange/Amber */
.plan-carwash-standard .plan-header { background: #fff7ed; }
.plan-carwash-standard { background: #fffaf5; border-color: #fed7aa; }
.plan-carwash-standard .plan-highlights-section { background: #ffedd5; }
.plan-carwash-standard .plan-footer { background: #fffaf5; border-top-color: #fed7aa; }
.plan-carwash-standard .plan-more { border-color: #f97316; background: #ffedd5; }
.plan-carwash-standard .plan-cta { background: var(--accent); color: #111827; }
.plan-carwash-standard .plan-save strong { color: #c2410c; }

/* Premium Car Wash - Purple/Violet */
.plan-carwash-premium .plan-header { background: #f5f0ff; }
.plan-carwash-premium { background: #faf5ff; border-color: #ddd0f0; }
.plan-carwash-premium .plan-highlights-section { background: #e9d5ff; }
.plan-carwash-premium .plan-footer { background: #faf5ff; border-top-color: #ddd0f0; }
.plan-carwash-premium .plan-more { border-color: #8b5cf6; background: #f5f3ff; }
.plan-carwash-premium .plan-cta { background: var(--accent); color: #111827; }
.plan-carwash-premium .plan-save strong { color: #6d28d9; }

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 26px 24px 18px;
    background: #f4fde6;
    overflow: visible;
}

.plan-title {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.plan-duration {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.plan-price {
    text-align: right;
    overflow: visible;
}

.plan-mrp {
    font-size: 14px;
    color: #6b7280;
    text-decoration: line-through;
}

.plan-now {
    font-size: 34px;
    font-weight: 800;
    color: #e11d48;
    line-height: 1.2;
}

.plan-gst {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.3;
}

.plan-section {
    padding: 16px 24px;
}

.plan-section h4 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.plan-highlights-section {
    background: #dcf7b9;
}

.plan-includes-title {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: #111827;
    margin: 16px 0 12px 0;
}

.plan-includes-list {
    margin-top: 0;
}

.plan-includes-section {
    background: #f5fde9;
}

.plan-highlights {
    margin: 0;
    padding-left: 18px;
    color: #1f2937;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
    font-size: 12px;
}

.plan-highlights li {
    min-width: 0;
}

.plan-includes-preview,
.plan-includes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    color: #1f2937;
    font-size: 14px;
}

.plan-includes-preview div,
.plan-includes div {
    position: relative;
    padding-left: 26px;
}

.plan-includes-preview div::before,
.plan-includes div::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
}

.plan-more {
    margin-top: 14px;
    border: 1px solid #c8d92d;
    background: #f6ffe0;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    color: #111827;
}

.plan-highlights-more {
    display: none;
    margin-top: 0;
    padding-top: 10px;
}

.plan-highlights-more.is-open {
    display: grid;
}

.plan-more-content {
    display: none;
    margin-top: 12px;
    border-top: 1px solid #dbe7c0;
    padding-top: 12px;
}

.plan-more-content.is-open {
    display: block;
}

.plan-more-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: #111827;
}

.plan-footer {
    margin-top: auto;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid #dbe7c0;
    background: #f5fde9;
}

.plan-footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.plan-save {
    font-size: 14px;
    color: #374151;
}

.plan-save strong {
    color: #15803d;
    font-size: 18px;
    font-weight: 700;
}

.plan-cta {
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--accent);
    color: #111827;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    flex-shrink: 0;
}

.plan-cta:hover {
    background: var(--accent-dark);
    color: #111827;
}

.plan-footer .plan-terms {
    font-size: 11px;
    color: #9ca3af;
    padding: 0;
    margin-top: 2px;
}

@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-header {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
    }

    .plan-price {
        flex-shrink: 0;
        text-align: right;
    }

    .plan-highlights,
    .plan-includes-preview,
    .plan-includes {
        grid-template-columns: 1fr;
    }

    .carwash-plans-grid .plan-title {
        font-size: 18px;
    }

    .carwash-plans-grid .plan-now {
        font-size: 28px;
    }
}

/* Phone - Small screens */
@media (max-width: 480px) {
    .main-content {
        padding: 12px 10px;
        padding-top: calc(var(--header-height) + 12px);
    }

    .header-left,
    .header-right {
        padding: 8px 10px;
    }

    .header-buttons {
        gap: 6px;
    }

    .btn-menu,
    .btn-book-service {
        padding: 6px 10px;
        min-height: 36px;
        font-size: 12px;
        gap: 8px;
    }

    .btn-menu svg,
    .btn-book-service svg {
        width: 18px;
        height: 18px;
    }

    .slider {
        height: 220px;
    }

    .form-card {
        padding: 20px 16px;
        min-height: 360px;
    }

    .form-card h3 {
        font-size: 20px;
    }

    .form-subtitle {
        font-size: 13px;
    }

    .pill-group {
        gap: 8px;
    }

    .pill {
        padding: 6px 12px;
        font-size: 13px;
    }

    .service-type-grid {
        grid-template-columns: 1fr;
    }

    .service-type-option {
        padding: 10px 12px;
        font-size: 13px;
    }

    .locator-image {
        padding: 20px 12px;
        border-radius: 16px;
    }

    .locator-image-text h2 {
        font-size: 20px;
    }

    .locator-text {
        font-size: 14px;
    }

    .locator-car-grid {
        gap: 8px;
    }

    .locator-car-grid img {
        height: 120px;
        min-height: 120px;
    }

    .brands h2 {
        font-size: 24px;
    }

    .brands-track img {
        width: 60px;
    }

    .carwash-header h2 {
        font-size: 20px;
    }

    .carwash-packages-header h2 {
        font-size: 20px;
    }

    .plans-header h2 {
        font-size: 20px;
    }

    .plan-title {
        font-size: 20px;
    }

    .plan-now {
        font-size: 26px;
    }

    .plan-footer-top {
        flex-direction: column;
        align-items: stretch;
    }

    .plan-cta {
        width: 100%;
    }

    .ludhiana-serve {
        padding: 20px 12px;
    }

    .ludhiana-serve h2 {
        font-size: 18px;
    }

    .comparison-section .comparison-table-wrap {
        padding: 10px;
    }

    .comparison-table {
        font-size: 11px;
        min-width: 350px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 6px 8px;
    }

    .book-cta-section {
        padding: 24px 16px;
    }

    .book-cta-section h2 {
        font-size: 18px;
    }

    .book-cta-subtitle {
        font-size: 14px;
    }

    .modal-content {
        width: 96%;
        max-height: 95vh;
    }

    .modal-form .form-card {
        padding: 20px 16px;
    }
}

/* Very small phones (360px and below) */
@media (max-width: 360px) {
    .main-content {
        padding: 10px 8px;
        padding-top: calc(var(--header-height) + 10px);
    }

    .logo-icon {
        height: 58px;
    }

    .btn-menu span,
    .btn-book-service span {
        display: none;
    }

    .btn-menu,
    .btn-book-service {
        gap: 0;
        padding: 6px 9px;
        min-height: 34px;
    }

    .comparison-table {
        min-width: 320px;
    }

    .vehicle-strength-section {
        padding: 24px 12px;
    }

    .vehicle-strength-section h2 {
        font-size: 18px;
    }

    .carwash-packages {
        padding: 20px 12px;
    }
}

/* Touch-friendly tap targets for mobile */
@media (hover: none) and (pointer: coarse) {
    .btn-menu,
    .btn-book-service,
    .plan-cta,
    .form-btn-next,
    .form-btn-back,
    .form-submit {
        min-height: 44px;
    }

    .form-control,
    select {
        min-height: 44px;
        font-size: 16px;
    }
}

