/* ============================================================
   GREEN SPA ON THE GO - ESTILOS UNIFICADOS
   Basado en template Reina | Diseño minimalista, calmo, profesional
   ============================================================ */

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

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background: #fcfcf9;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== TIPOGRAFÍA ===== */
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: #1a1a1a;
}

/* ===== BOTONES ===== */
.btn-primary {
    background: #949E7B;
    color: #fff;
    padding: 10px 28px;
    border: none;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    display: inline-block;
    text-align: center;
    font-family: 'Inter', sans-serif;
}
.btn-primary:hover {
    background: #9E148B;
    transform: translateY(-1px);
}
.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    padding: 10px 28px;
    border: 1px solid #9E148B;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    font-family: 'Inter', sans-serif;
}
.btn-secondary:hover {
    background: #9E148B;
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: #1a1a1a;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}
.btn-ghost:hover {
    border-bottom-color: transparent;
}

.btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(252, 252, 249, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1102;
    padding: 16px 0;
    transition: all 0.3s ease;
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1a1a1a;
}
.logo span {
    font-weight: 300;
    color: #7a7a7a;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #333;
    transition: color 0.2s ease;
}
.nav a:hover {
    color: #000;
}
.nav .btn-primary {
    padding: 8px 24px;
    font-size: 12px;
}
.nav a.btn-primary, .nav a:hover.btn-primary {
	color: rgba(252, 252, 249, 0.95);
}

/* ===== HERO - Tipos ===== */

/* Hero tipo 1: Con imagen a la derecha (Home, Corporate, Institutional, Community, Mobile) */
.hero {
    padding: 140px 0 100px;
    background: #f5f3ef;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #1a1a1a;
    margin-bottom: 24px;
}
.hero-content h1 .highlight {
    font-weight: 600;
}
.hero-content p {
    font-size: 18px;
    color: #4a4a4a;
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-image {
    background: #e8e4de;
    height: 480px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #7a7a7a;
    letter-spacing: 0.5px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hero tipo 2: Centrado sin imagen (Our Story, Contact, Request a Proposal) */
.hero-centered {
    padding: 160px 0 80px;
    background: #f5f3ef;
    text-align: center;
}
.hero-centered .container {
    display: block;
}
.hero-centered h1 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 16px;
}
.hero-centered p {
    font-size: 18px;
    color: #4a4a4a;
    max-width: 640px;
    margin: 0 auto 30px;
}
.hero-centered .btn-primary {
    font-size: 15px;
    padding: 14px 40px;
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.section:last-of-type {
    border-bottom: none;
}
.section-alt {
    background: #f8f7f4;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 16px;
}
.section-header p {
    color: #4a4a4a;
    font-size: 17px;
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.two-col .text-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 20px;
}
.two-col .text-col p {
    color: #4a4a4a;
    font-size: 16px;
    margin-bottom: 16px;
    max-width: 520px;
}
.two-col .image-col {
    background: #e8e4de;
    height: 340px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #7a7a7a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.two-col.image-left .image-col {
    order: -1;
}

/* ===== SERVICE GRID ===== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.service-item {
    background: #f8f7f4;
    padding: 28px 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}
.service-item:hover {
    background: #f0eee9;
    transform: translateY(-2px);
}
.service-item .icon {
    width: 48px;
    height: 48px;
    background: #f8f7f4;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #9E148B;
}
.service-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}
.service-item p {
    font-size: 13px;
    color: #7a7a7a;
}
.service-item .badge {
    font-size: 10px;
    color: #999;
    margin-top: 4px;
}

/* ===== PERFECT FOR GRID ===== */
.perfect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 30px;
}
.perfect-item {
    padding: 18px 16px;
    background: #f8f7f4;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}
.perfect-item:hover {
    background: #f0eee9;
    transform: translateY(-2px);
}

/* ===== COMMUNITY GRID ===== */
.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 30px;
}
.community-item {
    padding: 18px 16px;
    background: #f8f7f4;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}
.community-item:hover {
    background: #f0eee9;
    transform: translateY(-2px);
}

/* ===== SERVE LIST (Home - Private Services) ===== */
.serve-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    margin-top: 8px;
}
.serve-list li {
    padding: 8px 0;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 10px;
}
.serve-list li::before {
    content: "—";
    color: #aaa;
    font-weight: 300;
}

/* ===== CARD GRID ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.card {
    padding: 40px 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
}
.card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}
.card .icon {
    width: 56px;
    height: 56px;
    background: #9E148B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    color: #fff;
}
.card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}
.card p {
    font-size: 15px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ===== LIST GRID ===== */
.list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 30px;
}
.list-grid li {
    padding: 10px 0;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 10px;
}
.list-grid li::before {
    content: "—";
    color: #aaa;
    font-weight: 300;
}

/* ===== LOGOS / TRUSTED BY ===== */
.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 60px;
    margin-top: 40px;
}
.logos-grid .logo-item {
    font-size: 14px;
    font-weight: 500;
    color: #7a7a7a;
    letter-spacing: 0.5px;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.3s ease;
}
.logos-grid .logo-item:hover {
    filter: grayscale(0);
    opacity: 1;
    color: #1a1a1a;
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 20px 0;
    cursor: pointer;
    user-select: none;
}
.faq-item .question {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item .question .arrow {
    font-size: 18px;
    color: #aaa;
    transition: transform 0.3s ease;
}
.faq-item.active .question .arrow {
    transform: rotate(180deg);
}
.faq-item .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: #4a4a4a;
    font-size: 15px;
    line-height: 1.7;
}
.faq-item.active .answer {
    max-height: 200px;
    padding-top: 16px;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background: #f5f3ef;
    padding: 32px 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
}
.highlight-box p {
    font-size: 16px;
    color: #333;
}
.highlight-box p:first-child {
    font-weight: 500;
    margin-bottom: 8px;
}

