/* ================================
   GREEN CLEANING — STYLE.CSS
================================ */

/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #30343A;
    background: #FFFFFF;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* VARIABLES */

:root {
    /* VERDES PRINCIPALES */
    --primary: #087A3D;
    --primary-dark: #045C2E;
    --primary-deep: #034B26;
    --primary-soft: #E8F5EE;

    /* VERDES SECUNDARIOS */
    --secondary: #2FA866;
    --secondary-dark: #16824A;
    --secondary-soft: #F0FAF4;

    /* ACENTO VERDE PREMIUM */
    --accent: #74B843;
    --accent-dark: #4F8F2F;
    --accent-soft: #EEF8E8;

    /* NEUTROS */
    --dark: #2E3133;
    --text: #30343A;
    --muted: #6B7280;

    --light: #F5F8F5;
    --white: #FFFFFF;
    --border: #DDE9E0;

    /* UI */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;

    --shadow: 0 18px 45px rgba(0, 0, 0, .08);
    --shadow-hover: 0 24px 60px rgba(0, 0, 0, .12);

    --transition: .3s ease;
}

/* GLOBAL */

.container {
    width: min(1200px, 90%);
    margin: auto;
}

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.section-title span {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
}

.section-title h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-top: 12px;
    color: var(--dark);
}

.section-title p {
    margin-top: 18px;
    color: var(--muted);
    line-height: 1.8;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-secondary {
    color: var(--primary);
    border-color: var(--primary);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* HEADER / NAVBAR */

.header {
    position: fixed;
    inset: 0 0 auto 0;
    width: 100%;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    z-index: 999;
    box-shadow: 0 6px 22px rgba(0, 0, 0, .04);
}

.header-scrolled {
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}

.navbar {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 54px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-btn {
    padding: 12px 24px;
}

/* MEGA MENU NAVBAR */

.nav-item {
    position: relative;
}

.nav-link-button {
    border: none;
    background: transparent;
    font-family: inherit;
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-link-button span {
    font-size: 14px;
    transition: var(--transition);
}

.nav-link-button:hover {
    color: var(--primary);
}

.has-mega:hover .nav-link-button,
.has-mega.open .nav-link-button {
    color: var(--primary);
}

.has-mega:hover .nav-link-button span,
.has-mega.open .nav-link-button span {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: calc(100% + 26px);
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: min(1060px, calc(100vw - 80px));
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .25s ease;
    z-index: 1000;
}

.has-mega:hover .mega-menu,
.has-mega.open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: 1fr 1.35fr 1.35fr 1.15fr;
    gap: 28px;
    padding: 34px;
}

.mega-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mega-column span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    margin-bottom: 8px;
}

.mega-column a {
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    transition: var(--transition);
}

.mega-column a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.mega-column-featured {
    background:
        radial-gradient(circle at top right, rgba(116, 184, 67, .22), transparent 35%),
        var(--light);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.mega-column-featured h4 {
    font-size: 22px;
    line-height: 1.25;
    color: var(--dark);
}

.mega-column-featured p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.mega-column-featured .mega-cta {
    display: inline-flex;
    width: fit-content;
    background: var(--primary);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 800;
}

.mega-column-featured .mega-cta:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* MOBILE MENU BUTTON */

.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--primary);
    border-radius: 12px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 999px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

body.menu-open {
    overflow: hidden;
}

/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at top left, rgba(8, 122, 61, .16), transparent 35%),
        linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    padding-top: 130px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: var(--primary-soft);
    color: var(--primary-dark);
    padding: 11px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 26px;
}

.hero h1 {
    font-size: 62px;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--dark);
    margin-bottom: 26px;
}

.hero p {
    font-size: 18px;
    line-height: 1.85;
    color: var(--muted);
    max-width: 620px;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 42px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 680px;
}

.hero-stats div {
    background: rgba(255, 255, 255, .82);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .04);
}

.hero-stats strong {
    display: block;
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 6px;
}

