/* ================= BRANCH PAGE MODERN UI ================= */

.branch-page {
    padding: clamp(60px, 10vh, 100px) 5%;
    background: radial-gradient(circle at top right, #f8fafc, #e2e8f0);
    min-height: 80vh;
}

.branch-container {
    max-width: 1200px;
    margin: auto;
}

.branch-header {
    text-align: center;
    margin-bottom: 60px;
}

.branch-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #003366;
    font-weight: 800;
    margin-top: 15px;
}

/* SINGLE BRANCH COMPOSITION */
.single-branch-wrapper {
    display: grid;
    grid-template-columns: 450px 1fr;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 51, 102, 0.1);
}

/* INFO SECTION */
.branch-info-card {
    padding: 50px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.branch-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #003366;
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.branch-title h3 {
    font-size: 1.8rem;
    color: #003366;
    font-weight: 800;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
}

.contact-detail-item i {
    color: #00d4ff;
    font-size: 1.2rem;
    margin-top: 4px;
}

.contact-detail-item strong {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-detail-item p {
    color: #1e293b;
    font-weight: 600;
    line-height: 1.6;
}

/* MAP SECTION */
.branch-map-wrapper {
    min-height: 450px;
    background: #e2e8f0;
    position: relative;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #003366;
    color: white;
    padding: 16px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.map-btn:hover {
    background: #00d4ff;
    color: #003366;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
    .single-branch-wrapper {
        grid-template-columns: 1fr;
    }
    
    .branch-info-card {
        padding: 40px;
    }

    .branch-map-wrapper {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .branch-info-card {
        padding: 30px;
    }
    
    .branch-title h3 {
        font-size: 1.5rem;
    }
}