/* 
   Pure Steam Pro - Design System
   "Calm Clean Design" - Professional Neighbor
*/

:root {
    /* Color Palette */
    --primary: #5DA9E9;
    /* Soft Blue */
    --primary-dark: #2C5D7C;
    /* Deep Professional Blue */
    --accent: #7FB685;
    /* Soft Green */
    --bg-light: #F7FAFC;
    /* Light Neutral Background */
    --white: #FFFFFF;
    --text-charcoal: #2B2B2B;
    --text-muted: #5F6368;

    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Manrope', 'Inter', sans-serif;

    /* Spacing & Borders */
    --container-max: 1200px;
    --section-padding: 100px 20px;
    --border-radius: 12px;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 10px 40px rgba(44, 93, 124, 0.1);

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-charcoal);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-dark);
}

.gradient-text {
    color: var(--primary-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

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

/* Layout Utilities */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Grids - Mobile First */
.grid-3,
.services-grid,
.testimonials-grid,
.map-grid,
.quote-grid,
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {

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

@media (min-width: 992px) {

    .grid-3,
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid,
    .map-grid,
    .quote-grid,
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }

    .quote-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 80px;
    }

    .section-title h2 {
        font-size: 2.8rem;
    }
}

/* Cards */
.card,
.service-card,
.testimonial-card {
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--white);
    transition: var(--transition-smooth);
}

.card {
    background: var(--bg-light);
    padding: 40px;
}

.card:hover,
.service-card:hover,
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary);
}

.icon-wrap {
    background: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card h3 {
    margin-bottom: 15px;
}

/* CHAT Section */
.section-chat {
    background: var(--bg-light);
    padding: 80px 0;
}

.chat-container {
    background: var(--primary-dark);
    color: var(--white);
    padding: 40px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.chat-container h2.gradient-text {
    color: var(--white);
}

.chat-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.chat-item strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary);
}

.chat-item span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.chat-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
}

@media (min-width: 992px) {
    .chat-container {
        padding: 60px;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .chat-items {
        grid-template-columns: 1fr 1fr;
    }
}

/* Services */
.service-card {
    padding: 40px;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-card.residential h3 {
    color: var(--accent);
}

.service-card.commercial h3 {
    color: var(--primary-dark);
}

.service-card ul {
    margin-bottom: 30px;
    display: grid;
    gap: 12px;
}

.service-card li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.service-card li::before {
    content: '✓';
    color: currentColor;
    font-weight: bold;
}

/* About Section Stats */
.about-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.about-stats strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
}

.about-stats span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Areas Section */
.section-areas {
    background: var(--bg-light);
    padding: 80px 0;
}

.map-visual {
    background: #eef;
    height: 300px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-premium);
}

@media (min-width: 992px) {
    .map-visual {
        height: 400px;
    }
}

/* Quote Section */
.quote-section {
    background: var(--white);
    padding: 80px 0;
}

.quote-form {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
}

@media (min-width: 992px) {
    .quote-form {
        padding: 40px;
    }
}

.contact-methods {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

@media (min-width: 576px) {
    .contact-methods {
        flex-direction: row;
        justify-content: flex-start;
        gap: 40px;
    }
}

@media (min-width: 992px) {
    .contact-methods {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 0;
    }
}

.contact-method {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 15px;
}

.contact-method strong {
    display: block;
}

.contact-link {
    display: block;
    transition: var(--transition-smooth);
}

.contact-link:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.btn-full {
    width: 100%;
}

/* Hero Section Refinements */
.hero-btns {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 15px;
}

@media (min-width: 576px) {
    .hero-btns {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 992px) {
    .hero-btns {
        justify-content: flex-start;
    }
}

.eyebrow {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-premium);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.card,
.service-card,
.testimonial-card {
    transition: var(--transition-smooth);
}

.card:hover,
.service-card:hover,
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary) !important;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 15px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
}

.logo img {
    height: 175px;
    margin-bottom: -50px;
    position: absolute;
    top: 0;
    z-index: 10;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
    transition: var(--transition-smooth);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Nav Toggle / Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
    position: relative;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-dark);
    position: relative;
    transition: var(--transition-smooth);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--primary-dark);
    left: 0;
    transition: var(--transition-smooth);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

@media (max-width: 992px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition-smooth);
        z-index: 1050;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        font-weight: 700;
    }
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
}

.badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-premium);
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-float span {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.5rem;
}

/* Trust Strip */
.trust-strip {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .trust-flex {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
}

@media (min-width: 992px) {
    .trust-flex {
        justify-content: space-between;
        gap: 30px;
    }
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .trust-item {
        flex-direction: row;
    }
}

/* Service Area / Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Before/After Slider */
.ba-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 500px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
}

.ba-before,
.ba-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-after {
    clip-path: inset(0 50% 0 0);
}

.ba-range {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 10;
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--white);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 5;
}

.ba-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Contact Form */
.quote-section {
    background: var(--white);
    padding: 100px 0;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition-smooth);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(93, 169, 233, 0.1);
}

/* Floating Labels */
.form-group.floating {
    position: relative;
    margin-bottom: 25px;
}

.form-group.floating input,
.form-group.floating textarea {
    padding: 24px 15px 8px;
}

.form-group.floating label {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    font-weight: 400;
    color: var(--text-muted);
    margin: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.form-group.floating textarea ~ label {
    top: 24px;
}

.form-group.floating input:focus ~ label,
.form-group.floating input:not(:placeholder-shown) ~ label,
.form-group.floating textarea:focus ~ label,
.form-group.floating textarea:not(:placeholder-shown) ~ label {
    top: 12px;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
}

/* Checkboxes */
.form-group.checkbox-group .group-label {
    margin-bottom: 12px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 576px) {
    .checkbox-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400 !important;
    margin-bottom: 0 !important;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    accent-color: var(--primary);
    transform: scale(1.2);
    margin: 0;
}

/* Floating Actions Bar */
.floating-actions {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2000;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    position: relative;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn.wa { background-color: #25D366; }
.float-btn.phone { background-color: var(--primary); }
.float-btn.quote { background-color: var(--primary-dark); }

.float-btn span {
    position: absolute;
    right: 70px;
    background: var(--white);
    color: var(--text-charcoal);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

@media (min-width: 993px) {
    .floating-actions {
        display: none;
    }
}

.floating-wa {
    display: none; /* Hide old separate button */
}

/* Mobile Responsive */
@media (max-width: 992px) {

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .nav-cta {
        display: none;
    }

    .quote-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .quote-form {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
        text-align: left;
    }

    @media (max-width: 768px) {
        .header {
            padding: 10px 0;
        }

        .logo img {
            height: 60px;
            position: relative;
            margin-bottom: 0;
            top: 0;
            filter: none;
        }

        .ba-slider {
            height: 300px;
        }

        .section {
            padding: 50px 20px;
        }

        .hero-content h1 {
            font-size: 2.2rem;
        }
    }

    @media (max-width: 480px) {
        .ba-slider {
            height: 250px;
        }

        .hero-content h1 {
            font-size: 1.8rem;
        }
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        margin: 0 auto 40px;
    }
}
/* =========================
   FAQ PAGE
========================= */

.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(
        135deg,
        var(--primary-dark),
        var(--primary)
    );
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-category h2 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: var(--primary-dark);
    text-align: center;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: transform 0.25s ease,
                box-shadow 0.25s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.10);
}

.faq-item h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.faq-cta {
    background: var(--primary-dark);
    color: var(--white);
    padding: 30px 20px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
    text-align: left !important;
}

.faq-cta h3 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.faq-cta .quote-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form Status Styles */
.form-status {
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    animation: fadeIn 0.3s ease-out;
}

.form-status.success {
    background: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.form-status.error {
    background: rgba(211, 47, 47, 0.1);
    color: #d32f2f;
    border: 1px solid rgba(211, 47, 47, 0.2);
}

/* Specific overrides for FAQ CTA (Dark Blue Background) */
.faq-cta .form-status.success {
    background: rgba(255, 255, 255, 1);
    color: #1b5e20;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: none;
}

.faq-cta .form-status.error {
    background: #ffcdd2;
    color: #b71c1c;
}


.faq-cta .form-group label {
    color: rgba(255, 255, 255, 0.7);
}

.faq-cta .form-group input,
.faq-cta .form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.faq-cta .form-group input:focus,
.faq-cta .form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

@media (min-width: 992px) {
    .faq-cta {
        grid-template-columns: 1fr 1.2fr;
        gap: 80px;
        padding: 60px;
        border-radius: 30px;
    }
}