/* İletişim Sayfası için Modern CSS */

/* Genel Stiller */
.contact-page {
    position: relative;
    color: #1e293b;
}

.contact-page::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.contact-header {
    padding: 80px 0 60px;
    text-align: center;
    /*background-color: #f8fafc;*/
    border-radius: 0 0 100px 100px;
    position: relative;
    overflow: hidden;
}

.contact-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}
.featured-contact {
    padding: 80px 0;
}


.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-info-details {
    flex-grow: 1;
}

.contact-info-title {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-info-text {
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Sosyal Medya Kartı */
.social-media-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    padding: 1.5rem;
    background-color: #fff;
    transition: all 0.3s ease;
}

.social-media-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.social-media-title {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.25rem;
}

.social-media-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.social-facebook {
    background-color: #1877f2;
}

.social-twitter {
    background-color: #1da1f2;
}

.social-instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-linkedin {
    background-color: #0077b5;
}

/* İletişim Formu Kartı */
.contact-form-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    background-color: #fff;
}

.contact-form-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.contact-form-header {
    padding: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    text-align: center;
}

.contact-form-title {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0;
    font-size: 1.25rem;
}

.contact-form-body {
    padding: 1.5rem;
}

.form-floating > label {
    color: #64748b;
}

.form-control {
    border-radius: 10px;
    border-color: #e2e8f0;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.contact-submit-btn {
    background-color: #3b82f6;
    border-color: #3b82f6;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-submit-btn:hover {
    background-color: #2563eb;
    border-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(59, 130, 246, 0.2);
}

/* Harita Bölümü */
.map-container {
    margin-top: 4rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
}

.map-container iframe {
    border: 0;
    display: block;
}

/* Form İşlem Mesajları */
.alert {
    border-radius: 10px;
    border: none;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

/* İletişim Form Elemanları */
.form-label {
    color: #1e293b;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-floating>.form-control,
.form-floating>.form-control-plaintext {
    padding: 1rem 0.75rem;
}

.form-floating>.form-control-plaintext~label,
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    color: #3b82f6;
    opacity: 1;
    transform: scale(0.8) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating>label {
    padding: 1rem 0.75rem;
}

textarea.form-control {
    min-height: 120px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-info-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .contact-page {
        padding: 60px 0;
    }
    
    .contact-info-item {
        padding: 1rem;
    }
    
    .contact-info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Animasyonlar */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animated-icon {
    animation: bounce 2s ease infinite;
}
.contact-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

/* İletişim Bilgileri Kartı */
.contact-info-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    background-color: #fff;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.contact-info-item {
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #f1f5f9;
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    /*background-color: #3b82f6;*/
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}