.hero-stats span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: "";
    position: absolute;
    width: 82%;
    height: 82%;
    background: var(--accent);
    border-radius: var(--radius-lg);
    right: -18px;
    bottom: -18px;
    opacity: .28;
    z-index: 0;
}

.hero-image img {
    position: relative;
    z-index: 1;
    height: 620px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* SERVICES */

.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card img {
    height: 240px;
    object-fit: cover;
}

.service-card-content {
    padding: 34px;
}

.service-card-content span {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 12px;
}

.service-card-content h3 {
    font-size: 25px;
    line-height: 1.25;
    margin-bottom: 16px;
    color: var(--dark);
}

.service-card-content p {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 24px;
}

.service-card-content a {
    color: var(--primary);
    font-weight: 800;
}

/* PROCESS */

.process {
    background: var(--light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: 0 12px 34px rgba(0, 0, 0, .05);
}

.process-step span {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-weight: 800;
    margin-bottom: 22px;
}

.process-step h3 {
    font-size: 21px;
    margin-bottom: 14px;
    color: var(--dark);
}

.process-step p {
    color: var(--muted);
    line-height: 1.75;
}

/* BEFORE AFTER */

.before-after {
    background: var(--white);
}

.before-after-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.before-after-content span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.before-after-content h2 {
    font-size: 44px;
    line-height: 1.15;
    margin: 14px 0 22px;
    color: var(--dark);
}

.before-after-content p {
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 30px;
}

.before-after-image img {
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* SECTORS */

.sectors {
    background: var(--light);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.sectors-grid a {
    background: var(--white);
    padding: 24px;
    text-align: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-weight: 800;
    color: var(--dark);
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .03);
}

.sectors-grid a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.sectors-grid a:focus {
    outline: 3px solid rgba(8, 122, 61, .25);
    outline-offset: 3px;
}

/* COVERAGE */

.coverage {
    background: var(--white);
}

.coverage-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    max-width: 1000px;
    margin: auto;
}

.coverage-grid span {
    background: var(--primary-soft);
    color: var(--primary);
    border: 1px solid rgba(8, 122, 61, .18);
    padding: 13px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
}

/* TESTIMONIALS */

.testimonials {
    background:
        linear-gradient(rgba(46, 49, 51, .92), rgba(46, 49, 51, .92)),
        url("../img/hero/hero-cleaning.webp");
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.testimonials .section-title h2 {
    color: var(--white);
}

.testimonials .section-title span {
    color: var(--accent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(10px);
    padding: 34px;
    border-radius: var(--radius-md);
}

.testimonial-card p {
    line-height: 1.85;
    margin-bottom: 24px;
}

.testimonial-card h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.testimonial-card span {
    color: var(--accent);
    font-size: 14px;
}

/* FINAL CTA */

.final-cta {
    background: var(--white);
}

.final-cta-box {
    background:
        radial-gradient(circle at top right, rgba(116, 184, 67, .28), transparent 28%),
        linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: var(--shadow);
}

.final-cta-box span {
    color: #DDF6C6;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.final-cta-box h2 {
    font-size: 40px;
    line-height: 1.2;
    margin: 12px 0 16px;
    max-width: 720px;
}

.final-cta-box p {
    line-height: 1.8;
    opacity: .9;
    max-width: 680px;
}

/* FOOTER */

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 70px 0;
    text-align: center;
}

.footer h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--accent);
}

.footer p {
    color: rgba(255, 255, 255, .75);
    margin-bottom: 22px;
}

.footer span {
    color: rgba(255, 255, 255, .5);
    font-size: 14px;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin: 0 auto 20px;
}

/* INTERNAL PAGES */

.page-hero {
    padding: 170px 0 100px;
    background:
        radial-gradient(circle at top left, rgba(8, 122, 61, .14), transparent 35%),
        linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    text-align: center;
}

.page-hero span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.page-hero h1 {
    font-size: 54px;
    line-height: 1.1;
    letter-spacing: -1.8px;
    max-width: 900px;
    margin: 18px auto 24px;
    color: var(--dark);
}

.page-hero p {
    max-width: 760px;
    margin: auto;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.services-detail {
    background: var(--white);
}

/* RESIDENTIAL / SHARED HUB PAGES */

.residential-intro {
    background: var(--white);
}

.residential-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.residential-image img {
    height: 580px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.residential-content span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.residential-content h2 {
    font-size: 44px;
    line-height: 1.15;
    margin: 16px 0 22px;
    color: var(--dark);
}

.residential-content p {
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 20px;
}

.residential-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.residential-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.residential-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.residential-card img {
    height: 240px;
    object-fit: cover;
}

.residential-card-content {
    padding: 28px;
}

.residential-card-content h3 {
    margin-bottom: 14px;
    font-size: 24px;
    color: var(--dark);
}

.residential-card-content p {
    color: var(--muted);
    line-height: 1.75;
}

.service-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--primary);
    font-weight: 800;
}

.residential-benefits {
    background: var(--light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-item {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .05);
}

.benefit-item h3 {
    margin-bottom: 16px;
    font-size: 22px;
    color: var(--dark);
}

.benefit-item p {
    color: var(--muted);
    line-height: 1.75;
}

/* GALLERY */

.gallery-section {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 24px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.gallery-card.large {
    grid-row: span 2;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .45s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, .72),
        rgba(0, 0, 0, .12),
        transparent
    );
    color: var(--white);
}

.gallery-overlay span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    margin-bottom: 8px;
}

