/* Şubelerimiz Sayfası - Özel CSS */

.branches-hero {
    position: relative;
    padding: 100px 0 80px 0;
    background: linear-gradient(135deg, #f8f5e6 0%, #ffffff 100%);
    overflow: hidden;
    text-align: center;
}

.location-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.location-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
}

.location-icon.icon-1 {
    color: #3b82f6;
    top: 15%;
    left: 20%;
    font-size: 2.5rem;
}

.location-icon.icon-2 {
    color: #3b82f6;
    top: 25%;
    left: 35%;
    font-size: 3.5rem;
}

.location-icon.icon-3 {
    color: #3b82f6;
    top: 50%;
    left: 15%;
    font-size: 2.8rem;
}

.location-icon.icon-4 {
    color: #a855f7;
    top: 35%;
    left: 45%;
    font-size: 2.2rem;
}

.location-icon.icon-5 {
    color: #3b82f6;
    top: 20%;
    right: 20%;
    font-size: 3rem;
}

.location-icon.icon-6 {
    color: #a855f7;
    top: 45%;
    right: 15%;
    font-size: 2.5rem;
}

.branches-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #b8860b;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.branches-subtitle { 
    color: #6c757d; 
    font-size: 1rem;
    margin-bottom: 0; 
    position: relative; 
    z-index: 1;
    line-height: 1.6;
}

.branches-content { 
    padding: 80px 0 120px 0; /* Üst ve alt margin artırıldı */
    background-color: #ffffff;
}

.branches-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
    align-items: start;
}

.branch-info-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
}

.branch-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 25px;
}

.branch-address {
    margin-bottom: 20px;
}

.branch-address strong {
    display: block;
    color: #495057;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.branch-address p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.branch-phone {
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f0f5;
    padding: 12px 18px;
    border-radius: 8px;
    color: #495057;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-link:hover {
    background: #e0e0e8;
    color: #2c3e50;
}

.branch-map {
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
}

.branch-map iframe {
    width: 100%;
    height: 100%;
}

.branches-cta { padding: 40px 0 100px 0; text-align: center; }
.branches-cta h2 { color: #2c3e50; font-weight: 700; margin-bottom: 6px; }
.branches-cta p { color: #6c757d; margin-bottom: 16px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; }
.btn-primary-gold { background: linear-gradient(135deg, #d4af37 0%, #f4e4a6 100%); color: #8b4513; padding: 12px 22px; border-radius: 8px; font-weight: 700; }
.btn-primary-gold:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn-outline-gold { border: 2px solid #d4af37; color: #b8860b; padding: 10px 22px; border-radius: 8px; font-weight: 700; }
.btn-outline-gold:hover { background: linear-gradient(135deg, #d4af37 0%, #f4e4a6 100%); color: #8b4513; }

@media (max-width: 991px) {
    .branches-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .branch-map {
        height: 300px;
    }
}

@media (max-width: 575px){
    .branches-title { font-size: 2.2rem; }
    
    .branch-info-card {
        padding: 20px;
    }
    
    .branch-name {
        font-size: 1.3rem;
    }
    
    .branch-map {
        height: 250px;
    }
}


