/* İletişim Sayfası CSS */

/* Hero bölümü */
.page-hero-container {
	background: #121857;
	background: radial-gradient(circle, rgba(18, 24, 87, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(18, 24, 87, 1) 100%);
    padding: 4rem 0;
    margin-bottom: 0;
}

.page-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* İletişim Bilgileri Bölümü */
.contact-info-section {
    background-color: white;
    padding: 4rem 0;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.03);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.info-card {
    background-color: #f8f9ff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background-color: #f0f5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.info-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0.5rem;
}

/* İletişim Formu ve Harita */
.contact-main-section {
    padding: 5rem 0;
    background-color: #f8f9ff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-container {
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-container h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1rem;
}

.contact-form-container p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #5271ff;
    box-shadow: 0 0 0 3px rgba(82, 113, 255, 0.1);
    outline: none;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form .form-check {
    display: flex;
    align-items: flex-start;
}

.contact-form .form-check input {
    width: auto;
    margin-right: 10px;
    margin-top: 4px;
}

.contact-form .form-check label {
    margin-bottom: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #555;
}

.contact-form .form-check a {
    color: #5271ff;
    text-decoration: underline;
}

.contact-form .agreement-row {
    grid-template-columns: 1fr;
}

.submit-btn {
    background-color: #5271ff;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #4562e6;
    transform: translateY(-3px);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    min-height: 400px;
}

/* Sık Sorulan Sorular */
.faq-section {
    padding: 5rem 0;
    background-color: white;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background-color: #f8f9ff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f0f5ff;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #5271ff;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* CTA Bölümü */
.contact-cta {
    padding: 5rem 0;
    background-color: #0c1339;
    position: relative;
    overflow: hidden;
}

.contact-cta:before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(82, 113, 255, 0.3) 0%, rgba(12, 19, 57, 0) 70%);
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    border-radius: 50%;
}

.contact-cta:after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(82, 113, 255, 0.2) 0%, rgba(12, 19, 57, 0) 70%);
    bottom: -100px;
    right: 10%;
    border-radius: 50%;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.call-btn, .mail-btn {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.call-btn {
    background-color: #5271ff;
    color: white;
}

.mail-btn {
    background-color: #f8f9ff;
    color: #333;
}

.call-btn:hover, .mail-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-icon {
    margin-right: 0.8rem;
    display: flex;
    align-items: center;
}

.btn-icon img {
    width: 20px;
    height: 20px;
}

/* Responsive Düzenlemeler */
@media (max-width: 1024px) {
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        min-height: 300px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.8rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .call-btn, .mail-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .contact-form-container h2 {
        font-size: 1.8rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}) 70%);
    bottom: -100px;
    right: 10%;
    border-radius: 50%;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.call-btn, .mail-btn {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.call-btn {
    background-color: #5271ff;
    color: white;
}

.mail-btn {
    background-color: #f8f9ff;
    color: #333;
}

.call-btn:hover, .mail-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-icon {
    margin-right: 0.8rem;
    display: flex;
    align-items: center;
}

.btn-icon img {
    width: 20px;
    height: 20px;
}

/* Responsive Düzenlemeler */
@media (max-width: 1024px) {
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        min-height: 300px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.8rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;