﻿/* ========================================
   İletişim Bölümü Stilleri
   ======================================== */

.section-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.section-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 201, 52, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 201, 52, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Başlık Ayırıcı */
.contact-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFC934 0%, #e6b42f 100%);
    border-radius: 2px;
    margin-top: 1rem;
}

/* İletişim Kartları */
.contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 201, 52, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FFC934 0%, #e6b42f 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 45px rgba(255, 201, 52, 0.2);
    border-color: rgba(255, 201, 52, 0.4);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

/* İkon Stili */
.contact-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #FFC934 0%, #e6b42f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 2.2rem;
    box-shadow: 0 10px 30px rgba(255, 201, 52, 0.3);
    transition: all 0.4s ease;
}

.contact-icon-location {
    background: linear-gradient(135deg, #FFC934 0%, #e6b42f 100%);
    box-shadow: 0 10px 30px rgba(255, 201, 52, 0.3);
}

.contact-icon-time {
    background: linear-gradient(135deg, #FFC934 0%, #e6b42f 100%);
    box-shadow: 0 10px 30px rgba(255, 201, 52, 0.3);
}

.contact-card:hover .contact-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(255, 201, 52, 0.4);
}

.contact-card:hover .contact-icon-location {
    box-shadow: 0 15px 40px rgba(255, 201, 52, 0.4);
}

.contact-card:hover .contact-icon-time {
    box-shadow: 0 15px 40px rgba(255, 201, 52, 0.4);
}

/* Başlık */
.contact-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

/* İçerik */
.contact-content {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Telefon Linkleri */
.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212529;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    margin: 0.5rem 0;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.contact-link:hover {
    color: #FFC934;
    background: rgba(255, 201, 52, 0.1);
    transform: translateX(5px);
}

.contact-link i {
    font-size: 1.1rem;
}

/* Badge */
.contact-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    color: #495057;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.badge-success {
    background: linear-gradient(135deg, #FFC934 0%, #e6b42f 100%);
    color: #1a1a1a;
}

.badge-info {
    background: linear-gradient(135deg, #FFC934 0%, #e6b42f 100%);
    color: #1a1a1a;
}

.badge-warning {
    background: linear-gradient(135deg, #FFC934 0%, #e6b42f 100%);
    color: #1a1a1a;
}

.contact-badge-link {
    text-decoration: none;
    cursor: pointer;
}

.contact-badge-link:hover,
.contact-card:hover .contact-badge {
    transform: scale(1.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* CTA Butonlar */
.contact-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-contact {
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border: 2px solid transparent;
}

.btn-contact-primary {
    background: linear-gradient(135deg, #FFC934 0%, #e6b42f 100%);
    color: #1a1a1a;
    border-color: #FFC934;
}

.btn-contact-primary:hover {
    background: linear-gradient(135deg, #e6b42f 0%, #d4a32a 100%);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 201, 52, 0.4);
    color: #1a1a1a;
}

.btn-contact-outline {
    background: transparent;
    color: #FFC934;
    border-color: #FFC934;
}

.btn-contact-outline:hover {
    background: #FFC934;
    color: #1a1a1a;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 201, 52, 0.3);
}

.btn-contact i {
    font-size: 1.15rem;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .section-contact {
        padding: 60px 0;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-icon {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }
    
    .contact-title {
        font-size: 1.25rem;
    }
    
    .contact-content {
        font-size: 0.95rem;
        min-height: auto;
    }
    
    .contact-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-contact {
        width: 100%;
        padding: 1rem 2rem;
    }
}

@media (max-width: 576px) {
    .section-contact {
        padding: 40px 0;
    }
    
    .contact-card {
        padding: 1.75rem 1.25rem;
    }
    
    .contact-icon {
        width: 65px;
        height: 65px;
        font-size: 1.75rem;
    }
    
    .contact-link {
        font-size: 0.95rem;
    }
    
    .btn-contact {
        font-size: 0.9rem;
        padding: 0.9rem 1.75rem;
    }
}
