.home-hero-clean {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 5rem 1rem;
    min-height: 500px;
    display: flex;
    align-items: center;
    background:url('https://1.ejidosantodomingo.com/assets/img/hero-bg.png') center center / cover no-repeat;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .18);
}

.home-hero-clean::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: .18;
    pointer-events: none;
}

.home-hero-clean::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(210,176,118,.16) 0%, transparent 65%);
    top: -120px;
    right: -100px;
    pointer-events: none;
}

.home-hero-content {
    position: relative;
    z-index: 2;
}

.hero-kicker,
.section-kicker {
    display: inline-block;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #d2b076;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    max-width: 720px;
    margin: 0 auto 2rem;
    color: rgba(255,255,255,.82);
}

.hero-search-card {
    max-width: 860px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 22px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,.18);
}

.hero-input {
    min-height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.08);
}

.btn-luxury-search {
    min-height: 48px;
    border-radius: 14px;
    background: linear-gradient(180deg, #d2b076 0%, #b89258 100%);
    color: #111827;
    border: none;
    font-weight: 600;
}

.btn-luxury-search:hover {
    background: linear-gradient(180deg, #ddbd84 0%, #c39c62 100%);
    color: #111827;
}

.hero-mini-stats {
    color: rgba(255,255,255,.72);
    font-size: .95rem;
}

.hero-mini-stats strong {
    color: #ffffff;
}

.stat-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}

.stat-value {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
    margin-bottom: .45rem;
}

.stat-label {
    color: #64748b;
    font-size: .92rem;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    flex-wrap: wrap;
}

.section-title {
    font-size: clamp(1.5rem, 2.4vw, 2.2rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.property-card {
    border-radius: 22px;
    transition: transform .25s ease, box-shadow .25s ease;
    background: #ffffff;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .12) !important;
}

.property-media {
    height: 250px;
    overflow: hidden;
    background: #e5e7eb;
}

.property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.property-card:hover .property-image {
    transform: scale(1.04);
}

.property-image-placeholder {
    height: 100%;
    background: linear-gradient(135deg, #475569, #1e293b);
}

.property-image-placeholder i {
    font-size: 3rem;
}

.property-overlay-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem;
}

.property-badge-main {
    background: rgba(255,255,255,.92) !important;
    color: #111827 !important;
}

.property-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
}

.property-price-alt {
    font-size: .88rem;
    color: #64748b;
}

.property-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.35;
}

.property-location {
    color: #64748b;
    font-size: .92rem;
}

.property-features {
    color: #475569;
    font-size: .9rem;
}

.property-btn {
    border-radius: 12px;
    min-height: 44px;
    font-weight: 600;
}

.home-cta-final {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 28px;
    padding: 3rem 1.5rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
}

.home-cta-title {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .75rem;
}

.home-cta-text {
    max-width: 640px;
    margin: 0 auto 1.5rem;
    color: #64748b;
}

@media (max-width: 767.98px) {
    .home-hero-clean {
        min-height: auto;
        padding: 4rem 1rem;
        border-radius: 22px;
    }

    .hero-search-card {
        padding: .85rem;
    }

    .property-media {
        height: 220px;
    }
}

.properties-hero-box {
    background:
        radial-gradient(circle at top right, rgba(210,176,118,.12), transparent 28%),
        linear-gradient(135deg, #0f172a 0%, #111827 60%, #1e293b 100%);
    border-radius: 26px;
    padding: 2.25rem;
    color: #fff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .12);
}

.properties-page-title {
    font-size: clamp(1.9rem, 3.2vw, 3rem);
    line-height: 1.08;
    font-weight: 700;
    margin-bottom: .75rem;
}

.properties-page-subtitle {
    color: rgba(255,255,255,.76);
    max-width: 62ch;
}

.properties-results-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .95rem 1.2rem;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.88);
    font-size: .95rem;
    backdrop-filter: blur(8px);
}

.properties-results-pill strong {
    color: #fff;
    font-size: 1.05rem;
}

