﻿/* ================================
                   CONTACT PAGE
                   ================================ */

.contact-page-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

/* Page Header */
.page-header {
    margin-bottom: 50px;
}

    .page-header h1 {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 15px;
    }

        .page-header h1 i {
            color: #4CAF50;
        }

    .page-header .lead {
        font-size: 1.2rem;
        color: #7f8c8d;
    }

/* Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* ===== İLETİŞİM BİLGİLERİ ===== */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

    .contact-info-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    }

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-content p {
    color: #7f8c8d;
    margin: 0;
    line-height: 1.6;
}

.info-content a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.2s;
}

    .info-content a:hover {
        color: #45a049;
    }

/* Sosyal Medya */
.social-media-section {
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

    .social-media-section h3 {
        font-size: 1.1rem;
        color: #2c3e50;
        margin-bottom: 15px;
        font-weight: 600;
    }

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #4CAF50;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
}

    .social-link:hover {
        background: #4CAF50;
        color: white;
        transform: translateY(-3px);
    }

/* ===== İLETİŞİM FORMU ===== */
.contact-form-section {
    position: relative;
}

.form-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

    .form-card h2 {
        font-size: 1.8rem;
        color: #2c3e50;
        margin-bottom: 10px;
    }

        .form-card h2 i {
            color: #4CAF50;
        }

.form-description {
    color: #7f8c8d;
    margin-bottom: 30px;
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

    .form-label i {
        color: #4CAF50;
        margin-right: 5px;
    }

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

    .form-control:focus {
        outline: none;
        border-color: #4CAF50;
        box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
    }

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Captcha */
.captcha-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.captcha-image {
    height: 70px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    flex: 1;
    max-width: 200px;
}

.btn-refresh-captcha {
    width: 50px;
    height: 50px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-refresh-captcha:hover {
        background: #45a049;
        transform: rotate(180deg);
    }

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

    .btn-submit:hover {
        background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    }

    .btn-submit i {
        margin-right: 8px;
    }

/* Form Note */
.form-note {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-left: 4px solid #4CAF50;
    border-radius: 6px;
    color: #7f8c8d;
    font-size: 0.9rem;
}

    .form-note i {
        color: #4CAF50;
        margin-right: 5px;
    }

/* ===== HARITA ===== */
.map-section {
    margin-top: 60px;
}

    .map-section h2 {
        color: #2c3e50;
    }

        .map-section h2 i {
            color: #4CAF50;
        }

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* Validation Errors */
.text-danger {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-page-section {
        padding: 40px 0;
    }

    .form-card {
        padding: 25px;
    }

        .form-card h2 {
            font-size: 1.5rem;
        }

    .captcha-container {
        flex-direction: column;
        align-items: stretch;
    }

    .captcha-image {
        max-width: 100%;
        width: 100%;
    }

    .btn-refresh-captcha {
        width: 100%;
    }

    .social-links {
        flex-wrap: wrap;
    }
}
