/* ===================================
   Lima Cleaning - Modern Redesign
   Humanist, Friendly, Warm Aesthetic
   =================================== */

/* CSS Custom Properties */
:root {
    /* Brand Colors - Soft, friendly blue palette */
    --color-primary: #6AAFC7;
    --color-primary-dark: #5A9AB5;
    --color-primary-light: #8BC4D8;
    --color-primary-pale: #E8F4F8;

    /* Warm neutrals */
    --color-white: #FFFFFF;
    --color-off-white: #FAFBFC;
    --color-cream: #F8F9FA;
    --color-warm-gray: #F5F6F7;
    --color-text: #2D3748;
    --color-text-light: #718096;
    --color-text-muted: #A0AEC0;
    --color-border: #E2E8F0;

    /* Accent colors */
    --color-success: #48BB78;
    --color-error: #F56565;
    --color-gold: #ECC94B;

    /* Typography - Modern Humanist Sans */
    --font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Font Sizes - Fluid Typography */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;
    --text-6xl: 4.5rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Border Radius - Softer, friendlier */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    /* Shadows - Soft and subtle */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.06), 0 4px 8px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(106, 175, 199, 0.15);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Container */
    --container-max: 1200px;
    --container-narrow: 800px;
    --container-padding: 1.5rem;
}

/* ===================================
   Reset & Base Styles
   =================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

p {
    color: var(--color-text-light);
}

/* ===================================
   Utility Classes
   =================================== */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container--narrow {
    max-width: var(--container-narrow);
}

/* Section Styles */
.section {
    padding: var(--space-24) 0;
}

.section--lg {
    padding: var(--space-32) 0;
}

.section--gray {
    background-color: var(--color-warm-gray);
}

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

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-label {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.section-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
}

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

@media (max-width: 768px) {
    .section {
        padding: var(--space-16) 0;
    }

    .section--lg {
        padding: var(--space-20) 0;
    }

    .section-title {
        font-size: var(--text-3xl);
    }
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    white-space: nowrap;
    border: 2px solid transparent;
}

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

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

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

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

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

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

.btn--ghost {
    background-color: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn--ghost:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--lg {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-lg);
}

.btn svg {
    width: 20px;
    height: 20px;
}

/* ===================================
   Header & Navigation
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: all var(--transition-base);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.nav__logo-icon {
    width: 44px;
    height: 44px;
    color: var(--color-primary);
}

.nav__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav__logo-name {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-primary);
}

.nav__logo-sub {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.header.scrolled .nav__logo-text,
.header.scrolled .nav__logo-icon {
    color: var(--color-primary);
}

.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-10);
}

.nav__link {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.nav__link:hover {
    color: var(--color-primary);
}

.nav__close {
    display: none;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.nav__phone {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 600;
    color: var(--color-text);
}

.nav__phone svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

.nav__phone:hover {
    color: var(--color-primary);
}

.nav__toggle {
    display: none;
    color: var(--color-text);
    padding: var(--space-2);
}

/* Mobile Navigation */
@media (max-width: 900px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 360px;
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        padding: var(--space-20) var(--space-8);
        transition: right var(--transition-base);
        box-shadow: var(--shadow-xl);
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: var(--space-6);
        width: 100%;
    }

    .nav__link {
        font-size: var(--text-xl);
    }

    .nav__close {
        display: block;
        position: absolute;
        top: var(--space-6);
        right: var(--space-6);
        color: var(--color-text);
        padding: var(--space-2);
    }

    .nav__toggle {
        display: block;
    }

    .nav__phone {
        display: none;
    }

    .nav__actions .btn {
        padding: var(--space-2) var(--space-4);
        font-size: var(--text-sm);
    }
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(165deg, var(--color-primary-pale) 0%, var(--color-white) 50%, var(--color-warm-gray) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, var(--color-primary-pale) 0%, transparent 70%);
    opacity: 0.6;
    pointer-events: none;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    padding: var(--space-32) 0;
}

.hero__content {
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background-color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-6);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-success);
    border-radius: var(--radius-full);
}

.hero__title {
    font-size: var(--text-6xl);
    line-height: 1.05;
    margin-bottom: var(--space-6);
}

.hero__title-highlight {
    color: var(--color-primary);
}