.filter-panel {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 24px;
    padding: 1.25rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}

.filter-label {
    font-size: .82rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: .45rem;
}

.filter-input {
    min-height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: none;
}

.filter-input:focus {
    border-color: rgba(184,146,88,.7);
    box-shadow: 0 0 0 .2rem rgba(184,146,88,.12);
}

.filter-btn-primary {
    min-height: 48px;
    border-radius: 14px;
    font-weight: 600;
}

.filter-btn-reset {
    min-height: 48px;
    min-width: 48px;
    border-radius: 14px;
}

.empty-results-box {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 28px;
    padding: 3rem 1.5rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}

.empty-results-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    color: #fff;
    font-size: 1.75rem;
}

@media (max-width: 767.98px) {
    .properties-hero-box {
        padding: 1.5rem;
        border-radius: 22px;
    }

    .filter-panel {
        padding: 1rem;
        border-radius: 20px;
    }
}

.property-detail-page {
    padding-bottom: 1rem;
}

.property-detail-header {
    padding: 0.25rem 0 0.5rem;
}

.property-detail-title {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    font-weight: 700;
    color: #0f172a;
}

.property-detail-location {
    color: #64748b;
    font-size: 1rem;
}

.property-gallery-card {
    background: #fff;
    border-radius: 24px;
    padding: .5rem;
    box-shadow: 0 14px 32px rgba(15, 23, 42, .08);
}

.property-detail-main-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    background: #e5e7eb;
}

.property-thumbs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.property-thumb-item {
    width: 108px;
    height: 76px;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    opacity: .55;
    border: 2px solid transparent;
    transition: all .2s ease;
    box-shadow: 0 6px 16px rgba(15, 23, 42, .08);
}

.property-thumb-item:hover,
.property-thumb-item.is-active {
    opacity: 1;
    border-color: #b89258;
    transform: translateY(-1px);
}

.property-image-placeholder {
    background: linear-gradient(135deg, #475569, #1e293b);
}

.property-image-placeholder i {
    font-size: 3.2rem;
}

.property-image-placeholder-lg {
    height: 420px;
}

.detail-section-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}

.detail-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.detail-description {
    line-height: 1.8;
    font-size: 1rem;
}

.property-pdf-frame {
    width: 100%;
    height: 520px;
    border: none;
    background: #f8fafc;
}

.property-sidebar-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 14px 30px rgba(15, 23, 42, .08);
}

.property-sidebar-price {
    font-size: clamp(1.9rem, 2.8vw, 2.6rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.05;
}

.property-sidebar-price-alt {
    margin-top: .35rem;
    color: #64748b;
    font-size: 1rem;
}

.property-sidebar-maintenance {
    color: #64748b;
    font-size: .92rem;
}

.sidebar-block-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.property-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .85rem;
}

.property-feature-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #475569;
    font-size: .95rem;
}

.property-feature-list li i {
    width: 18px;
    color: #b89258;
    flex-shrink: 0;
}

.detail-divider {
    height: 1px;
    background: rgba(15, 23, 42, .08);
    margin: 1.25rem 0;
}

.property-code {
    color: #64748b;
    font-size: .95rem;
}

.property-contact-btn {
    min-height: 48px;
    border-radius: 14px;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .property-sidebar-card {
        position: static !important;
    }

    .property-detail-main-image {
        height: 360px;
    }

    .property-image-placeholder-lg {
        height: 320px;
    }
}

@media (max-width: 767.98px) {
    .property-detail-title {
        font-size: 1.85rem;
    }

    .property-detail-main-image {
        height: 280px;
    }

    .property-thumb-item {
        width: 88px;
        height: 64px;
    }

    .detail-section-card,
    .property-sidebar-card {
        border-radius: 20px;
        padding: 1.15rem;
    }

    .property-pdf-frame {
        height: 420px;
    }
}

 .agents-hero {
    background:
        radial-gradient(circle at top right, rgba(210,176,118,.10), transparent 28%),
        linear-gradient(135deg, #0f172a 0%, #111827 60%, #1e293b 100%);
    border-radius: 26px;
    padding: 2.25rem;
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .12);
}

