/* ==========================================
   REFORMTECH - WASHING MACHINE REPAIR PAGE CSS
   Dedicated CSS for Washing Machine Repair Page
========================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #13343b;
    background-color: #fcfcf9;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* WhatsApp Floating Button */
.washer-whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.washer-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.washer-whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

/* Header Styles */
.washer-header {
    position: sticky;
    top: 0;
    background-color: #fffcfd;
    border-bottom: 1px solid rgba(94, 82, 64, 0.12);
    z-index: 1000;
    transition: box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.washer-header.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.washer-header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.washer-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.washer-logo {
    height: 60px;
    width: auto;
    max-width: 200px;
}

/* Navigation */
.washer-nav {
    display: flex;
    align-items: center;
}

.washer-nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.washer-nav-links a {
    color: #13343b;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.washer-nav-links a:hover {
    color: #20808d;
}

.washer-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #20808d;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.washer-nav-links a:hover::after {
    width: 100%;
}

.washer-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.washer-menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: #13343b;
}

/* Button Styles */
.washer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    line-height: 1.5;
}

.washer-btn:focus {
    outline: 2px solid #20808d;
    outline-offset: 2px;
}

.washer-btn-primary {
    background-color: #2d84c3;
    color: white;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.03);
}

.washer-btn-primary:hover {
    background-color: #2676b0;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.washer-btn-secondary {
    background-color: rgba(94, 82, 64, 0.12);
    color: #13343b;
}

.washer-btn-secondary:hover {
    background-color: rgba(94, 82, 64, 0.2);
}

.washer-btn-whatsapp {
    background-color: #25d366;
    color: white;
    width: 100%;
    justify-content: center;
}

