/* İletişim Sayfası Stilleri */
.contact-page {
    padding-top: 100px;
    padding-bottom: 60px;
}

/* Hero Bölümü */
.page-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.page-hero h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-hero .lead {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
}

/* İletişim Grid */
.contact-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

/* İletişim Bilgileri */
.info-card {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 100%;
}

.info-card h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item .icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--secondary-color);
}

.info-item .content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item .content p {
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

/* İletişim Formu */
.contact-form {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Harita */
.map-section {
    margin-bottom: 4rem;
}

.map-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .contact-grid {
        padding: 0 1rem;
    }

    .info-card {
        max-width: 100%;
    }

    .map-container iframe {
        height: 300px;
    }
} 