/* Car Wash Page - Enhanced Styles */

/* ========================================
   HERO SECTION
   ======================================== */
.wash-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.wash-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.wash-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.wash-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.7) 0%, rgba(13, 61, 17, 0.65) 100%);
}

.wash-hero .container {
    position: relative;
    z-index: 1;
}

.wash-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.wash-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease forwards;
}

.badge-icon {
    color: var(--accent);
    font-size: 1.1rem;
}

.wash-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.highlight-text {
    background: linear-gradient(135deg, var(--accent) 0%, #ffab40 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.wash-hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.wash-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

/* Glowing Button */
.btn-glow {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(230, 81, 0, 0.5);
    animation: pulseGlow 2s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(230, 81, 0, 0.6);
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 30px rgba(230, 81, 0, 0.5); }
    50% { box-shadow: 0 4px 50px rgba(230, 81, 0, 0.7); }
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.2rem;
}

/* Hero Trust Badges */
.wash-hero-trust {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.trust-icon {
    font-size: 1.3rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    margin: 0.5rem auto 0;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

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

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

/* ========================================
   3 WINS SECTION
   ======================================== */
.wash-wins {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, white 100%);
}

.wash-wins .section-header,
.wash-packages .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.wins-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.win-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.win-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(27, 94, 32, 0.15);
    border-color: var(--primary);
}

.win-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #f8faf8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #eef5ee;
}

.win-icon svg {
    width: 42px;
    height: 42px;
}

.win-card:hover .win-icon {
    transform: scale(1.1);
    background: white;
    box-shadow: 0 10px 20px rgba(27, 94, 32, 0.08);
    border-color: var(--primary);
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.win-card h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.win-card p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 1rem;
}

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

/* ========================================
   PLAN SECTION (How It Works)
   ======================================== */
.wash-plan {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.wash-plan .section-eyebrow {
    background: rgba(255, 255, 255, 0.2);
}

.wash-plan h2 {
    font-size: 2.75rem;
    color: white;
    margin-top: 1rem;
}

.plan-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.plan-step {
    text-align: center;
    max-width: 280px;
    opacity: 0;
    transform: translateY(30px);
}

.plan-step.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.step-bubble {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.step-num {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(230, 81, 0, 0.4);
}

.step-icon {
    font-size: 3.5rem;
}

.plan-step h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: white;
}

.plan-step p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

.plan-connector {
    width: 80px;
    color: var(--accent);
}

.plan-connector svg {
    width: 100%;
    height: auto;
}

/* ========================================
   PACKAGES SECTION - NEW DESIGN
   ======================================== */
.wash-packages {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, white 100%);
}

.wash-packages .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.wash-packages .section-header p {
    color: var(--gray-600);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 1rem auto 0;
}

/* Package Toggle */
.package-toggle {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    background: var(--gray-200);
    padding: 0.5rem;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.toggle-btn {
    padding: 0.875rem 2rem;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray-600);
    font-family: 'Montserrat', sans-serif;
}

.toggle-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.3);
}

.toggle-btn:hover:not(.active) {
    color: var(--primary);
}

/* Packages Grid */
.packages-grid {
    transition: opacity 0.3s ease;
}

.packages-grid.hidden {
    display: none;
}

/* Wash Category */
.wash-category {
    margin-bottom: 4rem;
}

.wash-category:last-of-type {
    margin-bottom: 2rem;
}

/* Category Header with Image */
.category-header {
    margin-bottom: 2rem;
}

.category-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
}

/* Animated Background */
.category-animated {
    background: linear-gradient(-45deg, #0d3d14, #1b5e20, #2e7d32, #e65100, #1b5e20, #0d3d14);
    background-size: 600% 600%;
    animation: gradientShift 6s ease infinite;
}

.category-animated::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    animation: shimmer 2s ease-in-out infinite;
    transform: skewX(-20deg);
}