.washer-btn-whatsapp:hover {
    background-color: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.washer-btn svg {
    width: 18px;
    height: 18px;
}

/* Hero Section */
.washer-hero {
    padding: 32px 16px;
    background: linear-gradient(135deg, #f0f9ff 0%, #fcfcf9 100%);
    position: relative;
    overflow: hidden;
}

.washer-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(45, 132, 195, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.washer-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.washer-hero-content h1 {
    font-size: clamp(30px, 5vw, 36px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #13343b;
    letter-spacing: -0.01em;
}

.washer-hero-content .washer-highlight {
    color: #2d84c3;
}

.washer-hero-content p {
    font-size: clamp(14px, 2vw, 18px);
    color: #626c71;
    margin-bottom: 32px;
    line-height: 1.5;
}

.washer-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.washer-hero-actions .washer-btn {
    font-size: 14px;
    padding: 16px 32px;
}

.washer-hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.washer-hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Breadcrumb */
.washer-breadcrumb {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 12px;
    color: #626c71;
}

.washer-breadcrumb a {
    color: #2d84c3;
    text-decoration: none;
    transition: color 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.washer-breadcrumb a:hover {
    text-decoration: underline;
}

.washer-breadcrumb span {
    color: #626c71;
}

/* Section Header */
.washer-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 32px;
}

.washer-section-header h2 {
    font-size: clamp(30px, 4vw, 36px);
    font-weight: 600;
    margin-bottom: 16px;
    color: #13343b;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.washer-section-header p {
    font-size: 16px;
    color: #626c71;
    line-height: 1.5;
}

/* Container */
.washer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Common Problems Section */
.washer-problems {
    padding: 32px 16px;
    background-color: #fcfcf9;
}

.washer-problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.washer-problem-card {
    background: #fffcfd;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(94, 82, 64, 0.12);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.washer-problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.washer-problem-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-bottom: 16px;
}

.washer-problem-icon svg {
    width: 24px;
    height: 24px;
}

.washer-spin-issue .washer-problem-icon {
    background: rgba(245, 158, 11, 0.08);
}

.washer-spin-issue .washer-problem-icon svg {
    stroke: #f59e0b;
}

.washer-water-issue .washer-problem-icon {
    background: rgba(59, 130, 246, 0.08);
}

.washer-water-issue .washer-problem-icon svg {
    stroke: #3b82f6;
}

.washer-motor-issue .washer-problem-icon {
    background: rgba(34, 197, 94, 0.08);
}

.washer-motor-issue .washer-problem-icon svg {
    stroke: #22c55e;
}

.washer-problem-card h3 {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 600;
    color: #13343b;
    line-height: 1.2;
}

.washer-problem-card ul {
    padding-left: 20px;
    margin: 0;
    color: #626c71;
    line-height: 1.5;
}

.washer-problem-card li {
    margin-bottom: 8px;
}

/* Types of Washing Machines Section */
.washer-types {
    padding: 32px 16px;
    background-color: rgba(245, 158, 11, 0.08);
}

.washer-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.washer-type-card {
    background: #fffcfd;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(94, 82, 64, 0.12);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

.washer-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.washer-type-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: rgba(45, 132, 195, 0.1);
}

.washer-type-icon svg {
    width: 24px;
    height: 24px;
    stroke: #2d84c3;
}

.washer-type-card h3 {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 600;
    color: #13343b;
    line-height: 1.2;
}

.washer-type-card p {
    color: #626c71;
    line-height: 1.5;
    margin: 0;
}

/* Repair Process Section */
.washer-process {
    padding: 32px 16px;
    background-color: rgba(34, 197, 94, 0.08);
}

.washer-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1280px;
    margin: 0 auto;
}

.washer-process-step {
    text-align: center;
}

.washer-step-number {
    background: #2d84c3;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-weight: 600;
    font-size: 24px;
}

.washer-process-step h3 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #13343b;
    line-height: 1.2;
}

.washer-process-step p {
    color: #626c71;
    line-height: 1.5;
    margin: 0;
}

/* Brands Section */
.washer-brands {
    padding: 32px 16px;
    background-color: #fcfcf9;
}

.washer-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    align-items: center;
    justify-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.washer-brand-logo {
    padding: 16px;
    background: #fffcfd;
    border-radius: 12px;
    text-align: center;
    width: 100%;
    transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.washer-brand-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.washer-brand-logo span {
    font-weight: 600;
    color: #2d84c3;
}

.washer-disclaimer {
    text-align: center;
    margin-top: 24px;
    color: #626c71;
    font-size: 12px;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.washer-faq {
    padding: 32px 16px;
    background-color: #fffcfd;
}

.washer-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.washer-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.washer-faq-item {
    background-color: #fcfcf9;
    border-radius: 12px;
    border: 1px solid rgba(94, 82, 64, 0.12);
    overflow: hidden;
}

.washer-faq-question {
    width: 100%;
    padding: 20px 16px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: #13343b;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.washer-faq-question:hover {
    color: #2d84c3;
}

.washer-faq-question:focus {
    outline: 2px solid #2d84c3;
    outline-offset: -2px;
}

.washer-faq-icon {
    width: 24px;
    height: 24px;
    stroke: #13343b;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.washer-faq-item.active .washer-faq-icon {
    transform: rotate(180deg);
}

.washer-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.washer-faq-answer p {
    padding: 0 16px 20px;
    color: #626c71;
    line-height: 1.5;
    margin: 0;
}

.washer-faq-item.active .washer-faq-answer {
    max-height: 500px;
}

/* Booking Section */
.washer-booking {
    padding: 32px 16px;
    background: linear-gradient(135deg, #25D366 0%, #22C55E 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.washer-booking::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.washer-booking-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.washer-booking-content h2 {
    font-size: clamp(30px, 4vw, 36px);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.washer-booking-content p {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.95;
    line-height: 1.5;
}

.washer-booking-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.washer-booking-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.washer-booking-feature svg {
    width: 24px;
    height: 24px;
    stroke: white;
    flex-shrink: 0;
}

.washer-booking-form {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    color: #13343b;
}

.washer-booking-form h3 {
    font-size: 30px;
    font-weight: 600;
    color: #13343b;
    margin-bottom: 24px;
    line-height: 1.2;
}

/* Form Styles */
.washer-form-group {
    margin-bottom: 20px;
}

.washer-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #13343b;
    margin-bottom: 8px;
}

.washer-form-group input,
.washer-form-group select,
.washer-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(94, 82, 64, 0.2);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: #fffcfd;
    color: #13343b;
    line-height: 1.5;
}

.washer-form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2313343b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 32px;
}

.washer-form-group input:focus,
.washer-form-group select:focus,
.washer-form-group textarea:focus {
    outline: 2px solid #2d84c3;
    border-color: #2d84c3;
    box-shadow: 0 0 0 3px rgba(45, 132, 195, 0.4);
}

.washer-form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: 'Inter', sans-serif;
}

/* Footer */
.washer-footer {
    background-color: #13343b;
    color: rgba(255, 255, 255, 0.9);
    padding: 32px 16px;
    margin-bottom: 0;
}

.washer-footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.washer-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.washer-footer-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.washer-footer-logo {
    font-size: 30px;
    font-weight: 600;
    color: #32b8c6;
    margin-bottom: 16px;
}

.washer-footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 16px;
}

.washer-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.washer-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.washer-footer-links a:hover {
    color: #32b8c6;
}

.washer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.washer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.washer-contact-item svg {
    width: 20px;
    height: 20px;
    stroke: #32b8c6;
    flex-shrink: 0;
}

.washer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.washer-contact-item a:hover {
    color: #32b8c6;
}

.washer-footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.washer-footer-bottom a {
    color: #32b8c6;
    text-decoration: underline;
}

/* Mobile Bottom Navigation */
.washer-mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fffcfd;
    border-top: 2px solid #2d84c3;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    animation: washerSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes washerSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.washer-mobile-nav-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    padding: 0;
}

