/* ==========================================
   İLETİŞİM SAYFASI STİLLERİ
   ========================================== */

.contact-page {
    padding: 80px 60px;
    background: #f5f5f5;
    min-height: 100vh;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ==========================================
   İLETİŞİM BİLGİLERİ
   ========================================== */
.contact-info-section {
    margin-bottom: 80px;
    text-align: center;
}

.section-title {
    font-size: 42px;
    color: #1f232b;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #0E300E;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 22px;
    color: #0E300E;
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.contact-card strong {
    color: #333;
    display: block;
    margin-top: 8px;
}

/* ==========================================
   FORM VE HARİTA
   ========================================== */
.form-map-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.form-container,
.map-container {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-title {
    font-size: 28px;
    color: #0E300E;
    margin-bottom: 30px;
}

/* FORM STİLLERİ */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0E300E;
    box-shadow: 0 0 0 4px rgba(14, 48, 14, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-top: 2px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #0E300E;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #0a2009;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 48, 14, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* FORM ALERT */
.form-alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: none;
    animation: slideDown 0.3s ease;
}

.form-alert.show {
    display: block;
}

.form-alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-alert.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* HARİTA */
.map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.directions-btn {
    text-align: center;
}

.btn-directions {
    display: inline-block;
    padding: 14px 30px;
    background: #0E300E;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-directions:hover {
    background: #0a2009;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(14, 48, 14, 0.3);
}

/* ==========================================
   SOSYAL MEDYA
   ========================================== */
.social-section {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link.youtube {
    background: #ff0000;
}

.social-link.whatsapp {
    background: #25d366;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .form-map-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .form-container,
    .map-container {
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-title {
        font-size: 24px;
    }

    .map-wrapper {
        height: 350px;
    }

    .social-links {
        flex-direction: column;
        align-items: stretch;
    }

    .social-link {
        justify-content: center;
    }
}