@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --color-desert: #c4956a;
    --color-desert-light: #e8d5b8;
    --color-desert-dark: #8b6f50;
    --color-terracotta: #b85c3a;
    --color-terracotta-dark: #8c4028;
    --color-clay: #a07a5a;
    --color-gypsum: #e8e0d5;
    --color-gypsum-light: #f5f0ea;
    --color-sky: #5b7f9a;
    --color-sky-light: #8aadc4;
    --color-earth: #4a3f35;
    --color-earth-dark: #2d261f;
    --color-sage: #7a8a6e;
    --color-text: #3d352e;
    --color-text-light: #7a6e62;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html, body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-gypsum-light);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

.icon-defs {
    display: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-earth-dark);
}

/* ========== HERO ========== */
.hero-section {
    position: relative;
    min-height: 75vh;
    margin-top: 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(245, 240, 234, 0.6), rgba(232, 224, 213, 0.48)),
        var(--color-gypsum);
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: -18px;
    background-image: url('img/bardenas-reales02-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.62;
    filter: blur(2px) saturate(0.98);
    transform: scale(1.01);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(245, 240, 234, 0.34), rgba(245, 240, 234, 0.52) 68%, rgba(245, 240, 234, 0.68) 100%),
        radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08) 44%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.hero-section > .container {
    position: relative;
    z-index: 1;
}

.hero-section .display-4 {
    font-family: var(--font-heading);
    font-weight: 800;
    position: relative;
    z-index: 1;
    color: var(--color-earth-dark);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero-section .display-4::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: var(--color-terracotta);
    margin: 1.2rem auto;
    border-radius: 2px;
}

.hero-section .lead {
    font-weight: 300;
    opacity: 1;
    color: var(--color-earth);
    position: relative;
    z-index: 1;
}

/* ========== NAVBAR ========== */
.navbar-dark.bg-dark {
    background: var(--color-earth-dark) !important;
    border-bottom: 3px solid var(--color-terracotta);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-desert-light) !important;
    letter-spacing: 0.01em;
}

.brand-sub {
    font-size: 0.65rem;
    opacity: 0.6;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--color-gypsum) !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(232, 224, 213, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--color-terracotta);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--color-desert-light);
}

.navbar-dark .navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}

.navbar-dark .navbar-nav .nav-link.active {
    color: var(--color-desert-light) !important;
    font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

@media (max-width: 991.98px) {
    .navbar-collapse.collapse:not(.show) {
        display: none !important;
    }

    .navbar-collapse.collapse.show {
        display: block !important;
        flex-basis: 100%;
        padding-top: 0.75rem;
    }
}

/* ========== SECTION TITLES ========== */
section h2 {
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2.5px;
    background: var(--color-terracotta);
    border-radius: 2px;
}

/* ========== AMENITIES ========== */
.amenity-icon {
    width: 58px;
    height: 58px;
    margin-inline: auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(232, 224, 213, 0.72));
    border: 1px solid rgba(184, 92, 58, 0.18);
    color: var(--color-terracotta-dark);
    box-shadow: 0 8px 18px rgba(74, 63, 53, 0.06);
}

.amenity-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

section.bg-light {
    background-color: var(--color-gypsum) !important;
}

/* ========== CARDS ========== */
.card {
    border: none;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    border: 1px solid rgba(196, 149, 106, 0.1);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(74, 63, 53, 0.1) !important;
    border-color: rgba(184, 92, 58, 0.2);
}

.card .card-title {
    font-family: var(--font-heading);
    color: var(--color-terracotta-dark);
}

/* ========== BUTTONS ========== */
.btn-warning {
    background: var(--color-terracotta);
    border-color: var(--color-terracotta);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    border-radius: 6px;
}

.btn-warning:hover {
    background: var(--color-terracotta-dark);
    border-color: var(--color-terracotta-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 92, 58, 0.4);
}

.btn-dark {
    background: var(--color-earth);
    border-color: var(--color-earth);
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    border-radius: 6px;
}

.btn-dark:hover {
    background: var(--color-earth-dark);
    border-color: var(--color-earth-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 38, 31, 0.3);
}

/* ========== FORM ========== */
.form-control, .form-select {
    border-radius: 8px;
    border: 1.5px solid var(--color-desert-light);
    padding: 0.6rem 0.9rem;
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--color-terracotta);
    box-shadow: 0 0 0 3px rgba(184, 92, 58, 0.12);
}

