/* Branches Page Specific Styles */
.branches-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/images/branches.png') no-repeat center center/cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.branches-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.branches-hero p {
    font-size: 1.2rem;
}

.branches-content {
    padding: 60px 20px;
}

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

.branch-section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.branch-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.branch-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.branch-card-icon {
    font-size: 2rem;
    color: #ff6600;
    margin-right: 15px;
    width: 50px;
    height: 50px;
    background: #fff0e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.branch-card h3 {
    font-size: 1.5rem;
    margin: 0;
    color: #333;
}

.branch-card p {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.branch-card p i {
    color: #ff6600;
    margin-right: 10px;
    width: 20px;
}

.branch-card a {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
    margin-top: auto;
    align-self: flex-start;
}

.branch-card a:hover {
    text-decoration: underline;
}

.map-section {
    text-align: center;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.map-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