.washer-mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #626c71;
    transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 12px 8px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 500;
    gap: 4px;
}

.washer-mobile-nav-link svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.washer-mobile-nav-link:active,
.washer-mobile-nav-link:hover {
    color: #2d84c3;
    background-color: rgba(45, 132, 195, 0.08);
}

.washer-mobile-nav-link:active svg,
.washer-mobile-nav-link:hover svg {
    stroke-width: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Body padding for mobile nav */
    body {
        padding-bottom: 70px;
    }
    
    /* Show mobile nav */
    .washer-mobile-nav {
        display: block;
    }
    
    /* Hide desktop nav items on mobile */
    .washer-nav-links {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background-color: #fffcfd;
        flex-direction: column;
        padding: 24px;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        pointer-events: none;
        z-index: 999;
        border-bottom: 1px solid rgba(94, 82, 64, 0.2);
    }
    
    .washer-nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .washer-menu-toggle {
        display: block;
    }
    
    /* Hero Section */
    .washer-hero {
        padding: 32px 12px;
    }
    
    .washer-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .washer-hero-content h1 {
        font-size: 30px;
    }
    
    .washer-hero-content p {
        font-size: 14px;
    }
    
    .washer-hero-actions {
        justify-content: center;
    }
    
    .washer-hero-image {
        order: -1;
    }
    
    /* Booking Section */
    .washer-booking-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .washer-booking-form {
        padding: 20px;
    }
    
    /* Problems Grid */
    .washer-problems-grid,
    .washer-types-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Process Steps */
    .washer-process-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Brands Grid */
    .washer-brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* General Padding */
    .washer-problems,
    .washer-booking,
    .washer-process,
    .washer-brands,
    .washer-faq,
    .washer-types {
        padding: 32px 12px;
    }
    
    /* Footer */
    .washer-footer {
        padding: 32px 12px 24px;
    }
    
    .washer-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    /* WhatsApp Button */
    .washer-whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 80px;
        right: 15px;
    }
    
    .washer-whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    /* Header */
    .washer-header-container {
        padding: 12px;
    }
    
    .washer-logo {
        height: 40px;
    }
    
    /* Hero */
    .washer-hero {
        padding: 24px 12px;
    }
    
    .washer-hero::before {
        width: 400px;
        height: 400px;
        top: -100px;
        right: -100px;
    }
    
    .washer-hero-content h1 {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .washer-hero-content p {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .washer-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .washer-hero-actions .washer-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* General Sections */
    .washer-problems,
    .washer-booking,
    .washer-process,
    .washer-brands,
    .washer-faq,
    .washer-types {
        padding: 24px 12px;
    }
    
    .washer-section-header h2 {
        font-size: 24px;
    }
    
    /* Booking Form */
    .washer-booking-form {
        padding: 16px;
    }
    
    .washer-booking-content {
        text-align: center;
    }
    
    .washer-booking-content h2 {
        font-size: 24px;
    }
    
    .washer-booking-content p {
        font-size: 14px;
    }
    
    .washer-booking-features {
        gap: 12px;
    }
    
    /* Problem Cards */
    .washer-problems-grid,
    .washer-types-grid {
        gap: 12px;
    }
    
    .washer-problem-card,
    .washer-type-card {
        padding: 16px;
    }
    
    /* Form */
    .washer-form-group input,
    .washer-form-group select,
    .washer-form-group textarea {
        padding: 8px 12px;
        font-size: 16px;
    }
    
    /* FAQ */
    .washer-faq-question {
        padding: 16px 12px;
        font-size: 14px;
    }
    
    .washer-faq-answer p {
        padding: 0 12px 16px;
    }
    
    /* Footer */
    .washer-footer {
        padding: 24px 12px 20px;
    }
    
    .washer-footer-grid {
        gap: 24px;
    }
    
    .washer-footer-section h3 {
        font-size: 18px;
    }
    
    /* Mobile Nav */
    .washer-mobile-nav-link {
        padding: 10px 4px;
        font-size: 11px;
    }
    
    .washer-mobile-nav-link svg {
        width: 20px;
        height: 20px;
    }
    
    /* WhatsApp Button */
    .washer-whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 75px;
        right: 10px;
    }
    
    .washer-whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* Hide Mobile Nav on Desktop */
@media (min-width: 769px) {
    .washer-mobile-nav {
        display: none !important;
    }
    
    body {
        padding-bottom: 0;
    }
}