.form-label {
    color: var(--color-earth-dark);
}

/* ========== TABLES ========== */
.table {
    border-radius: 8px;
    overflow: hidden;
}

.table thead {
    background: var(--color-desert-light);
}

.table thead th {
    font-family: var(--font-heading);
    font-weight: 600;
    border-bottom: none;
    color: var(--color-earth-dark);
    font-size: 0.9rem;
}

.table tbody tr:hover {
    background-color: rgba(196, 149, 106, 0.06);
}

/* ========== INFO SECTION ========== */
section.bg-light.rounded {
    background: var(--color-gypsum) !important;
    border-left: 4px solid var(--color-terracotta);
}

/* ========== GALLERY ========== */
.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: var(--color-gypsum);
    border: 1px solid rgba(196, 149, 106, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 28px rgba(74, 63, 53, 0.12);
    border-color: rgba(184, 92, 58, 0.25);
}

.gallery-item span {
    font-family: var(--font-heading);
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--color-earth-dark) !important;
    border-top: 3px solid var(--color-terracotta);
}

.site-footer .text-muted,
.site-footer .footer-link {
    color: #d8d0c7 !important;
}

.site-footer h5 {
    font-family: var(--font-heading);
    color: var(--color-desert-light) !important;
    font-size: 1rem;
}

.footer-link {
    color: rgba(232, 224, 213, 0.5) !important;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.88rem;
    display: inline-flex;
    min-height: 28px;
    align-items: center;
}

.site-footer li + li {
    margin-top: 0.2rem;
}

.footer-link:hover {
    color: var(--color-desert) !important;
    text-decoration: none;
}

.site-footer hr {
    opacity: 0.15;
    border-color: var(--color-desert-dark);
}

/* ========== CTA SECTION ========== */
section.bg-dark.text-white.py-5 {
    background: linear-gradient(160deg, var(--color-earth-dark), var(--color-earth)) !important;
}

section.bg-dark.text-white.py-5 h2 {
    color: var(--color-gypsum) !important;
}

section.bg-dark.text-white.py-5 p {
    color: var(--color-desert-light) !important;
}

/* ========== MISC DECORATIONS ========== */
/* Desert line pattern for section dividers */
.desert-divider {
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--color-terracotta) 0px,
        var(--color-terracotta) 20px,
        transparent 20px,
        transparent 40px
    );
}

/* Subtle texture on certain backgrounds */
.texture-dots {
    background-image: radial-gradient(circle, rgba(196, 149, 106, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-section {
        min-height: 55vh;
    }

    .hero-section .display-4 {
        font-size: 2rem;
    }
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1100px;
}

/* ========== BLAZOR ERROR ========== */
#blazor-error-ui {
    color-scheme: light only;
    background: var(--color-gypsum);
    border-top: 2px solid var(--color-terracotta);
    bottom: 0;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    font-size: 0.88rem;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* ========== LOGO IN NAVBAR ========== */
.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo-img {
        height: 38px;
    }
}

/* ========== BOOKING WIDGET ========== */
.booking-widget {
    max-width: 650px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(18px) saturate(0.9);
    -webkit-backdrop-filter: blur(18px) saturate(0.9);
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 18px 48px rgba(74, 63, 53, 0.14);
}

.booking-widget .form-control {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(74, 63, 53, 0.14);
    color: var(--color-earth-dark);
    border-radius: 8px;
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
}

.booking-widget .form-control:focus {
    background: #fff;
    border-color: var(--color-terracotta);
    box-shadow: 0 0 0 3px rgba(184, 92, 58, 0.2);
    color: var(--color-earth-dark);
}

.booking-widget .form-control::-webkit-calendar-picker-indicator {
    filter: none;
    opacity: 0.65;
    cursor: pointer;
}

.booking-widget .form-control::placeholder {
    color: var(--color-text-light);
}

.booking-widget .form-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.booking-widget .text-white-50 {
    color: var(--color-text-light) !important;
}

/* ========== ALERT DESERT ========== */
.alert-desert {
    background: var(--color-gypsum);
    border: 1px solid var(--color-desert-light);
    color: var(--color-text);
    border-radius: 8px;
}

/* ========== HEADER TOP BAR ========== */
.header-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
}

.header-contact-link {
    color: rgba(232, 224, 213, 0.65);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.78rem;
}