/* ===== BENEFITS / CHECKS ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 30px;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.benefit-item .check {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 300;
}
.benefit-item span {
    font-size: 15px;
    color: #333;
}

/* ===== GREEN APPROACH CARDS ===== */
.green-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 30px;
}
.green-card {
    background: #f8f7f4;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}
.green-card:hover {
    background: #f0eee9;
    transform: translateY(-2px);
}
.green-card .icon {
    font-size: 28px;
    margin-bottom: 16px;
    display: block;
	color: #9E148B;
}
.green-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
}
.green-card p {
    font-size: 14px;
    color: #4a4a4a;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 30px;
}
.gallery-item {
    background: #e8e4de;
    height: 180px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
    width: 100%;
    cursor: zoom-in;
    display: block;
}
.gallery-item:hover {
    transform: scale(1.02);
}

/* Gallery lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(26, 26, 26, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.gallery-lightbox[hidden] {
    display: none !important;
}
.gallery-lightbox__img {
    max-width: min(960px, 100%);
    max-height: 90vh;
    border-radius: 8px;
    object-fit: contain;
}
.gallery-lightbox__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
}

/* ===== LOCATION ===== */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.location-info p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}
.location-info .address {
    font-weight: 500;
    color: #1a1a1a;
}
.location-map {
    background: #e8e4de;
    height: 300px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ===== TIMELINE ===== */
.timeline {
    max-width: 800px;
    margin: 0 auto;
}
.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.timeline-item:last-child {
    border-bottom: none;
}
.timeline-item .year {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
}
.timeline-item .content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
}
.timeline-item .content p {
    font-size: 15px;
    color: #4a4a4a;
}

/* ===== VALUES GRID ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}
.value-item {
    background: #f8f7f4;
    padding: 36px 28px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}
.value-item:hover {
    background: #f0eee9;
    transform: translateY(-2px);
}
.value-item .icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}
.value-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}
.value-item p {
    font-size: 15px;
    color: #4a4a4a;
}

/* ===== SERVICE PREVIEW (Forest Hills) ===== */
.service-preview {
    text-align: center;
    padding: 40px;
    background: #f8f7f4;
    border-radius: 12px;
}
.service-preview p {
    font-size: 18px;
    color: #4a4a4a;
    max-width: 600px;
    margin: 0 auto;
}
.service-preview .btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* ===== EXPECT GRID (Request a Proposal) ===== */
.expect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.expect-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f7f4;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.expect-item:hover {
    background: #f0eee9;
}
.expect-item .icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
	color: #9E148B;
}
.expect-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
}
.expect-item p {
    font-size: 14px;
    color: #4a4a4a;
}

