/* ============================================================
   CASA ROJA CORONADO — Global Styles
   Multi-page site · v2.0
   ============================================================ */

/* --- VARIABLES --- */
:root {
    --red: #C0392B;
    --red-dark: #96281B;
    --red-light: #E74C3C;
    --blue: #1B58A5;
    --blue-dark: #143F78;
    --cobalt: #2456A0;
    --pool: #38BDF8;
    --white: #FFF;
    --off-white: #F9FAFB;
    --cream: #FDF6F0;
    --dark: #1A1A1E;
    --text: #2D2D30;
    --text-light: #6B7280;
    --text-lighter: #9CA3AF;
    --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
    --shadow-red: 0 10px 40px rgba(192,57,43,.2);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: .35s cubic-bezier(.4,0,.2,1);
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'DM Serif Display', serif; font-weight: 400; line-height: 1.15; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- SECTION LABELS --- */
.section-label {
    font-family: 'Outfit', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.section-label::before { content: ''; width: 32px; height: 2px; background: var(--red); }
.section-title { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--dark); margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 560px; margin-bottom: 48px; }

/* --- REVEAL ANIMATION --- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 0; transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }

.navbar-brand { display: flex; align-items: center; gap: 10px; }
.navbar-brand-icon {
    width: 36px; height: 36px; background: var(--red);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.navbar-brand-icon svg { width: 18px; height: 18px; color: white; }
.navbar-brand-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem; color: var(--white);
    transition: var(--transition);
}
.navbar.scrolled .navbar-brand-text { color: var(--dark); }

.navbar-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.navbar-links a {
    font-size: .82rem; font-weight: 500; letter-spacing: .5px;
    color: rgba(255,255,255,.9); transition: var(--transition);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.navbar-links a:hover { color: var(--white); }
.navbar-links a.active { color: var(--white); font-weight: 700; }
.navbar.scrolled .navbar-links a { color: var(--text-light); text-shadow: none; }
.navbar.scrolled .navbar-links a:hover { color: var(--dark); }
.navbar.scrolled .navbar-links a.active { color: var(--red); }

.navbar-lang {
    font-size: .78rem; font-weight: 600; letter-spacing: 1px;
    padding: 5px 12px; border-radius: 6px;
    border: 1px solid rgba(255,255,255,.3);
    color: rgba(255,255,255,.85);
    transition: var(--transition);
}
.navbar-lang:hover { border-color: rgba(255,255,255,.6); color: var(--white); }
.navbar.scrolled .navbar-lang { border-color: #e5e7eb; color: var(--text-light); }
.navbar.scrolled .navbar-lang:hover { border-color: var(--red); color: var(--red); }

.navbar-cta {
    background: var(--red) !important; color: var(--white) !important;
    padding: 10px 24px; border-radius: 50px; font-weight: 600 !important;
    text-shadow: none !important; transition: var(--transition);
}
.navbar-cta:hover {
    background: var(--red-dark) !important;
    transform: translateY(-2px); box-shadow: var(--shadow-red);
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span {
    width: 26px; height: 2px; background: var(--white);
    transition: var(--transition); box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.navbar.scrolled .hamburger span { background: var(--dark); box-shadow: none; }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
    padding: 16px 0 0;
    font-size: .8rem;
    color: var(--text-lighter);
}
.breadcrumbs a { color: var(--text-light); transition: var(--transition); }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs .separator { margin: 0 8px; opacity: .5; }
.breadcrumbs .current { color: var(--text); font-weight: 500; }

/* ============================================================
   HERO — Full (Homepage)
   ============================================================ */
.hero {
    position: relative; height: 100vh; min-height: 700px;
    display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; background-size: cover;
    background-position: center; transform: scale(1.05);
    animation: heroZoom 25s ease infinite alternate;
    background-color: var(--red-dark);
}
@keyframes heroZoom { 0% { transform: scale(1.05); } 100% { transform: scale(1.12); } }
.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(to top, rgba(26,26,30,0.9) 0%, rgba(26,26,30,0.4) 35%, rgba(26,26,30,0) 70%),
        linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 25%);
}
.hero-content { position: relative; z-index: 2; padding-bottom: 72px; width: 100%; }
.hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red); padding: 8px 20px; border-radius: 50px;
    color: var(--white); font-size: .78rem; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 24px;
}
.hero-tag svg { width: 14px; height: 14px; }
.hero h1 {
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    color: var(--white); max-width: 750px; margin-bottom: 16px;
}
.hero h1 .accent { color: var(--pool); }
.hero-sub {
    font-size: 1.1rem; color: rgba(255,255,255,.9);
    max-width: 520px; margin-bottom: 36px; font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
    display: flex; gap: 40px; margin-top: 48px;
    padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat-num { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--white); }