.agents-page-title {
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.08;
    font-weight: 700;
    margin-bottom: .75rem;
}

.agents-page-subtitle {
    color: rgba(255,255,255,.76);
    max-width: 62ch;
}

.agents-count-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .95rem 1.2rem;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.88);
    font-size: .95rem;
    backdrop-filter: blur(8px);
}

.agents-count-pill strong {
    color: #fff;
    margin-right: .35rem;
    font-size: 1.05rem;
}

.agent-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.agent-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, .10);
}

.agent-card-top {
    padding: 2rem 2rem 1rem;
    display: flex;
    justify-content: center;
}

.agent-photo {
    width: 108px;
    height: 108px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .10);
    background: #e5e7eb;
}

.agent-card-body {
    padding: 0 2rem 2rem;
    text-align: center;
}

.agent-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .5rem;
}

.agent-properties {
    color: #64748b;
    font-size: .95rem;
}

.agent-contact-list {
    display: grid;
    gap: .75rem;
    text-align: left;
    margin-top: 1rem;
}

.agent-contact-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .94rem;
    color: #475569;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .05);
    border-radius: 14px;
    padding: .85rem 1rem;
}

.agent-contact-item i {
    color: #b89258;
    flex-shrink: 0;
}

.agent-contact-item a {
    color: #334155;
    text-decoration: none;
    word-break: break-word;
}

.agent-contact-item a:hover {
    color: #0f172a;
}

.agent-btn {
    border-radius: 14px;
    min-height: 46px;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .agents-hero {
        padding: 1.5rem;
        border-radius: 22px;
    }

    .agent-card-body {
        padding: 0 1.25rem 1.25rem;
    }

    .agent-card-top {
        padding: 1.5rem 1.5rem 1rem;
    }
}
   
   .agent-detail-hero {
    background:
        radial-gradient(circle at top right, rgba(210,176,118,.10), transparent 30%),
        linear-gradient(135deg, #0f172a 0%, #111827 60%, #1e293b 100%);
    border-radius: 28px;
    padding: 2rem;
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .12);
}

.agent-detail-photo {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid rgba(255,255,255,.95);
    box-shadow: 0 14px 32px rgba(0,0,0,.18);
    background: #e5e7eb;
}

.agent-detail-title {
    font-size: clamp(2rem, 3.4vw, 3.2rem);
    line-height: 1.08;
    font-weight: 700;
    margin-bottom: .75rem;
}

.agent-detail-subtitle {
    color: rgba(255,255,255,.78);
    max-width: 58ch;
}

.agent-meta-list {
    display: grid;
    gap: .75rem;
    margin-top: 1rem;
}

.agent-meta-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: rgba(255,255,255,.88);
    font-size: .95rem;
}

.agent-meta-item i {
    color: #d2b076;
    flex-shrink: 0;
}

.agent-meta-item a {
    color: rgba(255,255,255,.88);
    text-decoration: none;
    word-break: break-word;
}

.agent-meta-item a:hover {
    color: #ffffff;
}

.agent-contact-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    padding: 1.25rem;
    backdrop-filter: blur(8px);
}

.agent-contact-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: .75rem;
}

.agent-contact-text {
    color: rgba(255,255,255,.72);
    font-size: .92rem;
    margin-bottom: 1rem;
}

.agent-contact-btn {
    min-height: 46px;
    border-radius: 14px;
    font-weight: 600;
}

.agent-detail-page .detail-section-card {
    background: #ffffff;
}

@media (max-width: 991.98px) {
    .agent-detail-hero {
        padding: 1.5rem;
        border-radius: 24px;
    }

    .agent-detail-photo {
        width: 140px;
        height: 140px;
        margin-inline: auto;
    }
}

