/* ============================================================
   TOTAL LAUNDRY — Design System
   Inspired by Laundra (Dribbble: WhiteFrame Creative)
   Colors: Deep Forest Green + Neon Lime + Light Mint
   Font: Inter Display
   Border Radius: 32px
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary: #02362C;
    --primary-light: #04493c;
    --accent: #CEFF3E;
    --accent-hover: #b8e636;
    --mint: #E6FEED;
    --mint-deep: #d1f5d9;
    --bg: #F9F9F9;
    --bg-white: #FFFFFF;
    --text: #141414;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    --border: #E5E7EB;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    --space-5xl: 128px;

    /* Radius */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 999px;

    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Layout */
    --max-width: 1240px;
    --nav-height: 80px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol { list-style: none; }

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

.text-muted { color: var(--text-muted); }

/* ── SECTION TAGS & HEADERS ── */
.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--mint);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: var(--space-lg);
}

.section-title {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text);
    max-width: 720px;
}

.section-header {
    margin-bottom: var(--space-3xl);
}

.section-header .section-title {
    margin-bottom: var(--space-md);
}

.section-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.6;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary);
    color: #fff;
    padding: 16px 28px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(2, 54, 44, 0.25);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(2, 54, 44, 0.4);
}

.btn-primary .btn-arrow {
    display: inline-flex;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--primary);
    padding: 16px 28px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    text-align: center;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    transition: all 0.3s ease;
}

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

.btn-text .play-icon {
    display: inline-flex;
    transition: transform 0.3s ease;
}

.btn-text:hover .play-icon {
    transform: scale(1.1);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 16px 28px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.35s ease;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-white);
    color: var(--primary);
    padding: 16px 28px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--border);
    transition: all 0.35s ease;
}

.btn-call:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 48px);
    max-width: 1100px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-pill);
    padding: 10px 12px 10px 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .nav-inner {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.12);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

.logo-icon {
    color: var(--primary);
}

.logo-text {
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--mint);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-link {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

.mobile-link:hover {
    color: var(--accent);
}

.mobile-cta {
    margin-top: 16px;
    padding: 14px 32px;
    font-size: 16px;
}

/* ── HERO ── */
.hero {
    padding-top: calc(var(--nav-height) + 80px);
    padding-bottom: var(--space-4xl);
    background: var(--bg);
    overflow: hidden;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-title {
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--primary);
    margin-bottom: var(--space-lg);
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 460px;
    margin-bottom: var(--space-xl);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 520px;
}

.hero-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-img:hover img {
    transform: scale(1.05);
}

.hero-img-1 {
    grid-row: 1 / 3;
    background: var(--mint);
    animation: float 6s ease-in-out infinite;
    box-shadow: var(--shadow-lg);
}

.hero-img-2 {
    background: var(--primary);
    animation: float 5s ease-in-out infinite 1s;
    box-shadow: var(--shadow-md);
}

.hero-img-3 {
    background: var(--mint-deep);
    animation: float 7s ease-in-out infinite 0.5s;
    box-shadow: var(--shadow-md);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* Placeholder for missing images */
.hero-img img[src*="images/"] {
    background: linear-gradient(135deg, var(--mint) 0%, var(--mint-deep) 100%);
    min-height: 100%;
}

/* ── TRUSTED / STATS ── */
.trusted {
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trusted-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.trusted-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    min-width: 150px;
}

.trusted-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
    line-height: 1;
}

.trusted-suffix {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.trusted-label {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
}

.trusted-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
}

/* ── ABOUT ── */
.about {
    padding: var(--space-5xl) 0;
}

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

.about-img-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--mint);
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.03);
}

.about-content .section-title {
    max-width: 540px;
    margin-bottom: var(--space-lg);
}

.about-text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    max-width: 480px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.about-feature {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--mint);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.about-feature h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ── SERVICES ── */
.services {
    padding: var(--space-5xl) 0;
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}

/* Featured (Dry Cleaning) */
.service-card.featured {
    background: var(--primary);
    color: #fff;
    border-color: transparent;
}

.service-card.featured p,
.service-card.featured .service-price {
    color: rgba(255,255,255,0.7);
}

.service-card.featured .service-link {
    color: var(--accent);
}

.service-card.featured::before {
    background: var(--accent);
}