.hero__subtitle {
    font-size: var(--text-xl);
    color: var(--color-text-light);
    margin-bottom: var(--space-8);
    max-width: 500px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.hero__trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

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

.hero__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero__image {
    width: 100%;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

/* Placeholder for hero image */
.hero__placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    border-radius: var(--radius-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: var(--shadow-xl);
}

.hero__placeholder svg {
    width: 120px;
    height: 120px;
    margin-bottom: var(--space-4);
    opacity: 0.9;
}

.hero__placeholder-text {
    font-size: var(--text-sm);
    opacity: 0.8;
    text-align: center;
    padding: 0 var(--space-8);
}

.hero__floating-card {
    position: absolute;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.hero__floating-card--top {
    top: 10%;
    right: -10%;
}

.hero__floating-card--bottom {
    bottom: 15%;
    left: -10%;
}

.hero__floating-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-primary-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.hero__floating-text {
    font-size: var(--text-sm);
}

.hero__floating-text strong {
    display: block;
    color: var(--color-text);
}

.hero__floating-text span {
    color: var(--color-text-light);
}

@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__content {
        order: 1;
    }

    .hero__visual {
        order: 0;
        margin-bottom: var(--space-8);
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__trust {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero__image-wrapper {
        max-width: 400px;
        padding: 0 var(--space-6);
    }

    .hero__floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-top: 100px;
    }

    .hero__container {
        padding: var(--space-12) 0;
    }

    .hero__title {
        font-size: var(--text-4xl);
    }

    .hero__subtitle {
        font-size: var(--text-lg);
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===================================
   Services Section
   =================================== */

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

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.service-card {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid var(--color-border);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-5);
    background-color: var(--color-primary-pale);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all var(--transition-base);
}

.service-card:hover .service-card__icon {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
}

.service-card__icon svg {
    width: 32px;
    height: 32px;
}

.service-card__title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
}

.service-card__text {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services__grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: var(--space-6);
    }
}

/* ===================================
   About Section
   =================================== */

.about {
    background-color: var(--color-warm-gray);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.about__image-wrapper {
    position: relative;
}

.about__image {
    width: 100%;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* Placeholder for about image */
.about__placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--color-primary-pale) 0%, var(--color-cream) 100%);
    border-radius: var(--radius-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.about__placeholder svg {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-4);
    opacity: 0.6;
}

.about__placeholder-text {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    text-align: center;
    padding: 0 var(--space-8);
}

.about__stats {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about__stats-number {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.about__stats-label {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.about__content .section-label {
    text-align: left;
}

.about__content .section-title {
    text-align: left;
}

.about__text {
    font-size: var(--text-lg);
    margin-bottom: var(--space-6);
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-top: var(--space-8);
}

.about__feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-weight: 500;
    color: var(--color-text);
}

.about__feature-icon {
    width: 24px;
    height: 24px;
    background-color: var(--color-primary-pale);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.about__feature-icon svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 900px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .about__content .section-label,
    .about__content .section-title {
        text-align: center;
    }

    .about__text {
        text-align: center;
    }

    .about__features {
        justify-items: center;
    }

    .about__stats {
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 600px) {
    .about__features {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Why Choose Us Section
   =================================== */

.why-us {
    background-color: var(--color-white);
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.why-us__card {
    text-align: center;
    padding: var(--space-10);
    background-color: var(--color-warm-gray);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.why-us__card:hover {
    background-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.why-us__card:hover .why-us__icon {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.why-us__card:hover .why-us__title,
.why-us__card:hover .why-us__text {
    color: var(--color-white);
}

.why-us__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    background-color: var(--color-primary-pale);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all var(--transition-base);
}

.why-us__icon svg {
    width: 36px;
    height: 36px;
}

.why-us__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
    transition: color var(--transition-base);
}

.why-us__text {
    font-size: var(--text-base);
    color: var(--color-text-light);
    transition: color var(--transition-base);
}

@media (max-width: 900px) {
    .why-us__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ===================================
   Testimonials Section
   =================================== */

.testimonials {
    background: linear-gradient(180deg, var(--color-warm-gray) 0%, var(--color-white) 100%);
}

.testimonials__slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials__track {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-card {
    flex: 0 0 100%;
    padding: var(--space-10);
    background-color: var(--color-white);
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.testimonial-card__stars {
    display: flex;
    justify-content: center;
    gap: var(--space-1);
    margin-bottom: var(--space-6);
    color: var(--color-gold);
}

.testimonial-card__stars svg {
    width: 24px;
    height: 24px;
}

.testimonial-card__quote {
    font-size: var(--text-xl);
    color: var(--color-text);
    margin-bottom: var(--space-6);
    line-height: 1.7;
    font-style: normal;
}

.testimonial-card__author {
    font-style: normal;
    font-weight: 600;
    color: var(--color-primary);
    font-size: var(--text-base);
}

.testimonials__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.testimonials__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background-color: var(--color-white);
    color: var(--color-text);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

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

.testimonials__btn svg {
    width: 20px;
    height: 20px;
}

.testimonials__dots {
    display: flex;
    gap: var(--space-2);
}

.testimonials__dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background-color: var(--color-border);
    transition: all var(--transition-fast);
}

.testimonials__dot.active {
    background-color: var(--color-primary);
    width: 30px;
}

/* ===================================
   CTA Section
   =================================== */

.cta {
    background: linear-gradient(135deg, rgba(106, 175, 199, 0.9) 0%, rgba(74, 140, 163, 0.9) 100%), url('../images/harbor-image.jpg');
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta__content {
    position: relative;
    z-index: 1;
}

.cta .section-title {
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.cta__text {
    font-size: var(--text-lg);
    color: var(--color-white);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.cta__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-top: var(--space-6);
    font-size: var(--text-lg);
}

.cta__phone a {
    font-weight: 700;
    font-size: var(--text-2xl);
}

.cta__phone a:hover {
    text-decoration: underline;
}

/* ===================================
   Contact Section
   =================================== */

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

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-12);
}

/* Contact Form */
.contact-form {
    background-color: var(--color-white);
    padding: var(--space-10);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(106, 175, 199, 0.1);
}

.contact-form__header {
    text-align: center;
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-6);
    border-bottom: 2px solid var(--color-primary-pale);
}

.contact-form__title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2);
    color: var(--color-primary-dark);
}

.contact-form__subtitle {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.contact-form__group {
    margin-bottom: var(--space-5);
}

.contact-form__label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
    width: 100%;
    padding: var(--space-4);
    font-size: var(--text-base);
    font-family: inherit;
    color: var(--color-text);
    background-color: var(--color-cream);
    border: 2px solid var(--color-cream);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
    color: var(--color-text-light);
    opacity: 0.7;
}

.contact-form__input:hover,
.contact-form__select:hover,
.contact-form__textarea:hover {
    border-color: var(--color-primary-pale);
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
    outline: none;
    background-color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px var(--color-primary-pale);
}

.contact-form__select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23718096' 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 var(--space-4) center;
    background-size: 18px;
    padding-right: var(--space-12);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__submit {
    width: 100%;
    margin-top: var(--space-4);
    padding: var(--space-5) var(--space-8);
    font-size: var(--text-lg);
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    box-shadow: 0 4px 14px rgba(106, 175, 199, 0.4);
    transition: all var(--transition-base);
}

.contact-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 175, 199, 0.5);
}

.contact-form__message {
    margin-top: var(--space-6);
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-lg);
    text-align: center;
    display: none;
    font-weight: 500;
}

.contact-form__message.success {
    display: block;
    background-color: rgba(72, 187, 120, 0.1);
    color: var(--color-success);
    border: 1px solid rgba(72, 187, 120, 0.2);
}

.contact-form__message.error {
    display: block;
    background-color: rgba(245, 101, 101, 0.1);
    color: var(--color-error);
    border: 1px solid rgba(245, 101, 101, 0.2);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact-info__card {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
}

.contact-info__title {
    font-size: var(--text-xl);
    color: var(--color-white);
    margin-bottom: var(--space-6);
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info__item:last-child {
    border-bottom: none;
}

.contact-info__icon {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info__icon svg {
    width: 20px;
    height: 20px;
}

.contact-info__label {
    display: block;
    font-size: var(--text-sm);
    opacity: 0.8;
    margin-bottom: var(--space-1);
}

.contact-info__value {
    font-weight: 600;
    font-size: var(--text-lg);
}

a.contact-info__value:hover {
    text-decoration: underline;
}

.contact-info__hours {
    background-color: var(--color-warm-gray);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
}

.contact-info__hours-title {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.contact-info__hours-title svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.contact-info__hours-text {
    color: var(--color-text-light);
    font-size: var(--text-sm);
}

@media (max-width: 900px) {
    .contact__grid {
        grid-template-columns: 1fr;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Footer
   =================================== */

.footer {
    background-color: var(--color-text);
    color: var(--color-white);
    padding: var(--space-16) 0 var(--space-8);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    padding-bottom: var(--space-12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.footer__logo-icon {
    width: 40px;
    height: 40px;
    color: var(--color-primary-light);
}

.footer__logo-text {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-white);
}

.footer__tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    line-height: 1.7;
}

.footer__title {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-5);
    color: var(--color-white);
}

.footer__list li {
    padding: var(--space-2) 0;
}

.footer__link {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

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

.footer__text {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
}

.footer__bottom {
    padding-top: var(--space-8);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 900px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }

    .footer__brand {
        grid-column: span 2;
        max-width: none;
        text-align: center;
    }

    .footer__logo {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__brand {
        grid-column: span 1;
    }

    .footer__bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
}

/* ===================================
   Mobile Menu Overlay
   =================================== */

.nav-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 999;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===================================
   Animations
   =================================== */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Form Loading State */
.btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-white);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===================================
   Service Area / Locations
   =================================== */

.locations {
    background-color: var(--color-primary-pale);
}

.locations__content {
    text-align: center;
}

.locations__text {
    font-size: var(--text-lg);
    color: var(--color-text-light);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.locations__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
}

.locations__tag {
    padding: var(--space-2) var(--space-5);
    background-color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
    box-shadow: var(--shadow-sm);
}
