﻿/* =========================================
   Branches Page
   ========================================= */

.branches-section {
    background: #f8f9fa;
}

.branches-subtitle {
    display: block;
    color: #777;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.branches-title {
    color: #111;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}

.branches-title-line {
    width: 60px;
    height: 4px;
    background: #fff000;
    margin: 0 auto;
    border-radius: 10px;
}


/* Branch Card */

.branch-card {
    height: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

    .branch-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
    }


/* Card Header */

.branch-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px 28px;
    background: #111;
    color: #fff;
    position: relative;
}

    .branch-card-header::after {
        content: "";
        position: absolute;
        bottom: 0;
        inset-inline-start: 0;
        width: 100%;
        height: 4px;
        background: #fff000;
    }

.branch-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    background: #fff000;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.branch-label {
    display: block;
    color: #fff000;
    font-size: 13px;
    margin-bottom: 3px;
}

.branch-card-header h3 {
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    color: #fff;
}


/* Card Body */

.branch-card-body {
    padding: 28px;
}

.branch-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
}

.branch-info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: rgba(255, 240, 0, 0.18);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.branch-info-item strong {
    display: block;
    color: #222;
    font-size: 14px;
    margin-bottom: 5px;
}

.branch-info-item p {
    margin: 0;
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}


/* Actions */

.branch-card-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.branch-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .branch-action.whatsapp {
        background: #111;
        color: #fff;
    }

    .branch-action.location {
        background: #fff000;
        color: #111;
    }

    .branch-action:hover {
        transform: translateY(-3px);
        text-decoration: none;
    }

    .branch-action.whatsapp:hover {
        background: #222;
        color: #fff;
    }

    .branch-action.location:hover {
        background: #ffe600;
        color: #111;
    }


/* Mobile */

@media (max-width: 767px) {

    .branches-title {
        font-size: 28px;
    }

    .branch-card-header {
        padding: 22px;
    }

    .branch-card-body {
        padding: 22px;
    }

    .branch-card-actions {
        flex-direction: column;
    }
}
