
.page-header .hamburger span {
    background-color: var(--primary-color);
}
.menu-open .hamburger span {
    background-color: white;
}
.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}
.contact-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media (min-width: 992px) {
    .contact-container {
        flex-direction: row;
        align-items: flex-start;
    }
    .contact-info-section, .contact-form-section {
        flex: 1;
    }
    .contact-form-section {
        margin-left: 40px;
    }
}
.contact-info-section, .contact-form-section {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 32px 24px;
}
.contact-methods {
    margin-bottom: 32px;
}
.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}
.method-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 20px;
}
.method-details h3 {
    margin: 0 0 2px 0;
    font-size: 17px;
    font-weight: 600;
}
.method-details p {
    margin: 0;
    color: #555;
    font-size: 15px;
}
.social-contact {
    margin-top: 24px;
}
.social-icons {
    display: flex;
    gap: 18px;
    margin-top: 10px;
}
.social-icon-large {
    width: 38px;
    height: 38px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-color);
    transition: background 0.2s;
}
.social-icon-large:hover {
    background: var(--primary-color);
    color: #fff;
}
.form-container {
    background: #f7f9fb;
    border-radius: var(--border-radius);
    padding: 24px 18px;
}
.form-row {
    display: flex;
    gap: 16px;
}
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}
.form-group label {
    font-size: 15px;
    margin-bottom: 6px;
    color: #222;
}
.form-group input, .form-group textarea {
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    padding: 10px 12px;
    font-size: 15px;
    background: #fff;
}
.form-group textarea {
    resize: vertical;
}
.captcha-container {
    margin-bottom: 18px;
}
.btn.primary-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}
.btn.primary-btn:hover {
    background: #0d3d69;
}
@media (max-width: 991px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-form-section {
        margin-left: 0;
        margin-top: 32px;
    }
}
/* Logo-container'ın z-index'i menüden düşük olmalı */
.logo-container {
    position: relative;
    z-index: 1;
}