.header-contact-link:hover {
    color: var(--color-desert-light);
}

/* ========== FEATURES STRIP ========== */
.features-strip {
    background: #fff;
    border-bottom: 1px solid rgba(196, 149, 106, 0.12);
}

.feature-item {
    padding: 0.25rem 0;
}

.feature-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 0.45rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--color-gypsum-light);
    border: 1px solid rgba(184, 92, 58, 0.16);
    color: var(--color-terracotta-dark);
}

.feature-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-light);
    font-weight: 500;
}

.feature-value {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-earth-dark);
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(74, 63, 53, 0.08) !important;
}

.testimonial-stars {
    color: var(--color-terracotta);
    font-size: 1rem;
    letter-spacing: 0.15em;
}

.testimonial-author strong {
    color: var(--color-earth-dark);
}

/* ========== PRICING TABLE ========== */
.table-pricing thead th {
    font-family: var(--font-heading);
    background: var(--color-gypsum);
    border-bottom: 2px solid var(--color-terracotta);
    color: var(--color-earth-dark);
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
}

.table-pricing tbody td {
    padding: 0.75rem 1rem;
    vertical-align: middle;
    border-color: rgba(196, 149, 106, 0.12);
    font-size: 0.9rem;
}

.table-pricing tbody tr:hover {
    background-color: rgba(196, 149, 106, 0.04);
}

/* ========== FAQS ========== */
.faq-item {
    border-radius: 10px !important;
    transition: background 0.2s;
}

.faq-item:hover {
    background: var(--color-gypsum-light);
}

.faq-item h3 {
    color: var(--color-earth-dark);
}

/* ========== TEXT TERRACOTTA ========== */
.text-terracotta {
    color: var(--color-terracotta) !important;
    text-decoration: none;
    font-weight: 600;
}

.text-terracotta:hover {
    color: var(--color-terracotta-dark) !important;
    text-decoration: underline;
}

/* ========== OUTLINE BUTTON ========== */
.btn-outline-dark {
    border: 1.5px solid var(--color-earth);
    color: var(--color-earth);
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.btn-outline-dark:hover {
    background: var(--color-earth);
    color: #fff;
    border-color: var(--color-earth);
}

a:focus,
button:focus,
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: none;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible {
    outline: 2px solid rgba(184, 92, 58, 0.55);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(184, 92, 58, 0.12);
}

/* ========== SEO / CONVERSION ENHANCEMENTS ========== */
.hero-kicker {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0.35rem 0.8rem;
    border: 1px solid rgba(140, 64, 40, 0.2);
    border-radius: 999px;
    color: var(--color-terracotta-dark);
    background: rgba(255, 255, 255, 0.56);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-actions {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-section .btn-outline-light {
    border-color: rgba(74, 63, 53, 0.46);
    color: var(--color-earth-dark);
    background: rgba(255, 255, 255, 0.36);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-section .btn-outline-light:hover {
    border-color: var(--color-earth-dark);
    background: var(--color-earth-dark);
    color: #fff;
}

.trust-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(196, 149, 106, 0.18);
    box-shadow: 0 10px 24px rgba(74, 63, 53, 0.06);
}

.trust-panel > div {
    text-align: center;
    padding: 0.25rem;
}

.trust-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-terracotta-dark);
}

.trust-label {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-light);
}

.attraction-card {
    overflow: hidden;
}

.attraction-mark {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--color-gypsum);
    color: var(--color-terracotta-dark);
    border: 1px solid rgba(184, 92, 58, 0.22);
    font-family: var(--font-heading);
    font-weight: 800;
}

.gallery-photo {
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    background-size: cover;
    background-position: center;
}

.gallery-photo-main {
    background-image:
        linear-gradient(180deg, rgba(45, 38, 31, 0.05), rgba(45, 38, 31, 0.72)),
        url('img/casa/sm-0img-20260526-wa0007.webp');
}

.gallery-photo span {
    color: #fff;
    font-size: 1.35rem;
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.35);
}

