/* ========== CONTACT SAYFASI - ÖZEL STILLER ========== */
/* Header, footer ve genel stiller style.css'den gelir */

/* HERO BANNER - FARKLI TASARIM */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, #0a0f2a 0%, #1e3a8a 50%, #0f172a 100%);
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(59,130,246,0.15), transparent 70%);
    pointer-events: none;
}

.contact-hero-content {
    position: relative;
    max-width: 800px;
    padding: 70px 24px;
    z-index: 2;
}

.contact-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    color: #93c5fd;
    margin-bottom: 20px;
    animation: fadeInDown 0.6s ease;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.contact-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.contact-hero-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    padding: 10px 24px;
    border-radius: 50px;
}

.hero-contact-item span {
    font-size: 1.2rem;
}

.hero-contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.hero-contact-item a:hover {
    color: #93c5fd;
}

.contact-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.contact-hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.contact-hero-wave svg path {
    fill: #ffffff;
}

body.dark-mode .contact-hero-wave svg path {
    fill: #0a0f2a;
}

/* İLETİŞİM ANA BÖLÜMÜ */
.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* SOL - İLETİŞİM BİLGİLERİ */
.contact-info h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 16px;
}

body.dark-mode .contact-info h2 {
    color: #60a5fa;
}

.contact-info > p {
    color: #64748b;
    margin-bottom: 40px;
}

body.dark-mode .contact-info > p {
    color: #cbd5e1;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.info-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

body.dark-mode .info-card {
    background: #11173b;
}

.info-card:hover {
    transform: translateX(5px);
}

.info-icon {
    font-size: 2rem;
    min-width: 50px;
}

.info-details h3 {
    font-size: 1rem;
    color: #1e3a8a;
    margin-bottom: 6px;
}

body.dark-mode .info-details h3 {
    color: #60a5fa;
}

.info-details a {
    display: block;
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 4px;
}

body.dark-mode .info-details a {
    color: #93c5fd;
}

.info-details span {
    font-size: 0.75rem;
    color: #64748b;
}

body.dark-mode .info-details span {
    color: #9ca3af;
}

.office-hours {
    background: #f8fafc;
    padding: 25px;
    border-radius: 20px;
}

body.dark-mode .office-hours {
    background: #0f142e;
}

.office-hours h3 {
    font-size: 1.1rem;
    color: #1e3a8a;
    margin-bottom: 15px;
}

body.dark-mode .office-hours h3 {
    color: #60a5fa;
}

.office-hours ul {
    list-style: none;
}

.office-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
}

body.dark-mode .office-hours li {
    border-bottom-color: #1e2a5e;
    color: #cbd5e1;
}

.office-hours li span {
    font-weight: 600;
    color: #1e3a8a;
}

body.dark-mode .office-hours li span {
    color: #93c5fd;
}

/* SAĞ - İLETİŞİM FORMU */
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

body.dark-mode .contact-form-wrapper {
    background: #11173b;
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 10px;
}

body.dark-mode .contact-form-wrapper h2 {
    color: #60a5fa;
}

.contact-form-wrapper > p {
    color: #64748b;
    margin-bottom: 30px;
}

body.dark-mode .contact-form-wrapper > p {
    color: #cbd5e1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
}

body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
    background: #0a0f2a;
    border-color: #1e2a5e;
    color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30,58,138,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.8rem;
    color: #64748b;
}

body.dark-mode .form-checkbox label {
    color: #cbd5e1;
}

.form-checkbox a {
    color: #1e3a8a;
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.form-note {
    font-size: 0.7rem;
    color: #9ca3af;
    text-align: center;
    margin-top: 10px;
}

/* HARİTA BÖLÜMÜ */
.contact-map {
    padding: 0 0 60px;
}

.map-placeholder {
    position: relative;
    height: 350px;
    background: linear-gradient(135deg, #1e3a8a, #0f172a);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    color: white;
    z-index: 2;
}

.map-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.map-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.map-overlay p {
    margin-bottom: 16px;
    opacity: 0.8;
}

.map-link {
    display: inline-block;
    color: white;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
    transition: background 0.3s;
}

.map-link:hover {
    background: rgba(255,255,255,0.3);
}

/* SSS KISA */
.contact-faq {
    padding: 60px 0;
    background-color: #f8fafc;
}

body.dark-mode .contact-faq {
    background-color: #0f142e;
}

.contact-faq h2 {
    text-align: center;
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 50px;
}

body.dark-mode .contact-faq h2 {
    color: #60a5fa;
}

.faq-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-contact-item {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.3s;
}

body.dark-mode .faq-contact-item {
    background: #11173b;
}

.faq-contact-item:hover {
    transform: translateY(-5px);
}

.faq-contact-item h3 {
    color: #1e3a8a;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

body.dark-mode .faq-contact-item h3 {
    color: #60a5fa;
}

.faq-contact-item p {
    color: #64748b;
    font-size: 0.9rem;
}

body.dark-mode .faq-contact-item p {
    color: #cbd5e1;
}

/* ANİMASYONLAR */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* MOBİL UYUM */
@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-info {
        gap: 20px;
    }
    
    .hero-contact-item {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 400px;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .contact-hero-info {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .contact-info h2 {
        font-size: 1.6rem;
    }
    
    .faq-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero-wave svg {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 1.6rem;
    }
    
    .contact-hero-badge {
        font-size: 0.7rem;
    }
    
    .info-card {
        padding: 15px;
    }
    
    .info-icon {
        font-size: 1.5rem;
    }
    
    .submit-btn {
        width: 100%;
    }
}