@media (max-width: 767.98px) {
    .agent-detail-title {
        font-size: 1.9rem;
    }

    .agent-contact-card {
        padding: 1rem;
        border-radius: 18px;
    }
}


.blog-hero {
    background:
        radial-gradient(circle at top right, rgba(210,176,118,.10), transparent 28%),
        linear-gradient(135deg, #0f172a 0%, #111827 60%, #1e293b 100%);
    border-radius: 26px;
    padding: 2.25rem;
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .12);
}

.blog-page-title {
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    line-height: 1.08;
    font-weight: 700;
    margin-bottom: .75rem;
}

.blog-page-subtitle {
    color: rgba(255,255,255,.76);
    max-width: 62ch;
}

.blog-count-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .95rem 1.2rem;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.88);
    font-size: .95rem;
    backdrop-filter: blur(8px);
}

.blog-count-pill strong {
    color: #fff;
    margin-right: .35rem;
    font-size: 1.05rem;
}

.blog-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, .10);
}

.blog-card-image-link {
    display: block;
    overflow: hidden;
    text-decoration: none;
}

.blog-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform .4s ease;
    background: #e5e7eb;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.04);
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.4rem;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    color: #64748b;
    font-size: .82rem;
}

.blog-card-title {
    font-size: 1.15rem;
    line-height: 1.35;
    font-weight: 700;
    margin-bottom: .75rem;
}

.blog-card-title a {
    color: #0f172a;
    text-decoration: none;
}

.blog-card-title a:hover {
    color: #111827;
}

.blog-card-excerpt {
    color: #64748b;
    font-size: .94rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.blog-read-btn {
    min-height: 46px;
    border-radius: 14px;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .blog-hero {
        padding: 1.5rem;
        border-radius: 22px;
    }

    .blog-card {
        border-radius: 20px;
    }

    .blog-card-image {
        height: 220px;
    }

    .blog-card-body {
        padding: 1.15rem;
    }
}

.blog-article-shell {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 28px;
    padding: 1.25rem 1.25rem 2rem;
    box-shadow: 0 14px 32px rgba(15, 23, 42, .06);
}

.blog-detail-cover-wrap {
    overflow: hidden;
    border-radius: 22px;
}

.blog-detail-cover {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    background: #e5e7eb;
}

.blog-detail-header {
    padding-inline: .25rem;
}

.blog-detail-title {
    font-size: clamp(2rem, 3.6vw, 3.4rem);
    line-height: 1.08;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: #64748b;
    font-size: .9rem;
    margin-bottom: 1.25rem;
}

.blog-detail-excerpt {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #475569;
    max-width: 70ch;
    margin-bottom: 0;
}

.blog-detail-content {
    padding-inline: .25rem;
    color: #334155;
    line-height: 1.9;
    font-size: 1rem;
}

.blog-detail-content p {
    margin-bottom: 1.15rem;
    max-width: 72ch;
}

.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
    color: #0f172a;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: .9rem;
    line-height: 1.2;
}

.blog-detail-content h2 {
    font-size: 1.6rem;
}

.blog-detail-content h3 {
    font-size: 1.3rem;
}

.blog-detail-content ul,
.blog-detail-content ol {
    padding-left: 1.2rem;
    margin-bottom: 1.25rem;
}

.blog-detail-content li {
    margin-bottom: .55rem;
}

.blog-detail-content img {
    border-radius: 18px;
    margin: 1.5rem 0;
}

.blog-detail-content blockquote {
    border-left: 4px solid #b89258;
    padding: .75rem 1rem;
    margin: 1.5rem 0;
    color: #475569;
    background: #f8fafc;
    border-radius: 0 14px 14px 0;
}

.blog-detail-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    padding-inline: .25rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(15, 23, 42, .08);
}

.blog-sidebar-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 24px;
    padding: 1.25rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
}

.blog-sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.blog-recent-list {
    display: grid;
    gap: 1rem;
}

