/* ==========================================================================
   Contact + Map Section
   ========================================================================== */

   .contact-map-section {
    background: linear-gradient(180deg, #f8f1eb 0%, #f6f1ed 100%);
    padding: clamp(32px, 6vw, 72px) var(--container-padding, 24px);
}

.contact-map-container {
    max-width: var(--container-2xl, 1400px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 4vw, 40px);
}

.contact-map-header {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

.contact-map-title {
    font-size: clamp(28px, 2vw, 36px);
    margin: 0 0 8px;
    color: #1d1d1f;
    font-weight: 700;
}

.contact-map-description {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.contact-map-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(20px, 4vw, 36px);
    align-items: stretch;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0e8e2;
    padding: clamp(20px, 4vw, 32px);
}

.contact-map-image {
    border-radius: 14px;
    overflow: hidden;
    background: #f7f7f7;
}

.contact-map-image img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

.contact-map-card {
    background: transparent;
    border-radius: 12px;
    box-shadow: none;
    padding: 0;
    border: none;
}

.contact-map-form-title {
    font-size: clamp(37px, 1.4vw, 26px);
    font-weight: 600;
    color: #1f1f1f;
    margin: 0 0 18px;
    text-align: right;
}

.contact-map-form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-map-form .wpcf7-form label {
    font-size: 14px;
    color: #2c2c2c;
    margin-bottom: 6px;
    display: inline-block;
}

.contact-map-form input[type="text"],
.contact-map-form input[type="email"],
.contact-map-form input[type="tel"],
.contact-map-form textarea {
    width: 100%;
    padding: 10px 0 12px;
    border: none;
    border-bottom: 1px solid #d9d9d9;
    background: transparent;
    font-size: 15px;
    color: #111;
    direction: rtl;
    text-align: right;
    transition: border-color 0.2s ease;
}

.contact-map-form input[type="tel"] {
    direction: ltr;
    text-align: right;
}

.contact-map-form input[type="text"]:focus,
.contact-map-form input[type="email"]:focus,
.contact-map-form input[type="tel"]:focus,
.contact-map-form textarea:focus {
    outline: none;
    border-bottom-color: var(--color-secondary, #d6885b);
}

.contact-map-form .wpcf7-submit,
.contact-map-form input[type="submit"] {
    background: var(--color-primary, #153c6d);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 14px 24px;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    min-width: 160px;
}

.contact-map-form .wpcf7-submit:hover,
.contact-map-form input[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(21, 60, 109, 0.2);
}

.contact-map-info-row {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: clamp(16px, 2.5vw, 24px);
    align-items: center;
    margin: 2rem 0;
}

.contact-map-description-block {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    color: #3a3a3a;
    line-height: 1.7;
    text-align: right;
    width: 78%;
}

.contact-map-details {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    border: none;
}

.contact-map-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px 22px;
}

.contact-map-detail {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
}

.detail-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    /* background: #f7e2d7; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.detail-icon img {
    /* max-width: 22px; */
    /* max-height: 22px; */
}

.detail-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-weight: 600;
    color: #222;
    font-size: 15px;
}

.detail-value {
    font-size: 14px;
    color: #555;
}

.detail-value a {
    color: inherit;
    text-decoration: none;
}

.detail-value a:hover {
    color: var(--color-primary, #153c6d);
}

.contact-map-embed {
    margin-top: clamp(10px, 3vw, 24px);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.07);
    border: 1px solid #f0e8e2;
}

.contact-map-embed iframe {
    display: block;
    width: 100%;
    min-height: 360px;
    border: 0;
}

@media (max-width: 1024px) {
    .contact-map-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-image img {
        max-height: 360px;
    }

    .contact-map-info-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-map-description-block {

        width: 100%;
    }
    .contact-map-section {
        padding: 65px 16px;
    }

    .contact-map-card,
    .contact-map-details {
        border-radius: 14px;
    }

    .contact-map-image {
        border-radius: 14px;
    }

    .contact-map-embed iframe {
        min-height: 300px;
    }

    .detail-label {
        font-weight: 600;
        color: #222;
        font-size: 18px;
    }

    .detail-value {
        font-size: 17px;
        color: #555;
    }
    .contact-map-details-list {

        gap: 21px 22px;
    }
}

