/* ============================================
   İLETİŞİM SAYFASI ÖZEL STİLLERİ
   ============================================ */

/* İletişim Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

/* İletişim Kartları */
.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: static; /* Sabit pozisyon - sticky değil */
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #1ee9dd;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1ee9dd, #9c27b0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon .material-icons {
    color: white;
    font-size: 28px;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    text-align: left;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
    text-align: left;
}

/* İletişim Formu */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1ee9dd;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin: 30px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #1ee9dd;
    border-color: #1ee9dd;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label a {
    color: #1ee9dd;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, #E55A2B, #B8860B);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
    box-shadow: 0 5px 15px rgba(229, 90, 43, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #FF6B35, #D2691E);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(229, 90, 43, 0.3);
}

.submit-btn .material-icons {
    transition: transform 0.3s ease;
}

.submit-btn:hover .material-icons {
    transform: translateX(3px);
}

.submit-btn .material-icons {
    font-size: 20px;
}

/* Mesaj Bildirimleri */
.success-message,
.error-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: 500;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.success-message .material-icons,
.error-message .material-icons {
    font-size: 20px;
}

/* Harita Section */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, #1ee9dd, #9c27b0);
    padding: 80px 0;
    color: white;
}

.contact-cta-section .cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.contact-cta-section .cta-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-cta-section .cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-cta-section .cta-buttons {
    display: flex;
    gap: 20px;
}

.btn-contact,
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #1ee9dd;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-contact:hover,
.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-contact .material-icons,
.btn-whatsapp .material-icons {
    font-size: 20px;
}

/* Güçlü Sol Hizalama Kuralları */
.contact-section .contact-details h3,
.contact-section .contact-details p,
.contact-card .contact-details h3,
.contact-card .contact-details p,
.contact-details h3,
.contact-details p,
.contact-card h3,
.contact-card p {
    text-align: left !important;
    direction: ltr !important;
}

/* Tüm iletişim kartları için özel kurallar */
.contact-cards .contact-card .contact-details * {
    text-align: left !important;
}

.contact-cards .contact-card * {
    text-align: left !important;
}

/* Section içindeki tüm metinler için */
.contact-section * {
    text-align: left !important;
}

/* Sadece başlıklar hariç */
.contact-section h1,
.contact-section h2 {
    text-align: center !important;
}

/* Responsive İletişim */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-cta-section .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .contact-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn-contact,
    .btn-whatsapp {
        width: 200px;
        justify-content: center;
    }
    
    .contact-card {
        padding: 20px;
        gap: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon .material-icons {
        font-size: 24px;
    }
    
    /* Mobilde de metinler sola dayalı */
    .contact-details h3 {
        text-align: left !important;
    }
    
    .contact-details p {
        text-align: left !important;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .contact-card {
        padding: 15px;
        gap: 12px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon .material-icons {
        font-size: 20px;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 14px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .contact-cta-section {
        padding: 60px 0;
    }
    
    .contact-cta-section .cta-text h2 {
        font-size: 1.5rem;
    }
    
    .contact-cta-section .cta-text p {
        font-size: 1rem;
    }
}

/* Animasyonlar */
.contact-card {
    animation: fadeInUp 0.6s ease;
}

.contact-card:nth-child(1) { animation-delay: 0.1s; }
.contact-card:nth-child(2) { animation-delay: 0.2s; }
.contact-card:nth-child(3) { animation-delay: 0.3s; }
.contact-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Efektleri */
.contact-icon {
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #1ee9dd;
}

.submit-btn:active {
    transform: translateY(0);
}
