/**
 * Location Section Styles
 */

.location-section {
    background-color: #655442;
    position: relative;
}

.location-section__container {
    display: flex;
    min-height: 700px;
    max-width: 1340px;
    margin: 0 auto;
    padding: 58px 20px 89px;
}

/* Content Side */
.location-section__content {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Header */
.location-section__header {
    margin-bottom: 50px;
}

.location-section__title {
    font-family: var(--second-family), sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 10px 0;
}

.location-section__description {
    font-family: var(--font-family), sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.75;
    margin: 0;
}

/* Contact Cards */
.location-section__cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-section__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 25px;
    border: 1px solid #655442;
    border-radius: 16px;
}

.location-section__card-icon {
    flex-shrink: 0;
}

.location-section__card-icon svg {
    width: 40px;
    height: 40px;
}

.location-section__card-content {
    flex: 1;
}

.location-section__card-title {
    font-family: var(--second-family), sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 0 5px 0;
}

.location-section__card-text p,
.location-section__card-text{
    font-family: var(--font-family), sans-serif;
    font-size: 16px;
    color: #CFC7B2;
    line-height: 1.75;
}

.location-section__card-text p {
    margin: 0;
}

.location-section__card-text a {
    color: #CFC7B2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-section__card-text a:hover {
    color: #FFFFFF;
}

/* Map Side */
.location-section__map-wrapper {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-section__map {
    width: 100%;
    height: 100%;
    max-width: 650px;
    min-height: 500px;
    border-radius: 50px;
    overflow: hidden;
}

.location-section__map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
    border-radius: 50px;
}

.location-section__map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.location-section__map--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #999;
    font-family: var(--font-family), sans-serif;
}

/* Preview in Admin */
.location-section-preview {
    padding: 40px;
    background: #f5f5f5;
    text-align: center;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 1600px) {
    .location-section__content {
        padding: 80px 50px 100px 150px;
    }

    .location-section__title {
        font-size: 40px;
    }

    .location-section__map-wrapper {
        padding: 30px;
    }
}

@media (max-width: 1200px) {
    .location-section__container {
        min-height: auto;
    }

    .location-section__content {
        max-width: 50%;
        padding: 60px 40px;
    }

    .location-section__map-wrapper {
        max-width: 50%;
        padding: 40px;
        min-height: 500px;
    }

    .location-section__map {
        max-width: 100%;
    }

    .location-section__title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .location-section__content {
        padding: 50px 20px;
    }

    .location-section__header {
        margin-bottom: 40px;
    }

    .location-section__title {
        font-size: 32px;
    }

    .location-section__cards {
        gap: 20px;
    }

    .location-section__card {
        padding: 20px;
    }

    .location-section__card-title {
        font-size: 20px;
    }

    .location-section__map-wrapper {
        padding: 20px;
        min-height: 400px;
    }

    .location-section__map {
        border-radius: 30px;
        min-height: 350px;
    }

    .location-section__map iframe {
        min-height: 350px;
        border-radius: 30px;
    }
}

@media (max-width: 550px) {
    .location-section__content {
        padding: 0;
    }

    .location-section__content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .location-section__title {
        font-size: 34px;
    }

    .location-section__card {
        padding: 16px;
        gap: 12px;
    }

    .location-section__card-icon svg {
        width: 36px;
        height: 36px;
    }

    .location-section__card-title {
        font-size: 18px;
    }

    .location-section__card-text {
        font-size: 14px;
    }

    .location-section__map-wrapper {
        display: none;
    }

    .location-section__map {
        border-radius: 24px;
        min-height: 280px;
    }

    .location-section__map iframe {
        min-height: 280px;
        border-radius: 24px;
    }
}