.blog-recent-item {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: .9rem;
    align-items: start;
    padding: .5rem;
    border-radius: 16px;
    transition: background .2s ease, transform .2s ease;
}

.blog-recent-item:hover {
    background: #f8fafc;
    transform: translateY(-1px);
}

.blog-recent-thumb {
    width: 88px;
    height: 68px;
    object-fit: cover;
    border-radius: 12px;
    background: #e5e7eb;
}

.blog-recent-title {
    font-size: .92rem;
    line-height: 1.35;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 .35rem;
}

.blog-recent-date {
    margin: 0;
    font-size: .78rem;
    color: #64748b;
}

@media (max-width: 991.98px) {
    .blog-sidebar-card {
        position: static !important;
    }
}

@media (max-width: 767.98px) {
    .blog-article-shell {
        border-radius: 22px;
        padding: 1rem 1rem 1.5rem;
    }

    .blog-detail-cover-wrap {
        border-radius: 18px;
    }

    .blog-detail-cover {
        max-height: 280px;
    }

    .blog-detail-title {
        font-size: 1.95rem;
    }

    .blog-recent-item {
        grid-template-columns: 76px 1fr;
    }

    .blog-recent-thumb {
        width: 76px;
        height: 60px;
    }
}

.contact-hero {
    background:
        radial-gradient(circle at top right, rgba(210,176,118,.10), transparent 28%),
        linear-gradient(135deg, #0f172a 0%, #111827 60%, #1e293b 100%);
    border-radius: 26px;
    padding: 2.25rem;
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .12);
}

.contact-page-title {
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    line-height: 1.08;
    font-weight: 700;
    margin-bottom: .75rem;
}

.contact-page-subtitle {
    color: rgba(255,255,255,.76);
    max-width: 62ch;
}

.contact-hero-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .95rem 1.2rem;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.88);
    font-size: .95rem;
    backdrop-filter: blur(8px);
}

.contact-form-shell,
.contact-side-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
    height: 100%;
}

.contact-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.contact-label {
    font-size: .85rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: .45rem;
}

.contact-input {
    min-height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: none;
}

.contact-textarea {
    min-height: 140px;
    resize: vertical;
    padding-top: .85rem;
}

.contact-input:focus {
    border-color: rgba(184,146,88,.7);
    box-shadow: 0 0 0 .2rem rgba(184,146,88,.12);
}

.contact-submit-btn {
    min-height: 48px;
    border-radius: 14px;
    font-weight: 600;
    padding-inline: 1.2rem;
}

.contact-info-list {
    display: grid;
    gap: 1rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .05);
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(184,146,88,.12);
    color: #b89258;
    flex-shrink: 0;
}

.contact-info-label {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #64748b;
    margin-bottom: .2rem;
}

.contact-info-value {
    color: #0f172a;
    font-weight: 500;
    line-height: 1.5;
}

.contact-whatsapp-box {
    margin-top: 1.5rem;
    padding: 1.2rem;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    border: 1px solid rgba(15, 23, 42, .05);
}

.contact-whatsapp-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .5rem;
}

.contact-whatsapp-text {
    color: #64748b;
    font-size: .92rem;
    margin-bottom: 1rem;
}

.contact-wa-btn {
    min-height: 48px;
    border-radius: 14px;
    font-weight: 600;
}

.contact-alert-success,
.contact-alert-danger {
    border-radius: 16px;
    border: none;
}

@media (max-width: 767.98px) {
    .contact-hero {
        padding: 1.5rem;
        border-radius: 22px;
    }

    .contact-form-shell,
    .contact-side-card {
        border-radius: 20px;
        padding: 1.15rem;
    }
}

   
    .navbar-luxury {
    background: rgba(11, 18, 32, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    padding-top: .85rem;
    padding-bottom: .85rem;
}

.navbar-brand-luxury {
    text-decoration: none;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    color: #c8a96b;
    border: 1px solid rgba(255,255,255,.10);
    font-size: 1rem;
    flex-shrink: 0;
}

.brand-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .01em;
}