/* ===== CONTACT GRID ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}
.contact-info .item {
    margin-bottom: 24px;
}
.contact-info .item .label {
    font-size: 13px;
    font-weight: 500;
    color: #7a7a7a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-info .item .value {
    font-size: 17px;
    color: #1a1a1a;
    margin-top: 4px;
}
.contact-info .social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.contact-info .social-links a {
    padding: 10px 20px;
    background: #f8f7f4;
    border-radius: 30px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
}
.contact-info .social-links a:hover {
    background: #1a1a1a;
    color: #fff;
}

/* ===== CONTACT FORM ===== */
.contact-form h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 6px;
}
.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    background: #fff;
    transition: border 0.3s ease;
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}
.contact-form .form-group textarea {
    min-height: 140px;
    resize: vertical;
}

/* ===== MULTI-STEP FORM ===== */
.form-container {
    max-width: 800px;
    margin: 0 auto;
}
.form-step {
    display: none;
}
.form-step.active {
    display: block;
}

.form-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}
.form-progress .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    transition: background 0.3s ease;
}
.form-progress .dot.active {
    background: #1a1a1a;
}
.form-progress .dot.done {
    background: #1a1a1a;
    opacity: 0.4;
}

.form-group {
    margin-bottom: 24px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    background: #fff;
    transition: border 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
}
.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #1a1a1a;
    flex-shrink: 0;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}
.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
}
.radio-group input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #1a1a1a;
    flex-shrink: 0;
}

.form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 16px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: #f5f3ef;
    text-align: center;
}
.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 16px;
}
.cta-section p {
    font-size: 18px;
    color: #4a4a4a;
    max-width: 560px;
    margin: 0 auto 40px;
}
.cta-section .cta-image {
    max-width: 800px;
    margin: 0 auto 40px;
    height: 200px;
    background: #e8e4de;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.cta-section .btn-primary {
    font-size: 15px;
    padding: 14px 40px;
}

