/* Map Section Styles - Premium Professional Design */

.map-section {
    padding: 80px 16px;
    background: linear-gradient(135deg, #f8fdf6 0%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.map__header {
    text-align: center;
    margin-bottom: 60px;
    animation: slideInUp 0.6s ease-out;
}

.map__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(20, 83, 45, 0.08);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    color: #14532d;
    margin-bottom: 24px;
    border: 1px solid rgba(20, 83, 45, 0.12);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.map__title {
    font-size: 48px;
    font-weight: 800;
    color: #14532d;
    margin-bottom: 24px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .map__title {
        font-size: 32px;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .map__title {
        font-size: 26px;
    }
}

.map__subtitle {
    font-size: 16px;
    color: #4b5563;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.2px;
    word-spacing: 0.05em;
}

.map__container {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(20, 83, 45, 0.1), 0 8px 16px rgba(20, 83, 45, 0.06);
    animation: slideInUp 0.6s ease-out 0.1s backwards;
    border: 1px solid rgba(20, 83, 45, 0.08);
}

.map__iframe {
    display: block;
    border: none;
    border-radius: 16px;
    width: 100%;
    height: 600px;
}

/* Responsive design */
@media (max-width: 1024px) {
    .map-section {
        padding: 70px 20px;
    }

    .map__title {
        font-size: 40px;
    }

    .map__iframe {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .map-section {
        padding: 60px 16px;
    }

    .map__header {
        margin-bottom: 40px;
    }

    .map__title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .map__subtitle {
        font-size: 14px;
        line-height: 1.65;
    }

    .map__iframe {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .map-section {
        padding: 48px 12px;
    }

    .map__header {
        margin-bottom: 32px;
    }

    .map__title {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .map__subtitle {
        font-size: 13px;
    }

    .map__iframe {
        height: 350px;
    }

    .map__badge {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* Animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Decorative elements for consistency with site theme */
.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(20, 83, 45, 0.08), transparent);
    pointer-events: none;
}

.map-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(20, 83, 45, 0.08), transparent);
    pointer-events: none;
}

/* Additional professional touches */
.map__container:hover {
    box-shadow: 0 32px 64px rgba(20, 83, 45, 0.12), 0 12px 24px rgba(20, 83, 45, 0.08);
    transition: box-shadow 0.3s ease-out;
}