.gallery-overlay h3 {
    font-size: 24px;
    line-height: 1.25;
}

.video-gallery {
    background: var(--light);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.video-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.video-placeholder {
    height: 420px;
    border-radius: var(--radius-sm);
    background:
        linear-gradient(rgba(8, 122, 61, .78), rgba(8, 122, 61, .78)),
        url("../img/hero/hero-cleaning.webp");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 18px;
}

.video-card h3 {
    font-size: 22px;
    color: var(--dark);
}

/* CONTACT */

.contact-section {
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.contact-info > span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.contact-info h2 {
    font-size: 44px;
    line-height: 1.15;
    margin: 16px 0 22px;
    color: var(--dark);
}

.contact-info > p {
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 32px;
}

.contact-cards {
    display: grid;
    gap: 18px;
}

.contact-card {
    background: var(--light);
    padding: 26px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark);
}

.contact-card p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.contact-card a {
    color: var(--primary);
    font-weight: 800;
}

.contact-form-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    padding: 42px;
}

.contact-form {
    display: grid;
    gap: 22px;
}

.form-group {
    display: grid;
    gap: 9px;
}

.form-group label {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 15px 16px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    background: var(--light);
    outline: none;
    transition: var(--transition);
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(8, 122, 61, .08);
}

.contact-form button {
    width: fit-content;
}

.form-note {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

/* LOCATION / GOOGLE MAPS */

.location-section {
    background: var(--light);
}

.location-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 34px;
    align-items: stretch;
}

.location-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 42px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.location-info-card > span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.location-info-card h3 {
    font-size: 34px;
    line-height: 1.2;
    margin: 14px 0 18px;
    color: var(--dark);
}

.location-info-card p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.location-info-card ul {
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
}

.location-info-card li {
    background: var(--light);
    border: 1px solid var(--border);
    padding: 13px 16px;
    border-radius: 999px;
    color: var(--dark);
    font-weight: 700;
    font-size: 14px;
}

.location-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.location-map-card {
    min-height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background: var(--white);
}

.location-map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 480px;
    filter: saturate(.9) contrast(1.02);
}

/* SERVICE LANDING */

.service-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 90px;
    background:
        radial-gradient(circle at top left, rgba(8, 122, 61, .16), transparent 35%),
        linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.service-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.service-hero-content span,
