.branch-section {
    font-family: 'Segoe UI', 'Poppins', system-ui, sans-serif;

    color: #2B1F1A;
    background-color: #2B1F1A;
    line-height: 1.6;
    padding: 4rem 0;
}

/* === SECTION HEADER === */
.branch-header {
    text-align: center;
    margin-bottom: 4rem;
}

.branch-subtitle {
    display: inline-block;
    background: #e8d9cc;
    color: #7a5a3a;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 1rem;
    border: 1px solid #dac9b8;
}

.branch-title {
    font-size: 3rem;
    font-weight: 700;
    color: #3e2e1f;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.branch-title span {
    color: #b28b6f;
}

.branch-desc {
    font-size: 1.1rem;
    color: #7a5a3a;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* === BRANCH CARD === */
.branch-card {
    background: black;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(62, 46, 31, 0.08);
    border: 1px solid #f0ebe5;
    height: 100%;
    transition: all 0.4s ease;
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(62, 46, 31, 0.15);
    border-color: #d4b69a;
}

/* === IMAGE WRAPPER === */
.branch-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #e8d9cc;
}

.branch-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.branch-card:hover .branch-image-wrapper img {
    transform: scale(1.06);
}

/* Badge on image */
.branch-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    backdrop-filter: blur(4px);
    background: rgba(178, 139, 111, 0.92);
    z-index: 2;
}

/* === BRANCH NAME OVERLAY === */
.branch-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: #fff;
    z-index: 2;
}

.branch-name-overlay .branch-number {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.branch-name-overlay h3 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    margin: 0;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .branch-title {
        font-size: 2.5rem;
    }
    .branch-image-wrapper {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .branch-title {
        font-size: 2.2rem;
    }
    .branch-image-wrapper {
        height: 220px;
    }
    .branch-name-overlay h3 {
        font-size: 1.4rem;
    }
    .branch-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .branch-title {
        font-size: 1.8rem;
    }
    .branch-image-wrapper {
        height: 190px;
    }
    .branch-name-overlay {
        padding: 1.5rem 1.2rem 1.2rem;
    }
    .branch-name-overlay h3 {
        font-size: 1.2rem;
    }
    .branch-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.8rem;
        top: 12px;
        left: 12px;
    }
    .branch-section {
        padding: 2rem 0;
    }
}
/*.branch-card{*/
/*    display:block !important;*/
/*    background:red !important;*/
/*    min-height:300px !important;*/
/*}*/

/*.branch-image-wrapper{*/
/*    display:block !important;*/
/*    height:300px !important;*/
/*    background:blue !important;*/
/*}*/

/*.branch-image-wrapper img{*/
/*    display:block !important;*/
/*    width:100% !important;*/
/*    height:100% !important;*/
/*    object-fit:cover !important;*/
/*}*/