/* Contact Page Specific Styles */

.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.info-header p {
    font-size: 1.125rem;
    color: var(--slate-600);
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
}

.method-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
    transform: scale(1.1);
}

.method-icon.bg-blue {
    background: var(--blue-100);
    color: var(--blue-600);
}

.method-icon.bg-green {
    background: var(--green-100);
    color: var(--green-600);
}

.method-icon.bg-purple {
    background: var(--purple-100);
    color: var(--purple-600);
}

.method-content h3 {
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 0.25rem;
}

.method-content p {
    color: var(--slate-600);
    margin-bottom: 0.5rem;
}

.method-content a {
    color: var(--blue-600);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.method-content a:hover {
    color: var(--blue-700);
}

.method-content address {
    font-style: normal;
    color: var(--purple-600);
    font-weight: 600;
}

/* Support Hours */
.support-hours {
    background: var(--slate-900);
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.hours-icon {
    width: 3rem;
    height: 3rem;
    background: var(--slate-700);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hours-content h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hours-list {
    margin-bottom: 0.5rem;
}

.hours-list p {
    color: var(--text-subtle-dark);
    margin-bottom: 0.25rem;
}

.hours-content small {
    color: var(--text-subtle-dark);
    font-size: 0.875rem;
}

/* Contact Form */
.contact-form-container {
    position: sticky;
    top: 2rem;
}

.form-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 2rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--slate-600);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--slate-900);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--slate-200);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

.form-note {
    text-align: center;
    color: var(--slate-500);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Support Options */
.support-options {
    padding: 5rem 0;
    background: white;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.support-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    transform: translateY(0);
}

.support-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-8px);
}

.support-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.support-card:hover .support-icon {
    transform: scale(1.1);
}

.support-icon.bg-blue {
    background: var(--blue-100);
    color: var(--blue-600);
}

.support-icon.bg-green {
    background: var(--green-100);
    color: var(--green-600);
}

.support-icon.bg-purple {
    background: var(--purple-100);
    color: var(--purple-600);
}

.support-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.support-card p {
    color: var(--slate-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    max-width: 400px;
    margin: 1rem;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    margin-bottom: 2rem;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    background: var(--green-100);
    color: var(--green-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--slate-600);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-method {
    opacity: 0;
    animation: slideInUp 0.8s ease-out forwards;
}

.contact-method:nth-child(1) { animation-delay: 0.1s; }
.contact-method:nth-child(2) { animation-delay: 0.2s; }
.contact-method:nth-child(3) { animation-delay: 0.3s; }

.support-card {
    opacity: 0;
    animation: slideInUp 0.8s ease-out forwards;
}

.support-card:nth-child(1) { animation-delay: 0.1s; }
.support-card:nth-child(2) { animation-delay: 0.2s; }
.support-card:nth-child(3) { animation-delay: 0.3s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-container {
        position: static;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-section {
        padding: 3rem 0;
    }
    
    .support-options {
        padding: 3rem 0;
    }
}
/* ---- İLETİŞİM HERO BÖLÜMÜ STİLLERİ ---- */

.talhailetisim-contact-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 50vh; /* Ekran yüksekliğinin en az yarısı kadar boşluk sağlar */
    padding: 80px 20px;
    background-color: #f8f9fa; /* Hafif bir arka plan rengi */
}

.talhailetisim-contact-content {
    max-width: 700px;
}

.talhailetisim-contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
}

.talhailetisim-contact-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    line-height: 1.6;
}

/* ---- Mobil Uyumlu Tasarım ---- */
@media (max-width: 768px) {
    .talhailetisim-contact-title {
        font-size: 2.5rem;
    }

    .talhailetisim-contact-subtitle {
        font-size: 1rem;
    }
}