/* ==========================================
   SERVICE PAGES — CLEAN LINEN SERVICE
   Matches main site aesthetic
   Reference: nexalaundry.com
   ========================================== */

/* CSS Variables — match main site exactly */
:root {
    --navy: #1B3A5C;
    --white: #FFFFFF;
    --sky-blue: #4A9FD4;
    --dark-text: #2C2C2C;
    --light-text: #6B7280;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --radius: 12px;
    --max-width: 1200px;
    --section-padding: 100px 20px;
}

/* ==========================================
   GLOBAL PAGE LAYOUT
   ========================================== */

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

/* Restore nav link spacing wiped by the * reset above */
.service-page nav ul li a {
    margin-left: 30px;
}

.service-page {
    font-family: inherit;
    color: var(--dark-text);
    line-height: 1.7;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.container-left {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   SECTION STYLES — ALTERNATING BACKGROUNDS
   Like nexalaundry.com section pattern
   ========================================== */

.section-white {
    background: var(--bg-white);
    padding: var(--section-padding);
}

.section-white p,
.section-light p,
.section-navy p {
    line-height: 2;
    margin-bottom: 20px;
}

.section-light {
    background: var(--bg-light);
    padding: var(--section-padding);
}

.section-navy {
    background: var(--bg-light);
    padding: var(--section-padding);
    color: var(--dark-text);
}

.section-navy h2,
.section-navy h3,
.section-navy p {
    color: var(--dark-text);
}

/* Section divider accent line */
.section-divider {
    width: 60px;
    height: 4px;
    background: var(--sky-blue);
    margin: 16px auto 24px;
    border-radius: 2px;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.inner-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, #2a5298 100%);
}

.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(27, 58, 92, 0.85) 0%,
        rgba(27, 58, 92, 0.65) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 60px 20px;
    margin: 0 auto;
}

.inner-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-family: 'Playfair Display', serif;
}

.inner-hero p {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,0.9);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image {
    display: none; /* Hide the separate image since we have background */
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn-primary,
.cta-button.cta-primary {
    display: inline-block;
    background: var(--sky-blue);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--sky-blue);
    cursor: pointer;
}

.btn-primary:hover,
.cta-button.cta-primary:hover {
    background: #3a8fc4;
    border-color: #3a8fc4;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary,
.cta-button.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    cursor: pointer;
}

.btn-secondary:hover,
.cta-button.cta-secondary:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-navy {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--navy);
    cursor: pointer;
}

.btn-navy:hover {
    background: #152d48;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==========================================
   SECTION HEADINGS — CENTERED
   ========================================== */

.section-heading {
    text-align: center;
    margin-bottom: 64px;
}

.section-heading h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.section-heading p {
    font-size: 18px;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   WHAT IS INCLUDED SECTION
   Feature cards grid — centered
   ========================================== */

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.included-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--sky-blue);
    transition: all 0.3s ease;
}

.included-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.included-card .icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.included-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.included-card p {
    font-size: 15px;
    color: var(--light-text);
    line-height: 1.6;
}

.included-card ul {
    list-style: none;
    text-align: left;
    margin-top: 12px;
}

.included-card ul li {
    padding: 6px 0;
    color: var(--dark-text);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.included-card ul li::before {
    content: "✓";
    color: var(--sky-blue);
    font-weight: 700;
    flex-shrink: 0;
}

/* ==========================================
   WHY CHOOSE US — TRUST SIGNALS
   ========================================== */

.why-image {
    display: none;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    align-items: center;
    margin-top: 40px;
}

.why-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.why-content h2 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    text-align: left;
}

.why-content p {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 24px;
    text-align: left;
}

.checklist {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.checklist li {
    padding: 8px 0;
    color: var(--dark-text);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.checklist .check {
    color: var(--sky-blue);
    font-weight: 700;
    flex-shrink: 0;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.trust-badge {
    text-align: center;
    padding: 24px 16px;
    background: var(--white);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    background: var(--bg-light);
}

.badge-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--sky-blue);
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}

.badge-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--light-text);
}

/* ==========================================
   PRICING SECTION
   ========================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
    align-items: start;
}

.pricing-card,
.pricing-card-single {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--sky-blue);
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sky-blue);
    color: var(--white);
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-card:hover,
.pricing-card-single:hover {
    border-color: var(--sky-blue);
    box-shadow: var(--shadow-md);
}

.pricing-label {
    background: var(--bg-light);
    color: var(--navy);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 16px;
}

.pricing-card h3,
.pricing-card-single h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--sky-blue);
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-unit {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.pricing-features li {
    padding: 8px 0;
    color: var(--dark-text);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li::before {
    content: "✓";
    color: var(--sky-blue);
    font-weight: 700;
    flex-shrink: 0;
}

.volume-discount {
    background: #EFF6FF;
    color: var(--navy);
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    display: block;
    line-height: 1.4;
}

.volume-discount a {
    color: var(--sky-blue);
}

/* ==========================================
   SERVICE AREAS
   ========================================== */

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.area-card {
    background: var(--white);
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    padding: 16px 12px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    transition: all 0.3s ease;
    cursor: default;
}

.area-card:hover {
    border-color: var(--sky-blue);
    color: var(--sky-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid #E5E7EB;
}

.faq-item h3 {
    padding: 20px 24px;
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.faq-item h3:hover {
    background: var(--bg-light);
}

.faq-item h3::after {
    content: "+";
    font-size: 24px;
    color: var(--sky-blue);
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active h3::after {
    transform: rotate(45deg);
}

.faq-item p {
    display: none;
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--light-text);
    line-height: 1.7;
    border-top: 1px solid #E5E7EB;
    padding-top: 16px;
    margin: 0;
}

.faq-item.active p {
    display: block;
}

/* ==========================================
   RELATED SERVICES SECTION
   ========================================== */

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.related-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
    display: block;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--sky-blue);
}

.related-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 16px;
}

.related-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.related-card p {
    font-size: 14px;
    color: var(--light-text);
}

.card-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--sky-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.card-link:hover {
    color: var(--navy);
}

/* ==========================================
   BACKSPLASH PATTERNS
   Decorative backgrounds for sections
   ========================================== */

.backsplash-dots {
    background-color: var(--bg-light);
    background-image: radial-gradient(
        var(--sky-blue) 1px, 
        transparent 1px
    );
    background-size: 24px 24px;
    background-position: 0 0;
    opacity: 1;
}

.backsplash-dots .container {
    position: relative;
    z-index: 1;
}

.backsplash-lines {
    background-color: var(--bg-light);
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(74, 159, 212, 0.05) 10px,
        rgba(74, 159, 212, 0.05) 20px
    );
}

.backsplash-wave {
    background: linear-gradient(
        180deg,
        var(--bg-light) 0%,
        var(--white) 100%
    );
}

/* ==========================================
   MOBILE RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
    :root {
        --section-padding: 48px 16px;
    }
    
    .inner-hero {
        min-height: 360px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary,
    .hero-buttons .cta-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .why-content h2 {
        text-align: center;
    }
    
    .why-content p {
        text-align: center;
    }
    
    .checklist {
        text-align: center;
    }
    
    .trust-badges {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .section-heading h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .trust-badges {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================
   BOTTOM CTA / CONTACT FORM
   ========================================== */

.service-page #quote {
    text-align: center;
}

.service-page #quote h2,
.service-page #quote p {
    text-align: center;
}

.service-page .quote-form {
    max-width: 800px;
    margin: 32px auto 0;
    text-align: left;
}

.service-page .quote-form button[type="submit"] {
    display: block;
    margin: 10px auto 40px;
}