.hero-stat-label {
    font-size: .75rem; color: rgba(255,255,255,.8);
    text-transform: uppercase; letter-spacing: 1px; font-weight: 500;
}

/* ============================================================
   HERO — Internal Pages (smaller)
   ============================================================ */
.hero-internal {
    position: relative; height: 50vh; min-height: 380px;
    display: flex; align-items: flex-end; overflow: hidden;
}
.hero-internal .hero-bg { animation: heroZoom 35s ease infinite alternate; }
.hero-internal .hero-overlay {
    background:
        linear-gradient(to top, rgba(26,26,30,0.92) 0%, rgba(26,26,30,0.3) 50%, rgba(26,26,30,0) 100%),
        linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 30%);
}
.hero-internal .hero-content { padding-bottom: 48px; }
.hero-internal h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); max-width: 700px; color: var(--white); }
.hero-internal .hero-sub { font-size: 1rem; max-width: 480px; margin-bottom: 0;}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; border-radius: 50px;
    font-family: 'Outfit', sans-serif; font-size: .88rem;
    font-weight: 600; letter-spacing: .3px;
    transition: var(--transition); cursor: pointer; border: none;
}
.btn svg { width: 18px; height: 18px; }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-3px); box-shadow: var(--shadow-red); }
.btn-white {
    background: rgba(255,255,255,.12); color: var(--white);
    border: 1.5px solid rgba(255,255,255,.3); backdrop-filter: blur(4px);
}
.btn-white:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); }
.btn-outline-red { background: var(--white); color: var(--red); border: 2px solid var(--red); }
.btn-outline-red:hover { background: var(--red); color: var(--white); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-3px); }
.btn-ghost {
    background: transparent; color: var(--red);
    padding: 16px 0; font-weight: 600;
}
.btn-ghost:hover { gap: 14px; }
.btn-ghost svg { transition: var(--transition); }

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features { margin-top: -36px; position: relative; z-index: 10; }
.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    background: var(--white); border-radius: var(--radius-xl);
    overflow: hidden; box-shadow: var(--shadow-lg);
}
.feature-item {
    display: flex; flex-direction: column; align-items: center;
    gap: 10px; padding: 32px 16px; text-align: center;
    transition: var(--transition); border-right: 1px solid #f3f4f6;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--cream); }
.feature-icon {
    width: 44px; height: 44px; display: flex; align-items: center;
    justify-content: center; background: var(--cream);
    border-radius: 12px; color: var(--red); transition: var(--transition);
}
.feature-item:hover .feature-icon { background: var(--red); color: var(--white); }
.feature-icon svg { width: 22px; height: 22px; }
.feature-item h4 { font-family: 'Outfit', sans-serif; font-size: .8rem; font-weight: 600; color: var(--dark); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 120px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; }
.about-img-main {
    width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #e8c4bc, #c0392b40); object-fit: cover; overflow: hidden;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.about-img-float {
    position: absolute; bottom: -160px; right: -60px; width: 68%;
    aspect-ratio: 4/3; border-radius: var(--radius);
    background: linear-gradient(135deg, #b8d4e8, #1b58a540);
    object-fit: cover; border: 6px solid var(--white);
    box-shadow: var(--shadow-lg); overflow: hidden;
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.about-badge {
    position: absolute; top: -16px; left: -16px;
    background: var(--red); color: var(--white);
    width: 80px; height: 80px; border-radius: 16px;
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; box-shadow: var(--shadow-red);
}
.about-badge-num { font-family: 'DM Serif Display', serif; font-size: 1.8rem; line-height: 1; }
.about-badge-label { font-size: .6rem; text-transform: uppercase; letter-spacing: 1px; opacity: .8; font-weight: 600; }
.about-text p { margin-bottom: 20px; font-size: 1.02rem; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.about-highlight { display: flex; align-items: center; gap: 10px; font-size: .92rem; }
.about-highlight-dot { width: 8px; height: 8px; flex-shrink: 0; background: var(--red); border-radius: 50%; }

/* ============================================================
   SPACES / SPACE CARDS
   ============================================================ */
.spaces { padding: 120px 0; }
.spaces-header { text-align: center; margin-bottom: 64px; }
.spaces-header .section-label { justify-content: center; }
.spaces-header .section-subtitle { margin: 0 auto; }
.space-card {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center; margin-bottom: 100px;
}
.space-card:nth-child(even) { direction: rtl; }
.space-card:nth-child(even) > * { direction: ltr; }
.space-card-img {
    aspect-ratio: 4/3; border-radius: var(--radius-lg);
    overflow: hidden; background: linear-gradient(135deg, #e8d5cf, #d4b5ab);
}
.space-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.space-card:hover .space-card-img img { transform: scale(1.04); }
.space-card-content h3 { font-size: 1.8rem; color: var(--dark); margin-bottom: 16px; }
.space-card-content p { color: var(--text-light); font-size: .98rem; margin-bottom: 24px; }
.space-card-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.space-tag { padding: 6px 16px; border-radius: 50px; font-size: .78rem; font-weight: 600; }
.space-tag-red { background: rgba(192,57,43,.08); color: var(--red); }
.space-tag-blue { background: rgba(27,88,165,.08); color: var(--blue); }

/* Spaces preview (3 cards horizontal on homepage) */
.spaces-preview { padding: 120px 0; }
.spaces-preview-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px; margin-top: 48px;
}
.space-preview-card {
    border-radius: var(--radius-lg); overflow: hidden;
    background: var(--white); box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.space-preview-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.space-preview-card-img { aspect-ratio: 4/3; overflow: hidden; }
.space-preview-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.space-preview-card:hover .space-preview-card-img img { transform: scale(1.06); }
.space-preview-card-body { padding: 24px; }
.space-preview-card-body h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: 8px; }
.space-preview-card-body p { font-size: .88rem; color: var(--text-light); margin-bottom: 16px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding: 120px 0; background: var(--off-white); }
.gallery-header { text-align: center; margin-bottom: 48px; }
.gallery-header .section-label { justify-content: center; }
.gallery-header .section-subtitle { margin: 0 auto; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery-item {
    aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
    position: relative; cursor: pointer; background: var(--dark);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.5), transparent 60%);
    opacity: 0; transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item-label {
    position: absolute; bottom: 12px; left: 12px;
    color: white; font-size: .85rem; font-weight: 600;
    z-index: 2; opacity: 0; transform: translateY(8px);
    transition: var(--transition); text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.gallery-item:hover .gallery-item-label { opacity: 1; transform: translateY(0); }
.gallery-item.featured { grid-column: span 2; grid-row: span 2; }
.gallery-show-all { text-align: center; margin-top: 28px; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,.96); align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close, .lightbox-nav {
    position: absolute; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.1); border: none; border-radius: 50%;
    color: white; cursor: pointer; transition: var(--transition);
}
.lightbox-close { top: 24px; right: 24px; width: 48px; height: 48px; font-size: 1.4rem; }
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1.3rem; }
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500; letter-spacing: 2px;
}
.lightbox-caption {
    position: absolute; bottom: 52px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,.6); font-size: .82rem; font-weight: 400;
    text-align: center; max-width: 400px;
}

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities {
    padding: 120px 0; background: var(--dark); color: var(--white);
    position: relative; overflow: hidden;
}
.amenities::before {
    content: ''; position: absolute; top: -40%; right: -15%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(192,57,43,.1), transparent 70%);
    pointer-events: none;
}
.amenities-header { text-align: center; margin-bottom: 64px; }
.amenities-header .section-label { color: var(--red-light); justify-content: center; }
.amenities-header .section-label::before { background: var(--red-light); }
.amenities-header .section-title { color: var(--white); }
.amenities-header .section-subtitle { color: rgba(255,255,255,.45); margin: 0 auto; }
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.amenity-card {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--radius); padding: 32px 24px; transition: var(--transition);
}
.amenity-card:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(192,57,43,.3); transform: translateY(-4px);
}
.amenity-icon {
    width: 44px; height: 44px; display: flex; align-items: center;
    justify-content: center; background: var(--red);
    border-radius: 10px; margin-bottom: 18px; color: var(--white);
}
.amenity-icon svg { width: 22px; height: 22px; }
.amenity-card h4 { font-family: 'Outfit', sans-serif; font-size: .95rem; font-weight: 600; margin-bottom: 8px; }
.amenity-card p { font-size: .84rem; color: rgba(255,255,255,.4); line-height: 1.6; }

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing { padding: 120px 0; }
.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-header .section-label { justify-content: center; }
.pricing-header .section-subtitle { margin: 0 auto; }
.pricing-cards {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px; max-width: 780px; margin: 0 auto;
}
.pricing-card {
    border: 2px solid #eee; border-radius: var(--radius-xl);
    padding: 44px 36px; text-align: center;
    transition: var(--transition); position: relative; overflow: hidden;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.popular {
    border-color: var(--red);
    box-shadow: 0 20px 60px rgba(192,57,43,.1);
}
.pricing-card.popular::before {
    content: 'POPULAR'; position: absolute; top: 18px; right: -28px;
    background: var(--red); color: white; padding: 4px 40px;
    font-size: .65rem; font-weight: 700; letter-spacing: 1.5px;
    transform: rotate(45deg);
}
.pricing-card h3 { font-size: 1.3rem; color: var(--dark); margin-bottom: 6px; }
.pricing-card-desc { font-size: .88rem; color: var(--text-light); margin-bottom: 24px; }
.pricing-amount { font-family: 'DM Serif Display', serif; font-size: 3.5rem; color: var(--red); line-height: 1; }
.pricing-period { font-size: .95rem; color: var(--text-lighter); margin-bottom: 28px; }
.pricing-features { list-style: none; margin: 0 0 28px; text-align: left; }
.pricing-features li {
    padding: 10px 0; border-bottom: 1px solid #f3f4f6;
    font-size: .9rem; display: flex; align-items: center; gap: 10px;
}
.pricing-features li svg { color: var(--red); flex-shrink: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 120px 0; background: var(--off-white); }
.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-header .section-label { justify-content: center; }
.testimonials-header .section-subtitle { margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 36px; box-shadow: var(--shadow-sm);
    border: 1px solid #f3f4f6; transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-stars { color: #F59E0B; font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: .95rem; color: var(--text); margin-bottom: 20px; line-height: 1.7; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--cream); display: flex; align-items: center;
    justify-content: center; font-weight: 700; color: var(--red); font-size: .9rem;
}
.testimonial-name { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .88rem; color: var(--dark); }
.testimonial-origin { font-size: .78rem; color: var(--text-lighter); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    padding: 100px 0; background: var(--dark);
    text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(192,57,43,.12), transparent 60%);
    pointer-events: none;
}
.cta-section h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; position: relative; }
.cta-section p { color: rgba(255,255,255,.5); font-size: 1.02rem; max-width: 520px; margin: 0 auto 36px; position: relative; }
.cta-section .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-section .cta-stats {
    display: flex; gap: 48px; justify-content: center; margin-top: 48px;
    padding-top: 32px; border-top: 1px solid rgba(255,255,255,.08); position: relative;
}
.cta-stat { text-align: center; }
.cta-stat-value { font-family: 'Outfit', sans-serif; font-size: .95rem; color: var(--white); font-weight: 600; }
.cta-stat-label { font-size: .75rem; color: rgba(255,255,255,.4); margin-top: 4px; }

