/* Branches Section */
.branches-section {
    padding: 80px 0;
    background-color: var(--color-background-light);
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.branch-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.branch-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.branch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.branch-card:hover .branch-image img {
    transform: scale(1.1);
}

.branch-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(244, 81, 30, 0.3);
}

.branch-content {
    padding: 20px;
}

.branch-content h3 {
    margin-bottom: 15px;
    color: var(--color-primary);
}

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

.branch-address i {
    color: var(--color-primary);
    margin-top: 3px;
}

.branch-address p {
    font-size: 0.9rem;
    line-height: 1.4;
}

.branch-contact {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.branch-contact > div {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.branch-contact i {
    color: var(--color-secondary);
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.coming-soon {
    color: #ff9800;
    font-weight: 600;
    background-color: rgba(255, 152, 0, 0.1);
    padding: 3px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
}

.coming-soon i {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}

.branch-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.branch-features span {
    background-color: var(--color-background-muted);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.branch-features i {
    color: var(--color-accent);
}

.branch-buttons {
    display: flex;
    gap: 10px;
}

.btn-outline-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 15px;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-outline-small:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .branches-grid {
        grid-template-columns: 1fr;
    }
    
    .branch-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (min-width: 992px) {
    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
} 