.service-detail-content span,
.local-seo-box span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.service-hero-content h1 {
    font-size: 58px;
    line-height: 1.05;
    letter-spacing: -1.8px;
    color: var(--dark);
    margin: 18px 0 24px;
}

.service-hero-content p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.85;
    margin-bottom: 34px;
}

.service-hero-image img {
    height: 620px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.service-detail {
    background: var(--white);
}

.service-detail-layout {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.service-detail-image img {
    height: 560px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.service-detail-content h2 {
    font-size: 44px;
    line-height: 1.15;
    color: var(--dark);
    margin: 16px 0 22px;
}

.service-detail-content p {
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 18px;
}

.service-check-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.service-check-list li {
    background: var(--light);
    border: 1px solid var(--border);
    padding: 14px 18px;
    border-radius: 999px;
    color: var(--dark);
    font-weight: 700;
}

.service-benefits {
    background: var(--light);
}

.service-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-benefit-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .05);
    transition: var(--transition);
}

.service-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-benefit-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--dark);
}

.service-benefit-card p {
    color: var(--muted);
    line-height: 1.75;
}

.service-process {
    background: var(--white);
}

.service-gallery {
    background: var(--light);
}

.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-gallery-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.service-gallery-card img {
    height: 300px;
    object-fit: cover;
}

.service-gallery-card div {
    padding: 26px;
}

.service-gallery-card span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.service-gallery-card h3 {
    font-size: 22px;
    color: var(--dark);
    margin-top: 8px;
}

.service-local-seo {
    background: var(--white);
}

.local-seo-box {
    background:
        radial-gradient(circle at top right, rgba(116, 184, 67, .28), transparent 28%),
        linear-gradient(135deg, var(--primary-deep), var(--primary));
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: var(--shadow);
}

.local-seo-box span {
    color: #DDF6C6;
}

.local-seo-box h2 {
    font-size: 40px;
    line-height: 1.2;
    margin: 12px 0 16px;
}

.local-seo-box p {
    max-width: 780px;
    line-height: 1.85;
    opacity: .88;
}

.service-faq {
    background: var(--light);
}

.faq-list {
    max-width: 900px;
    margin: auto;
    display: grid;
    gap: 18px;
}

.faq-list details {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .04);
    padding: 24px 28px;
}

.faq-list summary {
    cursor: pointer;
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
}

.faq-list p {
    color: var(--muted);
    line-height: 1.8;
    margin-top: 16px;
}

/* SERVICE HUBS */

.hub-section {
    background: var(--white);
}

.hub-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.hub-category-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.hub-category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.hub-category-card img {
    height: 260px;
    object-fit: cover;
}

.hub-category-content {
    padding: 34px;
}

.hub-category-content span {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 12px;
}

.hub-category-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--dark);
}

.hub-category-content p {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 20px;
}

.hub-links-section {
    background: var(--light);
}

.hub-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.hub-links-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 34px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.hub-links-card h3 {
    font-size: 26px;
    color: var(--dark);
    margin-bottom: 22px;
}

.hub-links-card ul {
    display: grid;
    gap: 14px;
}

.hub-links-card a {
    color: var(--primary);
    font-weight: 800;
    line-height: 1.5;
}

.hub-links-card a:hover {
    color: var(--primary-dark);
}

/* IMPROVED SERVICE DIRECTORY */

.service-directory-section {
    background:
        radial-gradient(circle at top left, rgba(8, 122, 61, .12), transparent 28%),
        var(--light);
}

.directory-block {
    margin-bottom: 70px;
}

.directory-block:last-child {
    margin-bottom: 0;
}

.directory-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.directory-heading span {
    display: inline-flex;
    background: var(--primary-soft);
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.directory-heading h3 {
    font-size: 32px;
    color: var(--dark);
    line-height: 1.2;
}

.service-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-mini-card {
    position: relative;
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .05);
    transition: var(--transition);
    overflow: hidden;
}