/* ============================================================
   MAP
   ============================================================ */
.map-section { padding: 120px 0; background: var(--off-white); }
.map-section-header { text-align: center; margin-bottom: 48px; }
.map-section-header .section-label { justify-content: center; }
.map-section-header .section-subtitle { margin: 0 auto; }
.map-wrapper { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); height: 420px; }
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 120px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 { font-size: clamp(2rem, 4vw, 2.6rem); color: var(--dark); margin-bottom: 16px; }
.contact-info > p { color: var(--text-light); font-size: 1rem; margin-bottom: 36px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
    display: flex; align-items: center; gap: 18px;
    padding: 18px 22px; background: var(--off-white);
    border-radius: var(--radius); transition: var(--transition);
}
.contact-method:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.contact-method-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px; color: var(--white);
}
.contact-method-icon.whatsapp { background: #25D366; }
.contact-method-icon.email { background: var(--blue); }
.contact-method-icon svg { width: 20px; height: 20px; }
.contact-method h4 {
    font-family: 'Outfit', sans-serif; font-size: .72rem; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--text-lighter); margin-bottom: 2px;
}
.contact-method span { font-size: 1.05rem; font-weight: 600; color: var(--dark); }
.contact-form {
    background: var(--white); padding: 44px; border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg); border: 1px solid #f3f4f6;
}
.contact-form h3 { font-size: 1.4rem; margin-bottom: 6px; color: var(--dark); }
.contact-form > p { font-size: .88rem; color: var(--text-light); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block; font-size: .75rem; font-weight: 600;
    letter-spacing: .5px; text-transform: uppercase;
    color: var(--text); margin-bottom: 5px;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 13px 16px; border: 1.5px solid #e5e7eb;
    border-radius: var(--radius); font-family: 'Outfit', sans-serif;
    font-size: .92rem; color: var(--text);
    transition: var(--transition); background: var(--white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(192,57,43,.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; padding: 15px; margin-top: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,.4); padding: 72px 0 28px; }
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px; padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand-block .footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-block .footer-brand-icon {
    width: 32px; height: 32px; background: var(--red);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.footer-brand-block .footer-brand-icon svg { width: 16px; height: 16px; color: white; }
.footer-brand-block .footer-brand-text {
    font-family: 'DM Serif Display', serif; font-size: 1.15rem; color: var(--white);
}
.footer-brand-block .footer-tagline {
    font-size: .88rem; color: rgba(255,255,255,.35); margin-bottom: 20px; line-height: 1.6;
}
.footer-brand-block .footer-address {
    font-size: .82rem; color: rgba(255,255,255,.3); line-height: 1.7;
}
.footer-col h4 {
    font-family: 'Outfit', sans-serif; font-size: .72rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,.2); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
    font-size: .88rem; color: rgba(255,255,255,.4);
    transition: var(--transition);
}
.footer-col ul a:hover { color: var(--red-light); }
.footer-copy {
    text-align: center; padding-top: 28px; font-size: .78rem;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px;
    width: 58px; height: 58px; background: #25D366;
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; box-shadow: 0 6px 20px rgba(37,211,102,.4);
    z-index: 999; transition: var(--transition);
    animation: waPulse 2s ease infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 30px; height: 30px; color: white; }
@keyframes waPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,.4); }
    50% { box-shadow: 0 6px 30px rgba(37,211,102,.6); }
}

