/* Contact Page General Styles */
.contact-page {
    padding-top: 0px;
    /* Account for fixed header */
    padding-bottom: 60px;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
}

.contact-header {
    text-align: center;
    margin-bottom: 0;
    padding: 60px 0 60px;
    /* Reduced padding to fix spacing */
    background-color: #f4f4f4;
    /* Light gray background like reference */
    width: 100%;
}

.contact-header h1 {
    font-size: 3.5rem;
    /* Larger font size */
    font-weight: 500;
    color: #333;
    margin: 0;
    text-transform: lowercase;
    /* Matches "iletişim" in reference */
    letter-spacing: -1px;
    font-family: 'Poppins', sans-serif;
    /* Ensure matching font */
}

/* Ensure main content has some top spacing */
.contact-main {
    padding-top: 80px;
}

.contact-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layout for Form and Map */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

/* Contact Form Styles */
.contact-form-wrapper h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
    font-size: 0.95rem;
}

.contact-form .required {
    color: red;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    background-color: #f9f9f9;
    font-size: 0.95rem;
    color: #555;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #333;
    background-color: #fff;
}

.submit-btn {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 12px 35px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-color: #000;
}

/* Map Styles */
.contact-map .map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: #f4f4f4;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Bottom Section: Info Grid */
.contact-cards {
    margin-top: 60px;
    border-top: 1px solid #eee;
    padding-top: 60px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    /* 4 Columns */
    gap: 30px;
}

/* Info Column (Column 1) */
.info-column h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #333;
}

.info-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Contact Cards (Columns 2-4) */
.contact-card {
    padding: 0;
    text-align: left;
    /* Changed from center to left */
    background: transparent;
}

.contact-card .card-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #333;
}

.contact-card .card-addr {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-card .card-line {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-card .card-line a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card .card-line a:hover {
    color: #000;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding-top: 100px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}