:root {
    --green-deep: #1a3c2e;
    --green-mid: #2e6b4f;
    --teal: #4a9b8c;
    --teal-dark: #357a6d;
    --teal-light: #6bbdae;
    --green-accent: #3d9970;
    --gold: #c9a84c;
    --gold-light: #e8d59a;
    --cream: #faf7f2;
    --warm-white: #fffdf9;
    --text-dark: #1c1c1c;
    --text-mid: #4a4a4a;
    --text-light: #7a7a7a;
    --border: #e3ddd5;
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, .07);
    --shadow-md: 0 6px 28px rgba(0, 0, 0, .11);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, .15);
    --radius: 14px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    background-color: var(--ivory);
    color: var(--text-body);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.condos-hero-section {
    position: relative;
    min-height: 500px;
    background:
        url('https://www.puravidacasas.com/uploads/2/8/7/1/28712979/background-images/234457662.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgb(55 106 95 / 45%) 0%, rgb(54 62 61 / 46%) 50%, rgb(59 75 73 / 61%) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 1rem;
    animation: fadeUp 0.9s ease both;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.80);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 2.50rem;
    color: rgba(255, 255, 255, 0.80);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 1.5rem;
    z-index: 2;
    animation: bounce 2s infinite;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
    background: var(--warm-white);
    border-bottom: 1px solid var(--border);
    padding: 0.6rem 0;
}

.breadcrumb {
    font-size: 0.83rem;
    color: var(--text-light);
}

.breadcrumb-item a {
    color: var(--green-mid);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--green-accent);
}

.breadcrumb-item.active {
    color: var(--text-light);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--text-light);
}


.section-header-new {
    text-align: center;
}


/* ── ESTATE CARDS (larger) ── */
.estate-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.estate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.estate-card-img {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.estate-card-img .carousel,
.estate-card-img .carousel-inner,
.estate-card-img .carousel-item {
    height: 100%;
}

.estate-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.estate-card:hover .estate-card-img img {
    transform: scale(1.05);
}

.estate-badge-row {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    z-index: 5;
}

.estate-badge {
    background: var(--teal);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.estate-badge.premium {
    background: #e07b3a;
}

.estate-badge.best {
    background: #2e7d5c;
}

.estate-card-body {
    padding: 30px;
    flex-grow: 1;
}

.estate-card-body h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.estate-includes {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
}

.estate-specs-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #444;
    font-weight: 600;
}

.estate-specs-row i {
    color: #333;
    margin-right: 4px;
}

.estate-card-body p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.estate-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.estate-features-list li {
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.estate-features-list li i {
    color: var(--teal);
    font-size: 1rem;
}

/* Full-width teal button at card bottom */
.btn-view-details {
    display: block;
    width: 100%;
    background: linear-gradient(90deg, #0fa892 0%, #12b8a0 50%, #0fa892 100%);
    background-size: 200% auto;
    color: #fff;
    text-align: center;
    padding: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    margin-top: auto;
    border: none;
    font-size: 0.95rem;
}

.btn-view-details:hover {
    background-position: right center;
    color: #fff;
    box-shadow: 0 4px 15px rgba(15, 168, 146, 0.3);
}

.btn-view-details i {
    margin-left: 8px;
    transition: transform 0.2s;
}

.btn-view-details:hover i {
    transform: translateX(5px);
}

.estate-features-list li i {
    color: var(--teal);
    font-size: 0.78rem;
}