/* ===== Location Section Component ===== */
.location-section {
    text-align: center;
    margin-top: 3rem;
}

.location-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.location-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.location-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.location-text {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-map-placeholder {
    width: 100%;
    max-width: 800px;
    height: 300px;
    background: var(--bg-light);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
}

.map-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

.location-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .location-section {
        margin-top: 2.5rem;
    }

    .location-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .location-icon {
        width: 28px;
        height: 28px;
    }

    .location-text {
        font-size: 0.95rem;
    }

    .location-map-placeholder {
        height: 250px;
        margin: 1.25rem 0;
    }

    .location-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .location-section {
        margin-top: 2rem;
    }

    .location-icon-wrapper {
        width: 45px;
        height: 45px;
    }

    .location-icon {
        width: 24px;
        height: 24px;
    }

    .location-text {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.25rem;
    }

    .location-map-placeholder {
        height: 200px;
        margin: 1rem 0;
    }

    .map-note {
        font-size: 0.85rem;
    }

    .location-title {
        font-size: 1.5rem;
    }
}

