.ainu-location-section {
    background: #fff;
}

.ainu-location-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
}

.ainu-location-title .ainu-highlight {
    color: #dc3545;
}

.ainu-location-description {
    font-size: 1rem;
    color: #6c757d;
    text-align: center;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.ainu-location-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.ainu-location-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.ainu-map-wrapper {
    width: 100%;
    height: 260px;
    position: relative;
    overflow: hidden;
    padding: 1.2rem 1.2rem 0;
}

.ainu-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.ainu-location-info {
    padding: 1.2rem;
}

.ainu-location-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.ainu-location-name {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ainu-location-name i {
    font-size: 1.5rem;
    color: #dc3545;
}

.ainu-location-name h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #dc3545;
    margin: 0;
}

.ainu-btn-directions {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #e9ecef;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ainu-btn-directions:hover {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
    transform: translateY(-2px);
}

.ainu-btn-directions i {
    font-size: 1rem;
}

.ainu-address-block {
    padding: 1rem 0 0.6rem;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 0.6rem;
}

.ainu-address-text {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.8;
    margin: 0;
}

.ainu-contact-info {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.ainu-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ainu-contact-item i {
    font-size: 1.25rem;
    color: #6c757d;
}

.ainu-contact-item a,
.ainu-contact-item span {
    font-size: 0.95rem;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.ainu-contact-item a:hover {
    color: #dc3545;
}

@media (max-width: 767px) {
    .ainu-location-title {
        font-size: 1.75rem;
    }

    .ainu-location-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .ainu-map-wrapper {
        height: 250px;
    }

    .ainu-location-info {
        padding: 1.5rem;
    }

    .ainu-location-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .ainu-btn-directions {
        width: 100%;
        justify-content: center;
    }

    .ainu-contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .ainu-location-title {
        font-size: 1.5rem;
    }

    .ainu-location-name h3 {
        font-size: 1.1rem;
    }
}