.category-animated::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 109, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 50% 100%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 0%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer {
    0% { transform: skewX(-20deg) translateX(-150%); }
    100% { transform: skewX(-20deg) translateX(150%); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.9) 0%, rgba(27, 94, 32, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.category-overlay h3 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.category-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* Wash Cards Row */
.wash-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Wash Card */
.wash-card {
    background: white;
    border-radius: 1.25rem;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.wash-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.wash-card-featured {
    border-color: var(--secondary);
    background: linear-gradient(180deg, rgba(230, 81, 0, 0.03) 0%, white 100%);
}

.wash-card-featured:hover {
    border-color: var(--secondary);
}

/* Wash Type Badge */
.wash-type-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    width: fit-content;
}

.wash-type-badge.exterior {
    background: var(--secondary);
}

/* Wash Ribbon */
.wash-ribbon {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    border-radius: 0.5rem;
}

/* Wash Card Title */
.wash-card h4 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

/* Wash Price */
.wash-price {
    margin-bottom: 0.5rem;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.price-main sup {
    font-size: 1.2rem;
    font-weight: 700;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

/* Wash Monthly */
.wash-monthly {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

/* Wash Features */
.wash-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.wash-features li {
    position: relative;
    padding-left: 1.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.4;
}

.wash-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Packages Note */
.packages-note {
    text-align: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.05) 0%, rgba(230, 81, 0, 0.05) 100%);
    border-radius: 1rem;
    margin-top: 2rem;
}

.packages-note p {
    color: var(--gray-700);
    font-size: 1rem;
    margin: 0;
}

.packages-note a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .wash-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .wash-cards-row {
        grid-template-columns: 1fr;
    }
    
    .category-overlay h3 {
        font-size: 2rem;
    }
    
    .category-image {
        height: 140px;
    }
}

/* Legacy - keeping for compatibility */
.price-type {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

.package-monthly {
    background: var(--gray-100);
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.monthly-price {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.1rem;
}

/* Package Features */
.package-features {
    padding: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.95rem;
    color: var(--gray-700);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.featured-highlight {
    background: linear-gradient(90deg, rgba(230, 81, 0, 0.1), transparent);
    margin: 0 -1.5rem;
    padding: 0.65rem 1.5rem;
    border-bottom: none;
    font-weight: 600;
    color: var(--secondary);
}

/* Package Button */
.package-card .btn-block {
    margin: 1rem 1.5rem 1.5rem;
    width: calc(100% - 3rem);
    display: block;
    text-align: center;
}

.btn-block {
    width: 100%;
}

/* Packages Note */
.packages-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.05), rgba(27, 94, 32, 0.1));
    border-radius: 1rem;
    border: 1px solid rgba(27, 94, 32, 0.15);
}

.packages-note p {
    margin: 0;
    font-size: 1.1rem;
}

.packages-note a {
    color: var(--primary);
    font-weight: 600;
}

/* ========================================
   SOCIAL PROOF SECTION
   ======================================== */
.wash-proof {
    padding: 5rem 0;
    background: var(--dark);
    color: white;
}

.proof-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.proof-stats {
    display: flex;
    gap: 2rem;
}

.proof-stat {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.proof-stat.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.proof-quote {
    padding-left: 2rem;
    border-left: 3px solid var(--accent);
}

.proof-quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.proof-quote cite {
    font-style: normal;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   BONUS SECTION
   ======================================== */
.wash-bonus {
    padding: 4rem 0;
    background: white;
}

.bonus-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.05), rgba(27, 94, 32, 0.1));
    border: 2px solid var(--primary);
    border-radius: 2rem;
    padding: 3rem;
}

.bonus-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.bonus-content h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.bonus-content p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

/* ========================================
   COMPARISON VISUAL
   ======================================== */
.comparison-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-box {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--gray-200);
}

.comparison-box.old-way {
    opacity: 0.7;
}

.comparison-box.new-way {
    border-color: var(--primary);
    transform: scale(1.05);
}

.comparison-box h4 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.comparison-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.comparison-box.old-way .comparison-price {
    color: var(--gray-500);
    text-decoration: line-through;
}

.comparison-box p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.comparison-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.comparison-box ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.comparison-box.new-way ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.comparison-box.old-way ul li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--gray-400);
}

.comparison-vs {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    background: var(--gray-100);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .comparison-visual {
        flex-direction: column;
    }
    
    .comparison-box.new-way {
        transform: scale(1);
    }
    
    .comparison-vs {
        margin: 1rem 0;
    }
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.wash-final-cta {
    padding: 4rem 0;
    background: var(--primary);
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    text-align: center;
    color: white;
}

.wash-final-cta .container {
    padding: 2rem 0;
}

.wash-final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.wash-final-cta p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.cta-info a {
    color: var(--accent);
    font-weight: 600;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .wash-hero h1 {
        font-size: 3rem;
    }

    .solution-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .proof-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .proof-stats {
        justify-content: center;
    }

    .plan-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .plan-connector {
        transform: rotate(90deg);
        width: 50px;
    }
}

@media (max-width: 768px) {
    .wash-hero {
        padding: 7rem 0 3rem;
        min-height: auto;
    }

    .wash-hero h1 {
        font-size: 50px !important;
        line-height: 1.1 !important;
        margin-bottom: 1rem !important;
    }

    .wash-hero-subtitle {
        font-size: 1.1rem;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .package-featured {
        transform: none;
    }

    .package-featured:hover {
        transform: translateY(-10px);
    }

    .bonus-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

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

    .scroll-indicator {
        display: none;
    }
}