.service-mini-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: var(--primary);
    opacity: .9;
}

.service-mini-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(8, 122, 61, .25);
}

.service-mini-card span {
    display: inline-block;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
}

.service-mini-card h4 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.25;
}

.service-mini-card p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-mini-card strong {
    color: var(--primary);
    font-size: 15px;
}

.directory-block-featured {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 38px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.service-mini-grid-featured {
    grid-template-columns: 1fr;
}

.service-mini-grid-featured .service-mini-card {
    background:
        radial-gradient(circle at top right, rgba(116, 184, 67, .16), transparent 30%),
        var(--light);
}

/* COVERAGE PAGE */

.coverage-page {
    background: var(--white);
}

.coverage-layout {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.coverage-content > span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.coverage-content h2 {
    font-size: 44px;
    line-height: 1.15;
    margin: 16px 0 22px;
    color: var(--dark);
}

.coverage-content p {
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 30px;
}

.coverage-map-card {
    min-height: 430px;
    border-radius: var(--radius-lg);
    padding: 48px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(rgba(46, 49, 51, .45), rgba(46, 49, 51, .75)),
        url("../img/coverage/map-placeholder.webp");
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.coverage-map-card span {
    color: var(--accent);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.coverage-map-card h3 {
    font-size: 36px;
    margin: 12px 0;
}

.coverage-map-card p {
    line-height: 1.8;
    opacity: .9;
}

.coverage-zones {
    background: var(--light);
}

.zone-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.zone-card {
    background: var(--white);
    padding: 38px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.zone-card h3 {
    font-size: 30px;
    margin-bottom: 26px;
    color: var(--dark);
}

.zone-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.zone-list span {
    background: var(--primary-soft);
    color: var(--primary);
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    border: 1px solid rgba(8, 122, 61, .18);
}

.coverage-question {
    background: var(--white);
}

.question-box {
    background:
        radial-gradient(circle at top right, rgba(116, 184, 67, .28), transparent 28%),
        var(--dark);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: var(--shadow);
}

.question-box span {
    color: var(--accent);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.question-box h2 {
    font-size: 40px;
    line-height: 1.2;
    margin: 12px 0 16px;
}

.question-box p {
    max-width: 680px;
    line-height: 1.8;
    opacity: .85;
}

/* LOGO CAROUSELS */

.logo-carousel-section {
    background: var(--white);
    overflow: hidden;
}

.certifications-section {
    background:
        radial-gradient(circle at top left, rgba(8, 122, 61, .10), transparent 30%),
        var(--white);
}

.clients-section {
    background: var(--light);
}

.logo-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 12px 0;
}

.logo-carousel::before,
.logo-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.logo-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.clients-section .logo-carousel::before {
    background: linear-gradient(to right, var(--light), transparent);
}

.clients-section .logo-carousel::after {
    background: linear-gradient(to left, var(--light), transparent);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 26px;
    width: max-content;
    animation: logoScroll 28s linear infinite;
}

.logo-track-reverse {
    animation-direction: reverse;
}

.logo-carousel:hover .logo-track {
    animation-play-state: paused;
}

.logo-item {
    width: 210px;
    height: 110px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    flex-shrink: 0;
    transition: var(--transition);
}

.logo-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.logo-item img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    filter: saturate(.95);
}

@keyframes logoScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* HOME LOCATION */

.home-location-section {
    background: var(--white);
}

.home-location-box {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 34px;
    align-items: stretch;
    background:
        radial-gradient(circle at top left, rgba(8, 122, 61, .12), transparent 32%),
        var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px;
    box-shadow: var(--shadow);
}

.home-location-content {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 42px;
    border: 1px solid var(--border);
}

.home-location-content span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.home-location-content h2 {
    font-size: 42px;
    line-height: 1.15;
    margin: 14px 0 18px;
    color: var(--dark);
}

.home-location-content p {
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 28px;
}

.home-location-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.home-location-map {
    min-height: 420px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background: var(--white);
}

.home-location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    filter: saturate(.9) contrast(1.02);
}

/* ABOUT PAGE */

.about-intro {
    background: var(--white);
}

.about-intro-layout,
.about-difference-layout,
.about-team-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-intro-image img,
.about-difference-image img,
.about-team-image img {
    height: 580px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.about-intro-content > span,
.about-difference-content > span,
.about-team-content > span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.about-intro-content h2,
.about-difference-content h2,
.about-team-content h2 {
    font-size: 44px;
    line-height: 1.15;
    margin: 16px 0 22px;
    color: var(--dark);
}

.about-intro-content p,
.about-difference-content p,
.about-team-content p {
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 18px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 30px 0;
}

.about-stats div {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px;
}

.about-stats strong {
    display: block;
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 6px;
}

.about-stats span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.about-purpose {
    background: var(--light);
}

.about-purpose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.about-purpose-card {
    background: var(--white);
    padding: 34px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.about-purpose-card > span {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-weight: 800;
    margin-bottom: 22px;
}

.about-purpose-card h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 14px;
}

.about-purpose-card p {
    color: var(--muted);
    line-height: 1.75;
}

.about-difference {
    background: var(--white);
}

.about-check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.about-check-grid div {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
}

.about-check-grid h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 10px;
}

.about-check-grid p {
    margin-bottom: 0;
    font-size: 14px;
}

.about-services {
    background: var(--white);
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.about-service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 34px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.about-service-card span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.about-service-card h3 {
    font-size: 25px;
    color: var(--dark);
    margin: 12px 0 14px;
}

.about-service-card p {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 22px;
}

.about-service-card strong {
    color: var(--primary);
}

.about-team-section {
    background:
        radial-gradient(circle at top left, rgba(8, 122, 61, .12), transparent 32%),
        var(--light);
}

.about-team-box {
    background: var(--white);
    padding: 42px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.about-team-image img {
    height: 480px;
}

/* FOOTER PREMIUM */

.footer {
    background:
        radial-gradient(circle at top left, rgba(116, 184, 67, .16), transparent 30%),
        linear-gradient(135deg, var(--primary-deep), #1F2F28);
    color: var(--white);
    padding: 80px 0 28px;
    text-align: left;
}

.footer-container {
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .85fr .85fr 1.15fr;
    gap: 44px;
    align-items: start;
}

.footer-brand p {
    color: rgba(255, 255, 255, .78);
    line-height: 1.8;
    margin: 22px 0 24px;
    max-width: 420px;
}

.footer-logo {
    height: 82px;
    width: auto;
    margin: 0;
    object-fit: contain;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-badges span {
    background: rgba(255, 255, 255, .10);
    color: #DDF6C6;
    border: 1px solid rgba(255, 255, 255, .16);
    padding: 9px 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.footer-column h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 22px;
}

.footer-column ul,
.footer-contact ul {
    display: grid;
    gap: 13px;
}

.footer-column a,
.footer-contact a {
    color: rgba(255, 255, 255, .74);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.footer-column a:hover,
.footer-contact a:hover {
    color: var(--accent);
}

.footer-contact li {
    display: grid;
    gap: 5px;
}

.footer-contact strong {
    color: #DDF6C6;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact span {
    color: rgba(255, 255, 255, .74);
    font-size: 14px;
    line-height: 1.6;
}

.footer-whatsapp {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    background: var(--white);
    color: var(--primary) !important;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 800 !important;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

.footer-whatsapp:hover {
    transform: translateY(-3px);
    background: #DDF6C6;
    color: var(--primary-dark) !important;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, .60);
    font-size: 13px;
    margin: 0;
}

.footer-bottom div {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-bottom a {
    color: rgba(255, 255, 255, .70);
    font-size: 13px;
    font-weight: 700;
}

.footer-bottom a:hover {
    color: var(--accent);
}