.gallery-caption-card {
    min-height: 360px;
    height: 100%;
    border-radius: 8px;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid rgba(196, 149, 106, 0.18);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-tile {
    min-height: 170px;
    background:
        linear-gradient(135deg, rgba(232, 224, 213, 0.92), rgba(196, 149, 106, 0.28)),
        repeating-linear-gradient(110deg, rgba(184, 92, 58, 0.1) 0 2px, transparent 2px 18px);
}

.gallery-tile span {
    color: var(--color-earth-dark);
    font-weight: 700;
    text-align: center;
    padding: 0 0.75rem;
}

.gallery-real-photo {
    aspect-ratio: 4 / 3;
    background: #fff;
}

.gallery-real-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.gallery-real-photo span {
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.gallery-real-photo::after {
    content: '';
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(to top, rgba(45, 38, 31, 0.72), transparent);
    pointer-events: none;
}

.booking-fast-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

/* ========== LA CASA ========== */
.house-hero {
    min-height: 66vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(45, 38, 31, 0.88), rgba(45, 38, 31, 0.42)),
        url('img/casa/sm-0img-20260526-wa0007.webp') center / cover no-repeat;
}

.house-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(to top, var(--color-gypsum-light), transparent);
    pointer-events: none;
}

.house-hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    padding: 5rem 0;
}

.house-hero h1 {
    color: var(--color-gypsum);
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.house-hero p {
    color: var(--color-desert-light);
    font-size: 1.08rem;
    max-width: 560px;
}

.house-photo-card,
.house-gallery-large,
.house-gallery-small img {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(196, 149, 106, 0.16);
    box-shadow: 0 14px 34px rgba(74, 63, 53, 0.08);
    background: #f7f2eb;
}

.house-photo-card img,
.house-gallery-large img,
.house-gallery-small img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.house-photo-card {
    aspect-ratio: 4 / 3;
}

.house-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.house-info-card {
    height: 100%;
    padding: 1.35rem;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(196, 149, 106, 0.16);
    box-shadow: 0 10px 24px rgba(74, 63, 53, 0.06);
}

.house-info-card h3 {
    margin-top: 0.85rem;
}

.house-gallery-preview {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1rem;
}

.house-gallery-large {
    min-height: 430px;
}

.house-gallery-large img {
    height: 430px;
}

.house-gallery-small {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.house-gallery-small img {
    height: 205px;
}

.equipment-panel,
.stay-panel {
    border-radius: 8px;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid rgba(196, 149, 106, 0.16);
    box-shadow: 0 10px 24px rgba(74, 63, 53, 0.06);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.equipment-grid span {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0.7rem 0.85rem;
    border-radius: 8px;
    background: var(--color-gypsum-light);
    color: var(--color-earth-dark);
    font-size: 0.88rem;
    font-weight: 600;
}

.stay-panel li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(196, 149, 106, 0.16);
}

.stay-panel li:last-child {
    border-bottom: 0;
}

.house-final-cta {
    border-radius: 8px !important;
}

/* ========== SEO LANDINGS ========== */
.seo-landing-hero {
    min-height: 62vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--color-earth-dark);
}

.seo-landing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.62;
    filter: saturate(0.9);
}

.seo-landing-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(45, 38, 31, 0.86), rgba(45, 38, 31, 0.48)),
        linear-gradient(to top, rgba(245, 240, 234, 0.12), transparent 40%);
}