/* ============================================================
   INTRO TEXT BLOCK (for internal pages)
   ============================================================ */
.intro-text { padding: 80px 0 40px; }
.intro-text p { font-size: 1.05rem; color: var(--text-light); max-width: 760px; margin-bottom: 20px; line-height: 1.8; }
.intro-text p:last-child { margin-bottom: 0; }
.intro-text .intro-stats {
    display: flex; gap: 32px; flex-wrap: wrap; margin-top: 28px;
    padding-top: 28px; border-top: 1px solid #f0f0f0;
}
.intro-stat { text-align: center; }
.intro-stat-num { font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: var(--red); }
.intro-stat-label { font-size: .72rem; color: var(--text-lighter); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { padding: 120px 0; background: var(--off-white); }
.faq-header { text-align: center; margin-bottom: 64px; }
.faq-header .section-label { justify-content: center; }
.faq-header .section-subtitle { margin: 0 auto; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white); border-radius: var(--radius);
    margin-bottom: 12px; box-shadow: var(--shadow-sm);
    border: 1px solid #f3f4f6; overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-question {
    width: 100%; padding: 22px 28px; display: flex;
    justify-content: space-between; align-items: center;
    background: none; border: none; cursor: pointer;
    font-family: 'Outfit', sans-serif; font-size: .95rem;
    font-weight: 600; color: var(--dark); text-align: left;
    gap: 16px; transition: var(--transition);
}
.faq-question:hover { color: var(--red); }
.faq-icon {
    width: 28px; height: 28px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: var(--cream); color: var(--red);
    font-size: 1.1rem; font-weight: 300;
    transition: transform .3s ease, background .3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--red); color: var(--white); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
    padding: 0 28px 22px;
    font-size: .92rem; color: var(--text-light); line-height: 1.7;
}

