/* ========================================
   MAIRA'S CLEANING SERVICES - STYLESHEET
   ======================================== */

/* ROOT VARIABLES */
:root {
    --color-white: #FFFFFF;
    --color-teal: #2EC4B6;
    --color-sky: #6EC6FF;
    --color-light-gray: #F3F3F3;
    --color-dark: #333333;
    --color-text: #444444;
    --color-border: #EEEEEE;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', 'Inter', sans-serif;
    
    --shadow-light: 0 2px 8px rgba(46, 196, 182, 0.1);
    --shadow-medium: 0 4px 16px rgba(46, 196, 182, 0.15);
    --shadow-heavy: 0 8px 32px rgba(46, 196, 182, 0.2);
}

/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--color-teal);
    transition: color 0.3s ease;
}

a:hover {
    color: #1d9e94;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    background: var(--color-white);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-teal);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--color-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--color-teal);
}

.nav-cta {
    background: var(--color-teal) !important;
    color: var(--color-white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: #1d9e94 !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-teal);
    margin: 5px 0;
    transition: 0.3s;
}

/* ========================================
   STICKY MOBILE CTA
   ======================================== */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    animation: slideUp 0.5s ease;
}

.sticky-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-teal);
    color: var(--color-white);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-heavy);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #1d9e94;
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(46, 196, 182, 0.4);
}

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

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: linear-gradient(135deg, #e8f9f7 0%, #f0f8ff 100%);
    padding: 100px 20px;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(110, 198, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="dots" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="rgba(46,196,182,0.05)"/></pattern></defs><rect width="1200" height="600" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subheading {
    font-size: 1.3rem;
    color: var(--color-teal);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-supporting {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.badge {
    background: var(--color-white);
    padding: 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    color: var(--color-dark);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    color: var(--color-teal);
}

/* ========================================
   TRUST STRIP
   ======================================== */
.trust-strip {
    background: var(--color-teal);
    color: var(--color-white);
    padding: 3rem 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.trust-icon {
    font-size: 2rem;
    font-weight: bold;
}

.trust-text {
    font-weight: 600;
    font-size: 1.05rem;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #1d9e94;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

.btn-secondary:hover {
    background: var(--color-teal);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ========================================
   SECTION STYLING
   ======================================== */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: 5rem 20px;
    background: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--color-light-gray);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--color-teal);
    background: var(--color-white);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--color-text);
    line-height: 1.8;
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-choose-us {
    padding: 5rem 20px;
    background: var(--color-light-gray);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.why-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.why-card h3 {
    font-family: var(--font-heading);
    color: var(--color-teal);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.why-card p {
    color: var(--color-text);
    line-height: 1.8;
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process {
    padding: 5rem 20px;
    background: var(--color-white);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background: var(--color-light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.step:hover {
    background: var(--color-sky);
    color: var(--color-white);
    transform: scale(1.05);
}

.step:hover h3 {
    color: var(--color-white);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--color-teal);
    color: var(--color-white);
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step:hover .step-number {
    background: var(--color-dark);
}

.step h3 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.step p {
    color: var(--color-text);
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--color-teal);
    font-weight: bold;
}

@media (max-width: 768px) {
    .step-arrow {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
    }
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews {
    padding: 5rem 20px;
    background: var(--color-light-gray);
}

.review-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.review-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.review-card.featured {
    border: 3px solid var(--color-teal);
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.05) 0%, rgba(110, 198, 255, 0.05) 100%);
}

.review-stars {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-style: italic;
}

.review-author {
    font-weight: 600;
    color: var(--color-teal);
    font-size: 1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* ========================================
   SERVICE AREA SECTION
   ======================================== */
.service-area {
    padding: 5rem 20px;
    background: var(--color-white);
}

.service-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location {
    background: var(--color-light-gray);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.location:hover {
    background: var(--color-teal);
    color: var(--color-white);
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.location h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.location:hover h3,
.location:hover p {
    color: var(--color-white);
}

.location p {
    color: var(--color-text);
    line-height: 1.6;
}

/* ========================================
   QUOTE FORM SECTION
   ======================================== */
.quote-section {
    padding: 5rem 20px;
    background: linear-gradient(135deg, #e8f9f7 0%, #f0f8ff 100%);
}

.quote-form {
    max-width: 600px;
    margin: 3rem auto;
    background: var(--color-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-heavy);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.6rem;
    font-size: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.1);
}

.quote-form .btn-large {
    width: 100%;
    margin-bottom: 1rem;
}

.form-note {
    text-align: center;
    color: var(--color-text);
    font-size: 0.95rem;
    font-style: italic;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta {
    background: var(--color-sky);
    color: var(--color-white);
    padding: 4rem 20px;
    text-align: center;
}

.final-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

.final-cta .btn-primary,
.final-cta .btn-secondary {
    background: var(--color-white);
    color: var(--color-sky);
    border-color: var(--color-white);
    font-weight: 700;
}

.final-cta .btn-primary:hover,
.final-cta .btn-secondary:hover {
    background: var(--color-teal);
    color: var(--color-white);
    border-color: var(--color-teal);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 3rem 20px 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: var(--font-heading);
    color: var(--color-teal);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p {
    line-height: 1.8;
    color: #bbb;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    color: #bbb;
}

.footer-section a {
    color: var(--color-teal);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-sky);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1.5rem;
    text-align: center;
    color: #999;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-subheading {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .trust-strip {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .quote-form {
        padding: 2rem;
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }

    .final-cta-buttons {
        flex-direction: column;
    }

    .final-cta-buttons .btn {
        width: 100%;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 50px 20px;
        min-height: auto;
    }

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

    .section-title {
        font-size: 1.6rem;
    }

    .trust-strip {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 20px;
    }

    .services {
        padding: 3rem 20px;
    }

    .quote-form {
        padding: 1.5rem;
    }

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

    .service-card {
        padding: 1.5rem;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Print styles */
@media print {
    .navbar,
    .sticky-cta,
    .final-cta {
        display: none;
    }
}
