/* Branches Page Styles */

/* Hero Section */
.branches-hero {
    position: relative;
    height: 300px;
    background: url('../Images/Branches/HeroBg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 75, 166, 0.7) 0%, rgba(139, 95, 191, 0.6) 100%);
}

.branches-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 20px;
}

.branches-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.hero-subtitle {
    font-size: 20px;
    color: #c8ff00;
    font-weight: 500;
}

/* Branches Section */
.branches-section {
    background: linear-gradient(180deg, #e8d4f0 0%, #d4b5f0 100%);
    padding: 80px 0;
    min-height: calc(100vh - 400px);
}

.branches-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Branch Cards */
.branch-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    min-height: 350px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Individual Branch Backgrounds */
.main-office {
    background-image: url('../Images/Branches/ManilaBg.jpg');
}

.quezon-branch {
    background-image: url('../Images/Branches/QuezonBg.jpg');
}

.cebu-branch {
    background-image: url('../Images/Branches/CebuBg.jpg');
}

/* Branch Overlay */
.branch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(80, 60, 100, 0.85);
    border-radius: 20px;
}

/* Branch Content */
.branch-content {
    position: relative;
    z-index: 2;
    color: white;
}

.branch-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

/* Branch Info */
.branch-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #e8d4f0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-section p {
    font-size: 15px;
    line-height: 1.6;
    color: white;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 15px;
    color: white;
}

.contact-icon {
    font-size: 18px;
}

.contact-item span {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .branches-hero {
        height: 250px;
    }
    
    .branches-hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .branch-card {
        padding: 30px 25px;
        min-height: 300px;
    }
    
    .branch-card h2 {
        font-size: 26px;
    }
    
    .branches-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .branches-hero h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .branch-card {
        padding: 25px 20px;
    }
    
    .branch-card h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .info-section h3 {
        font-size: 14px;
    }
    
    .info-section p,
    .contact-item {
        font-size: 14px;
    }
}
