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

.branch-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 20px;
    transition: 0.3s;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.branch-card h3 {
    margin-bottom: 10px;
    color: #f7941d;
}

.branch-card p {
    margin: 5px 0;
    color: #333;
}

.branch-card i {
    margin-right: 6px;
    color: #f7941d;
}

/* Yol Tarifi Al butonu */
.btn-directions {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #f7941d;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-directions:hover {
    background-color: #e67300; /* Hoverda rengi biraz koyulaştırdım */
    color: #fff;
}
