/* =========================================================
   FLOOR PLANS SECTION – ELDECO SOLANO (BRAND ALIGNED)
   ========================================================= */

/* ---------- PLAN TABS (DARK – LIKE AMENITIES) ---------- */

.plan-tab {
    padding: 12px 32px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(198, 168, 124, 0.45);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #C6A87C;
    transition: all 0.35s ease;
    cursor: pointer;
    outline: none;
}

.plan-tab:hover {
    background: rgba(198, 168, 124, 0.12);
    color: #C6A87C;
}

.plan-tab.active {
    background: #fefdfd;                 /* SAME AS AMENITIES */
    color: #022d02;
    border-color: #9d9a7c;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}


/* ---------- PLAN CONTENT VISIBILITY ---------- */

.plan-content {
    display: none;
}

.plan-content.active {
    display: block;
}


/* ---------- PLAN CARD ---------- */

.plan-card {
    background: #ffffff;
    border: 1px solid #ededed;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.08);
}


/* ---------- PLAN IMAGE ---------- */

.plan-card img {
    width: 100%;
    height: 230px;
    object-fit: contain;
    margin-bottom: 18px;
    transition: transform 0.4s ease;
}

.plan-card:hover img {
    transform: scale(1.03);
}


/* ---------- PLAN TAG (NO PINK – BRAND GOLD) ---------- */

.plan-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(251, 251, 250, 0.732);
    color: #C6A87C;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}


/* ---------- PLAN TEXT ---------- */

.plan-card h4 {
    font-family: "Prata", serif;
    font-size: 16px;
    margin-bottom: 6px;
    color: #0B1C18;
}

.plan-card p {
    font-size: 12px;
    color: #6b6b6b;
    line-height: 1.6;
}


/* ---------- MASTER PLAN IMAGE ---------- */

#master-plan img {
    border-radius: 20px;
    border: 1px solid #ededed;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}


/* ---------- OPTIONAL TAB CONTAINER (RECOMMENDED) ---------- */

.plan-tabs-wrapper {
    background: #f7f9f8;
    padding: 14px;
    border-radius: 999px;
    display: inline-flex;
    gap: 10px;
}


/* ---------- RESPONSIVE TUNING ---------- */

@media (max-width: 767px) {

    .plan-tab {
        padding: 10px 22px;
        font-size: 10px;
        letter-spacing: 1px;
    }

    .plan-card img {
        height: 200px;
    }

    .plan-card {
        padding: 18px;
    }
}