/* ============================================================
   INCLUDES GRID (what's included)
   ============================================================ */
.includes { padding: 120px 0; }
.includes-header { text-align: center; margin-bottom: 64px; }
.includes-header .section-label { justify-content: center; }
.includes-header .section-subtitle { margin: 0 auto; }
.includes-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.include-card {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 24px; background: var(--off-white);
    border-radius: var(--radius); transition: var(--transition);
}
.include-card:hover { background: var(--cream); transform: translateY(-2px); }
.include-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--red); border-radius: 10px; color: var(--white);
}
.include-icon svg { width: 20px; height: 20px; }
.include-text h4 {
    font-family: 'Outfit', sans-serif; font-size: .9rem;
    font-weight: 600; color: var(--dark); margin-bottom: 4px;
}
.include-text p { font-size: .82rem; color: var(--text-light); line-height: 1.5; }

/* ============================================================
   PRICING HERO (prominent on rental pages)
   ============================================================ */
.pricing-hero {
    padding: 80px 0; background: var(--cream); text-align: center;
}
.pricing-hero-card {
    max-width: 480px; margin: 0 auto;
    background: var(--white); border-radius: var(--radius-xl);
    padding: 48px 40px; box-shadow: var(--shadow-lg);
    border: 2px solid var(--red);
}
.pricing-hero-card .pricing-amount {
    font-family: 'DM Serif Display', serif;
    font-size: 4rem; color: var(--red); line-height: 1;
}
.pricing-hero-card .pricing-period {
    font-size: 1rem; color: var(--text-lighter); margin-bottom: 12px;
}
.pricing-hero-card .pricing-tagline {
    font-size: 1.05rem; color: var(--text-light); margin-bottom: 28px;
}