.seo-landing-hero .container {
    position: relative;
    z-index: 1;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.seo-landing-hero .hero-kicker {
    display: none;
}

.house-hero .hero-kicker {
    display: none;
}

.seo-landing-hero h1 {
    max-width: 760px;
    color: var(--color-gypsum);
    font-size: clamp(2.3rem, 5vw, 4.4rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.seo-landing-hero p:not(.hero-kicker) {
    max-width: 640px;
    color: var(--color-desert-light);
    font-size: 1.08rem;
}

.seo-landing-bardenas::before {
    background-image: url('img/casa/sm-0img-20260526-wa0006.webp');
}

.seo-landing-sendaviva::before,
.seo-landing-ribera::before {
    background-image: url('img/casa/sm-laalcoholeranavarra015.webp');
}

.seo-landing-piscina::before {
    background-image: url('img/casa/sm-0img-20260526-wa0007.webp');
}

.seo-landing-valtierra::before,
.seo-landing-familias::before {
    background-image: url('img/casa/sm-laalcoholeranavarra035.webp');
}

.seo-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 2rem;
    align-items: start;
}

.seo-fact-card {
    border-radius: 8px;
    padding: 1.25rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(232, 224, 213, 0.68));
    border: 1px solid rgba(196, 149, 106, 0.18);
    box-shadow: 0 12px 28px rgba(74, 63, 53, 0.07);
}

.seo-fact-card li {
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(196, 149, 106, 0.16);
}

.seo-fact-card li:last-child {
    border-bottom: 0;
}

.seo-photo-text {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(196, 149, 106, 0.14);
    box-shadow: 0 12px 28px rgba(74, 63, 53, 0.06);
}

.seo-photo-text img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.seo-photo-text > div {
    padding: 1rem;
}

.seo-link-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.seo-link-grid a {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: var(--color-gypsum);
    border: 1px solid rgba(184, 92, 58, 0.16);
    color: var(--color-terracotta-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

.seo-link-grid a:hover {
    background: var(--color-earth);
    color: #fff;
}

.home-guides {
    background: var(--color-gypsum-light);
    border-top: 1px solid rgba(196, 149, 106, 0.12);
}

/* ========== LOCATION ========== */
.location-map-section h2::after,
.route-planner h2::after {
    left: 0;
    transform: none;
}

.map-card {
    height: 100%;
    min-height: 420px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(196, 149, 106, 0.2);
    box-shadow: 0 14px 34px rgba(74, 63, 53, 0.1);
    background: var(--color-gypsum);
}

.map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

.location-summary {
    border-radius: 8px;
    padding: 1.5rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(232, 224, 213, 0.72)),
        repeating-linear-gradient(120deg, rgba(184, 92, 58, 0.08) 0 2px, transparent 2px 22px);
    border: 1px solid rgba(196, 149, 106, 0.22);
    box-shadow: 0 14px 34px rgba(74, 63, 53, 0.08);
}

.location-eyebrow,
.route-card-tag {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: rgba(184, 92, 58, 0.1);
    color: var(--color-terracotta-dark);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.location-highlights {
    display: grid;
    gap: 0.65rem;
}

.location-highlights li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(196, 149, 106, 0.22);
}

.location-highlights strong {
    color: var(--color-terracotta-dark);
}

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

.route-card {
    height: 100%;
    border-radius: 8px;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid rgba(196, 149, 106, 0.16);
    box-shadow: 0 10px 24px rgba(74, 63, 53, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.route-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(74, 63, 53, 0.1);
}

.route-card h3 {
    margin-top: 0.8rem;
}

/* ========== FLOATING CONTACT ========== */
.floating-contact {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 900;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.floating-contact-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.65rem 0.9rem;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(45, 38, 31, 0.18);
}

.floating-contact-whatsapp {
    background: #18754d;
    color: #fff;
}

.floating-contact-whatsapp:hover {
    background: #166f49;
    color: #fff;
}

.floating-contact-booking {
    background: var(--color-terracotta);
    color: #fff;
}

.floating-contact-booking:hover {
    background: var(--color-terracotta-dark);
    color: #fff;
}

@media (max-width: 768px) {
    .booking-widget {
        padding: 1rem;
    }

    .trust-panel {
        grid-template-columns: 1fr;
    }

    .gallery-photo,
    .gallery-caption-card {
        min-height: 260px;
    }

    .gallery-real-photo {
        aspect-ratio: 1 / 1;
    }

    .booking-fast-actions {
        grid-template-columns: 1fr;
    }

    .house-hero {
        min-height: 58vh;
        background:
            linear-gradient(180deg, rgba(45, 38, 31, 0.76), rgba(45, 38, 31, 0.6)),
            url('img/casa/sm-0img-20260526-wa0007.webp') center / cover no-repeat;
    }

    .house-hero-content {
        padding: 4rem 0;
    }

    .house-gallery-preview {
        grid-template-columns: 1fr;
    }

    .house-gallery-large {
        min-height: 300px;
    }

    .house-gallery-small {
        grid-template-columns: 1fr;
    }

    .house-gallery-small img {
        min-height: 220px;
    }

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

    .seo-landing-hero {
        min-height: 56vh;
    }

    .seo-landing-hero::after {
        background: linear-gradient(180deg, rgba(45, 38, 31, 0.82), rgba(45, 38, 31, 0.58));
    }

    .seo-intro-grid,
    .seo-photo-text,
    .seo-link-grid {
        grid-template-columns: 1fr;
    }

    .seo-photo-text img {
        min-height: 240px;
    }

    .map-card,
    .map-card iframe {
        min-height: 320px;
    }

    .floating-contact {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        justify-content: center;
    }

    .floating-contact-link {
        flex: 1;
        padding-inline: 0.7rem;
    }
}
