/* İletişim sayfasına özel stil ve düzenlemeler */

/* Hakkımızda.css'deki menü, footer vb. genel stiller geçerlidir. Sadece bu dosyaya eklenen yeni bölümlerin stilleri burada tanımlanır. */

.contact-page {
    padding-top: 0;
    padding-bottom: 50px;
}

.contact-intro {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://picsum.photos/1920/1080?random=2') center/cover no-repeat;
    height: 400px;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info-block,
.contact-form-block {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-block h2,
.contact-form-block h2 {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 30px;
    color: #34495e;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-list .icon {
    font-size: 1.5em;
    color: #ff4136;
    margin-right: 15px;
    margin-top: 4px; /* Metinle hizalamak için */
}

.info-list p {
    font-size: 1.1em;
    line-height: 1.5;
    margin: 0;
}

.info-list p strong {
    font-weight: 600;
    color: #2c3e50;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    font-size: 1.5em;
    color: #34495e;
    margin-right: 20px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #ff4136;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #555;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff4136;
    box-shadow: 0 0 5px rgba(255, 65, 54, 0.2);
}

.contact-form textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #ff4136;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #e62e24;
}

.map-section {
    padding-top: 80px;
    padding-bottom: 0;
    text-align: center;
}

.map-container {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}