/* ============================================================
   CONTENT SECTIONS (rich text blocks)
   ============================================================ */
.content-section { padding: 100px 0; }
.content-section:nth-child(even) { background: var(--off-white); }
.content-section h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem); color: var(--dark);
    margin-bottom: 20px;
}
.content-section p {
    font-size: 1rem; color: var(--text-light);
    max-width: 760px; margin-bottom: 18px; line-height: 1.8;
}
.content-section a { color: var(--red); font-weight: 500; transition: var(--transition); }
.content-section a:hover { color: var(--red-dark); }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison { padding: 120px 0; background: var(--off-white); }
.comparison-header { text-align: center; margin-bottom: 48px; }
.comparison-header .section-label { justify-content: center; }
.comparison-table {
    max-width: 800px; margin: 0 auto;
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-md); border: 1px solid #e5e7eb;
}
.comparison-table table {
    width: 100%; border-collapse: collapse;
    font-size: .9rem; background: var(--white);
}
.comparison-table th {
    padding: 16px 20px; background: var(--dark); color: var(--white);
    font-family: 'Outfit', sans-serif; font-weight: 600;
    font-size: .82rem; letter-spacing: .5px; text-align: center;
}
.comparison-table th:first-child { text-align: left; }
.comparison-table th.highlight { background: var(--red); }
.comparison-table td {
    padding: 14px 20px; border-bottom: 1px solid #f3f4f6;
    text-align: center; color: var(--text);
}
.comparison-table td:first-child {
    text-align: left; font-weight: 500; color: var(--dark);
}
.comparison-table td.highlight {
    background: rgba(192,57,43,.04); font-weight: 600; color: var(--red);
}
.comparison-table tr:last-child td { border-bottom: none; }