.service-card-icon {
    margin-bottom: var(--space-lg);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    flex: 1;
}

.service-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 10px;
    color: var(--accent-hover);
}

/* ── HOW IT WORKS ── */
.how-it-works {
    padding: var(--space-5xl) 0;
    background: var(--bg-white);
}

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

.step {
    position: relative;
}

.step-num {
    font-size: 64px;
    font-weight: 800;
    color: var(--mint);
    line-height: 1;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.04em;
}

.step-img-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--mint);
    margin-bottom: var(--space-lg);
}

.step-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.step:hover .step-img-wrap img {
    transform: scale(1.05);
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--text);
}

.step p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── PRICING ── */
.pricing {
    padding: var(--space-5xl) 0;
    background: var(--bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.price-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.price-card.popular {
    background: var(--primary);
    color: #fff;
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-6px);
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 20px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

.price-card-top h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.price-card-top p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.price-card.popular .price-card-top p {
    color: rgba(255,255,255,0.6);
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--border);
}

.price-card.popular .price-amount {
    border-color: rgba(255,255,255,0.15);
}

.price-currency {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-muted);
}

.price-card.popular .price-currency {
    color: rgba(255,255,255,0.6);
}

.price-value {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

.price-unit {
    font-size: 16px;
    color: var(--text-muted);
}

.price-card.popular .price-unit {
    color: rgba(255,255,255,0.6);
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: var(--space-xl);
}

.price-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.check {
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
}

.price-card.popular .btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.price-card.popular .btn-primary:hover {
    background: var(--accent-hover);
}

/* ── REVIEWS ── */
.reviews {
    padding: var(--space-5xl) 0;
    background: var(--bg-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--bg);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

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

.review-stars {
    color: #FACC15;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
}

.review-card > p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
}

.review-author span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ── AREAS ── */
.areas {
    padding: var(--space-5xl) 0;
    background: var(--bg);
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: var(--space-2xl);
}

.area-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    background: var(--bg-white);
    border: 1px solid var(--border);
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    transition: all 0.3s ease;
}

.area-pill:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.area-pill:hover .area-dot {
    background: var(--accent);
}

.area-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    transition: background 0.3s ease;
}

.areas-map-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}

.areas-map-wrap iframe {
    display: block;
}

/* ── CTA SECTION ── */
.cta {
    padding: var(--space-5xl) 0;
}

.cta-card {
    background: var(--primary);
    border-radius: var(--radius-xl);
    padding: var(--space-4xl) var(--space-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(206, 255, 62, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(206, 255, 62, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-text {
    position: relative;
    z-index: 1;
    margin-bottom: var(--space-xl);
}

.cta-text h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-sm);
}

.cta-text p {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-bottom: var(--space-lg);
}

.cta-hours {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    position: relative;
    z-index: 1;
}

/* ── FOOTER ── */
.footer {
    padding: var(--space-4xl) 0 var(--space-xl);
    background: var(--bg-white);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: var(--space-md);
    max-width: 280px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-lg);
    color: var(--text);
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-light);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--text-light);
}

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

/* ── FLOATING WHATSAPP ── */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: fabPulse 3s ease-in-out infinite;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes fabPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ── ANIMATIONS ── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .hero-images {
        height: 360px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

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

    .nav-links { display: none; }
    .nav-phone { display: none; }
    .nav-hamburger { display: flex; }
}

@media (max-width: 768px) {
    .hero {
        padding-top: calc(var(--nav-height) + 40px);
    }

    .hero-title {
        font-size: clamp(36px, 10vw, 52px);
    }

    .hero-images {
        height: 280px;
        gap: 10px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .trusted-row {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .trusted-divider {
        width: 48px;
        height: 1px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .price-card.popular {
        transform: none;
    }

    .price-card.popular:hover {
        transform: translateY(-6px);
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-card {
        padding: var(--space-2xl) var(--space-lg);
    }

    .section-title {
        font-size: clamp(28px, 7vw, 42px);
    }

    .navbar {
        top: 12px;
        width: calc(100% - 24px);
    }

    .nav-inner {
        padding: 8px 8px 8px 16px;
    }
}

@media (max-width: 480px) {
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-whatsapp,
    .btn-call {
        width: 100%;
        justify-content: center;
    }

    .hero-images {
        height: 220px;
    }
}
