/* =========================================================================
   CONTACT PAGE MASTER STYLES
   ========================================================================= */
.contact-page-wrapper {
    background-color: #f8fafc;
    padding: 60px 0;
}

.contact-grid-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

/* Sol Sütun */
.contact-info-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
}

.contact-info-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 25px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #dc2626;
}

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

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

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

.info-icon {
    background-color: #fef2f2;
    color: #dc2626;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.info-text strong {
    display: block;
    font-size: 14px;
    color: #0f172a;
    margin-bottom: 2px;
}

.info-text p {
    margin: 0;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

.info-text a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}

.info-text a:hover {
    color: #dc2626;
}

.contact-notice-box {
    background-color: #f8fafc;
    border-left: 4px solid #dc2626;
    padding: 15px;
    border-radius: 0 8px 8px 0;
}

.contact-notice-box p {
    margin: 0;
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    font-weight: 500;
}

/* Sağ Sütun */
.contact-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
}

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

.form-control {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background-color: #f8fafc;
    color: #0f172a;
    transition: border-color 0.2s, background-color 0.2s;
    outline: none;
}

.form-control:focus {
    border-color: #dc2626;
    background-color: #ffffff;
}

.btn-submit-contact {
    background-color: #dc2626;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-submit-contact:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
}

/* Harita Kartı */
.contact-map-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
    line-height: 0;
}

.contact-map-card iframe {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
}

@media (max-width: 992px) {
    .contact-layout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .contact-page-wrapper {
        padding: 30px 0;
    }
    .contact-info-card, .contact-form-card {
        padding: 25px 20px;
    }
    .contact-map-card iframe {
        height: 280px;
    }
}