/* ===== BADGE ===== */
.badge {
    background: #f5f3ef;
    padding: 24px 40px;
    text-align: center;
    border-radius: 10px;
    font-size: 16px;
    color: #333;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}
.badge strong {
    color: #1a1a1a;
}

/* ===== FOOTER ===== */
.footer {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}
.footer .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}
.footer .container.copy {
	display: inline;
}
.footer .brand h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
}
.footer .brand p {
    font-size: 14px;
    max-width: 280px;
    line-height: 1.7;
}
.footer h5 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}
.footer ul li {
    font-size: 14px;
    margin-bottom: 8px;
}
.footer ul li a {
    transition: color 0.2s ease;
}
.footer ul li a:hover {
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 30px;
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}
.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s ease;
}
.footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablets */
@media (max-width: 1024px) {
    .hero .container {
        gap: 50px;
    }
    .hero-content h1 {
        font-size: 40px;
    }
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .green-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .expect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .perfect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .serve-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    .hero-image {
        height: 320px;
    }
    .hero-content p {
        max-width: 100%;
    }

    .hero-centered {
        padding: 130px 0 60px;
    }
    .hero-centered h1 {
        font-size: 36px;
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .two-col.image-left .image-col {
        order: 0;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer .container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .nav {
        display: none;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Móviles */
@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }
    .hero-centered h1 {
        font-size: 30px;
    }
    .hero-centered p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 28px;
    }
    .section-header p {
        font-size: 15px;
    }
    .section-header {
        margin-bottom: 40px;
    }

    .service-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .service-item {
        padding: 20px 12px;
    }
    .service-item .icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .service-item h4 {
        font-size: 13px;
    }

    .perfect-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .perfect-item {
        padding: 14px 10px;
        font-size: 13px;
    }

    .community-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .community-item {
        padding: 14px 10px;
        font-size: 13px;
    }

    /* Serve List - Home Private Services */
    .serve-list {
        grid-template-columns: 1fr 1fr;
        gap: 4px 12px;
    }
    .serve-list li {
        font-size: 14px;
        padding: 6px 0;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }
    .card {
        padding: 28px 20px;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .benefit-item {
        padding: 10px 0;
    }

    .green-cards {
        grid-template-columns: 1fr;
    }
    .green-card {
        padding: 24px 16px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
    .value-item {
        padding: 24px 20px;
    }

    .expect-grid {
        grid-template-columns: 1fr;
    }
    .expect-item {
        padding: 20px 16px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .gallery-item {
        height: 140px;
    }

    .footer .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer .brand p {
        max-width: 100%;
    }

    .cta-section {
        padding: 60px 0;
    }
    .cta-section h2 {
        font-size: 28px;
    }
    .cta-section p {
        font-size: 16px;
    }
    .cta-section .cta-image {
        height: 150px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    .radio-group {
        flex-direction: column;
        gap: 4px;
    }

    .form-nav {
        flex-direction: column;
    }
    .form-nav .btn-primary,
    .form-nav .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .contact-info .social-links {
        flex-wrap: wrap;
    }
    .contact-info .social-links a {
        padding: 8px 16px;
        font-size: 13px;
    }

    .badge {
        padding: 16px 20px;
        font-size: 14px;
    }

    .highlight-box {
        padding: 24px 20px;
    }
    .highlight-box p {
        font-size: 14px;
    }

    .location-info .btn-primary,
    .location-info .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .service-preview {
        padding: 24px 16px;
    }
    .service-preview p {
        font-size: 16px;
    }
    .service-preview .btn-group {
        flex-direction: column;
        align-items: center;
    }
    .service-preview .btn-group .btn-primary,
    .service-preview .btn-group .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .btn-group {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-group .btn-primary,
    .btn-group .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-image {
        height: 220px;
    }
    .two-col .image-col {
        height: 220px;
    }
    .location-map {
        height: 200px;
    }

    /* Home: grid de dos columnas para Private Services */
    .section > .container > div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* Móviles muy pequeños */
@media (max-width: 380px) {
    .service-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .service-item {
        padding: 16px 10px;
    }
    .service-item .icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    .service-item h4 {
        font-size: 12px;
    }
    .perfect-grid {
        grid-template-columns: 1fr 1fr;
    }
    .community-grid {
        grid-template-columns: 1fr 1fr;
    }
    .serve-list {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   UTILIDADES
   ============================================================ */

.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}

.mt-0 { margin-top: 0; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }

.mb-0 { margin-bottom: 0; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flex-wrap {
    flex-wrap: wrap;
}
.gap-10 { gap: 10px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }

/* ===== HELPERS PARA IMÁGENES ===== */
.img-placeholder {
    background: #e8e4de;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a7a7a;
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* ===== SCROLL BEHAVIOR ===== */
html {
    scroll-behavior: smooth;
}

/* ===== SELECTION ===== */
::selection {
    background: #1a1a1a;
    color: #fff;
}

/* ===== FOCUS VISIBLE ===== */
:focus-visible {
    outline: 2px solid #1a1a1a;
    outline-offset: 2px;
}

/* ===== NAV ACTIVE STATE ===== */
.nav a.is-active:not(.btn-primary) {
    color: #9E148B;
    box-shadow: inset 0 -1px 0 #F5D8F1;
}
.mobile-nav__inner a.is-active:not(.btn-primary) {
    color: #9E148B;
    box-shadow: inset 0 -1px 0 #F5D8F1;
}

/* ===== MOBILE HAMBURGER ===== */
.nav-toggle {
    display: none;
    position: relative;
    z-index: 1102;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.nav-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #1a1a1a;
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
body.nav-open .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}
body.nav-open .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(26, 26, 26, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1101;
    width: min(320px, 88vw);
    height: 100%;
    max-height: 100vh;
    margin: 0;
    padding: 0;
    background: #fcfcf9;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: inline-flex;
    }

    .nav-overlay {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    .nav-overlay.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-nav.is-open {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }
}

.mobile-nav__inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
    padding: 96px 28px 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobile-nav__inner a {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.4px;
    color: #333;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.mobile-nav__inner a.is-active:not(.btn-primary) {
    color: #9E148B;
    box-shadow: inset 0 -3px 0 #F5D8F1;
}
.mobile-nav__inner a.btn-primary {
    text-align: center;
    margin-top: 16px;
    border-bottom: none;
    color: #fff;
}

/* Desktop: never show mobile drawer / overlay / hamburger */
@media (min-width: 769px) {
    .nav-toggle,
    .nav-overlay,
    .mobile-nav {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
    body.nav-open {
        overflow: auto;
    }
}

body.nav-open {
    overflow: hidden;
}