.brand-subtitle {
    color: rgba(200, 169, 107, .80);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .66rem;
    margin-top: 2px;
}

.nav-link-luxury {
    color: rgba(255,255,255,.78) !important;
    font-weight: 500;
    padding: .7rem .9rem !important;
    border-radius: 12px;
    transition: all .2s ease;
}

.nav-link-luxury:hover,
.nav-link-luxury.active {
    color: #ffffff !important;
    background: rgba(255,255,255,.07);
}

.btn-luxury-contact {
    background: linear-gradient(180deg, #d2b076 0%, #b89258 100%);
    color: #111827;
    border: none;
    border-radius: 12px;
    padding: .7rem 1rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(184, 146, 88, .20);
}

.btn-luxury-contact:hover {
    background: linear-gradient(180deg, #ddbd84 0%, #c39c62 100%);
    color: #0b1220;
}

.dropdown-menu-luxury {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: .6rem;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, .12);
}

.dropdown-menu-luxury .dropdown-item {
    border-radius: 10px;
    padding: .65rem .8rem;
    font-weight: 500;
}

.dropdown-menu-luxury .dropdown-item:hover {
    background: rgba(13, 110, 253, .08);
}

.navbar-toggler-luxury {
    border: 1px solid rgba(255,255,255,.18);
    padding: .45rem .7rem;
    border-radius: 12px;
}

.navbar-dark .navbar-toggler-icon,
.navbar-toggler-icon {
    filter: invert(1);
}

@media (max-width: 991.98px) {
    .navbar-luxury .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 18px;
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.08);
    }

    .nav-link-luxury {
        padding-left: .5rem !important;
        padding-right: .5rem !important;
    }

    .btn-luxury-contact {
        width: 100%;
        margin-top: .5rem;
    }
}

    
    .footer-luxury {
    background:
        linear-gradient(180deg, #111827 0%, #0b1220 100%);
    color: rgba(255,255,255,.88);
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    color: #c8a96b;
    font-size: 1.1rem;
    border: 1px solid rgba(255,255,255,.10);
}

.footer-kicker {
    letter-spacing: .12em;
    color: rgba(200, 169, 107, .85);
    font-size: .72rem;
}

.footer-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: .02em;
}

.footer-text {
    color: rgba(255,255,255,.68);
    line-height: 1.7;
}

.footer-meta {
    color: rgba(255,255,255,.68);
}

.footer-meta i {
    color: #c8a96b;
}

.footer-link,
.footer-inline-link {
    color: rgba(255,255,255,.72);
    text-decoration: none;
    transition: all .2s ease;
}

.footer-link:hover,
.footer-inline-link:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.footer-cta-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
    backdrop-filter: blur(4px);
}

.footer-badge {
    display: inline-block;
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .45rem .75rem;
    border-radius: 999px;
    background: rgba(200, 169, 107, .14);
    color: #d8bb84;
    border: 1px solid rgba(200, 169, 107, .22);
}

.footer-btn-primary,
.footer-btn-secondary {
    border-radius: 12px;
    font-weight: 500;
    padding-top: .72rem;
    padding-bottom: .72rem;
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,.10);
}

.footer-copy {
    color: rgba(255,255,255,.52);
}

@media (max-width: 767.98px) {
    .footer-cta-card {
        margin-top: .5rem;
    }
}


        /* WhatsApp flotante */
        .wa-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 9999;
            width: 56px;
            height: 56px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            transition: transform .2s ease;
            text-decoration: none;
        }
        .wa-float:hover {
            transform: scale(1.1);
        }
        .wa-float i {
            color: #fff;
            font-size: 1.8rem;
        }

        /* Navbar activo */
        .navbar .nav-link.active {
            font-weight: 600;
        }

        /* Contenido mínimo */
        main {
            min-height: 60vh;
        }

        /* Blog content */
        .blog-content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .blog-content p {
            line-height: 1.8;
        }
