/* =====================================================
   Develi Bıçak Dünyası - İletişim Sayfası Stilleri
   assets/css/iletisim.css
   ===================================================== */

.contact-section {
    font-family: 'Hanken Grotesk', sans-serif;
}

/* Üst Başlık Alnı */
.contact-hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4rem;
    background: linear-gradient(to top, #f3f4f6, transparent);
}

/* Kart Tasarımları */
.info-card {
    background: #ffffff;
    border: 1px solid var(--md-sys-color-outline-variant, #e2e8f0);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    border-color: var(--heritage-gold, #D4AF37);
}

.info-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--heritage-gold, #D4AF37);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon-wrapper {
    background: var(--heritage-gold, #D4AF37);
    color: #ffffff;
}

/* Sosyal Medya Linkleri */
.social-circle-link {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-circle-link:hover {
    transform: scale(1.1) rotate(8deg);
}

/* Form Elemanları */
.contact-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--md-sys-color-outline-variant, #cbd5e1);
    border-radius: 0.5rem;
    background-color: #f8fafc;
    color: #0f172a;
    font-size: 0.875rem;
    transition: all 0.25s ease;
}

.contact-input:focus {
    outline: none;
    border-color: var(--heritage-gold, #D4AF37);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #475569;
    margin-bottom: 0.375rem;
    display: block;
}

/* Google Maps Çerçevesi */
.map-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--md-sys-color-outline-variant, #e2e8f0);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* Form Başarı/Hata Banners */
.alert-banner {
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    animation: slideDown 0.3s ease;
}

.alert-banner-success {
    background-color: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-banner-error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