/* ============================================================
   CONDITIONS / REQUIREMENTS
   ============================================================ */
.conditions { padding: 100px 0; }
.conditions-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    max-width: 800px;
}
.condition-step {
    display: flex; gap: 16px; align-items: flex-start;
}
.condition-num {
    width: 36px; height: 36px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--red); color: var(--white); border-radius: 50%;
    font-family: 'DM Serif Display', serif; font-size: 1rem;
}
.condition-text h4 {
    font-family: 'Outfit', sans-serif; font-weight: 600;
    font-size: .9rem; color: var(--dark); margin-bottom: 4px;
}
.condition-text p { font-size: .85rem; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   FORM SECTION (standalone on rental pages)
   ============================================================ */
.form-section { padding: 120px 0; background: var(--off-white); }
.form-section-inner {
    max-width: 680px; margin: 0 auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-img-float { right: 20px; }
    .space-card { grid-template-columns: 1fr; gap: 28px; }
    .space-card:nth-child(even) { direction: ltr; }
    .contact-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .spaces-preview-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; margin-top: 48px; }
}

@media (max-width: 768px) {
    .navbar-links {
        display: none; position: fixed; inset: 0;
        background: rgba(255,255,255,.98); backdrop-filter: blur(20px);
        flex-direction: column; justify-content: center;
        align-items: center; gap: 20px;
    }
    .navbar-links.open { display: flex; }
    .navbar-links.open a { color: var(--dark) !important; font-size: 1.1rem; text-shadow: none !important; }
    .hamburger { display: flex; }

    .hero { min-height: 600px; }
    .hero .hero-bg {
        background-position: 25% center;
    }
    .hero h1 { font-size: 2.4rem; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .hero-stat-num { font-size: 1.5rem; }
    .hero-internal { min-height: 300px; height: 40vh; }
    .hero-internal h1 { font-size: 1.8rem; }

    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .feature-item { padding: 20px 12px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.featured { grid-column: span 2; grid-row: span 1; }
    .pricing-cards { grid-template-columns: 1fr; max-width: 400px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 22px; }
    .about-img-float {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -130px;
        margin-left: auto;
        width: 75%;
    }
    .about-highlights { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .lightbox-nav, .lightbox-close { min-width: 56px; min-height: 56px; }

    .cta-section .cta-stats { gap: 24px; flex-wrap: wrap; }
    .conditions-grid { grid-template-columns: 1fr; }
    .pricing-hero-card { padding: 36px 24px; }
    .pricing-hero-card .pricing-amount { font-size: 3rem; }
    .faq-question { padding: 18px 20px; font-size: .88rem; }
}

@media (max-width: 480px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.featured { grid-column: span 1; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .cta-section .cta-btns { flex-direction: column; align-items: center; }
    .cta-section .cta-btns .btn { width: 100%; justify-content: center; }
}
