.contact-section {
    padding: 70px 0;
    background: #f8f3e9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: stretch;
}

.contact-info-card,
.contact-form-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 34px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 61, 43, 0.08);
}

.contact-label {
    display: inline-block;
    background: #c99a3d;
    color: #ffffff;
    padding: 7px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-info-card h2,
.contact-form-card h2 {
    color: #003d2b;
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 15px;
}

.contact-intro,
.contact-form-card p {
    color: #444444;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.contact-info-list {
    display: grid;
    gap: 16px;
}

.contact-info-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: start;
    background: #f8f3e9;
    padding: 16px;
    border-radius: 14px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0f5132;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
}

.contact-info-item strong {
    display: block;
    color: #003d2b;
    font-size: 15px;
    margin-bottom: 4px;
}

.contact-info-item a,
.contact-info-item span {
    color: #333333;
    text-decoration: none;
    line-height: 1.6;
    word-break: break-word;
}

.contact-info-item a:hover {
    color: #c99a3d;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #0f5132;
    color: #ffffff;
}

.btn-primary:hover {
    background: #0b3f27;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #0f5132;
    border: 2px solid #0f5132;
}

.btn-outline:hover {
    background: #0f5132;
    color: #ffffff;
    transform: translateY(-2px);
}

.contact-note {
    background: #0f5132;
    color: #ffffff;
    border-radius: 14px;
    padding: 18px 20px;
    margin: 24px 0;
}

.contact-note strong {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
}

.contact-note span {
    display: block;
    line-height: 1.6;
}

.contact-service-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.contact-service-list a,
.contact-service-list span {
    display: block;
    background: #f8f3e9;
    color: #003d2b;
    padding: 13px 15px;
    border-radius: 12px;
    font-weight: 800;
    border-left: 4px solid #c99a3d;
    text-decoration: none;
    transition: all 0.25s ease;
}

.contact-service-list a:hover {
    background: #0f5132;
    color: #ffffff;
    border-left-color: #c99a3d;
    transform: translateX(4px);
}

.contact-service-list span {
    opacity: 0.75;
}

/* Harita Alanı */

.contact-map-section {
    padding: 60px 0 70px;
    background: #ffffff;
}

.contact-map-card {
    background: #f8f3e9;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 61, 43, 0.08);
}

.contact-map-card .section-title {
    text-align: center;
    margin-bottom: 28px;
}

.contact-map-card .section-title span {
    display: inline-block;
    background: #c99a3d;
    color: #ffffff;
    padding: 7px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 12px;
}

.contact-map-card .section-title h2 {
    color: #003d2b;
    font-size: 30px;
    margin-bottom: 10px;
}

.contact-map-card .section-title p {
    color: #555555;
    font-size: 16px;
    margin: 0;
}

.contact-map {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(0, 61, 43, 0.12);
    background: #ffffff;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 420px;
}

/* Mobil Uyumluluk */

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 45px 0;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 24px;
    }

    .contact-info-card h2,
    .contact-form-card h2 {
        font-size: 24px;
    }

    .contact-intro,
    .contact-form-card p {
        font-size: 15px;
    }

    .contact-info-item {
        grid-template-columns: 42px 1fr;
        padding: 14px;
    }

    .contact-icon {
        width: 42px;
        height: 42px;
        font-size: 19px;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .contact-map-section {
        padding: 40px 0 50px;
    }

    .contact-map-card {
        padding: 18px;
    }

    .contact-map-card .section-title h2 {
        font-size: 24px;
    }

    .contact-map iframe {
        height: 320px;
    }
}