.lokasi-container {
    max-width: 1400px;
    margin-top: 120px;
    margin-bottom: 40px;
    margin-right: auto;
    margin-left: auto;
}

.lokasi-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lokasi-info {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lokasi-logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 3px solid #f0f0f0;
}

.lokasi-logo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    padding: 8px;
    box-shadow: 0 8px 20px rgba(26, 35, 126, 0.3);
    flex-shrink: 0;
}

.lokasi-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: white;
}

.lokasi-school-name {
    flex: 1;
}

.lokasi-school-title {
    font-size: 28px;
    color: #1a237e;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 5px;
}

.lokasi-school-number {
    font-size: 14px;
    color: #ff9800;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lokasi-details {
    margin-bottom: 30px;
}

.lokasi-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.lokasi-detail-item:hover {
    transform: translateX(5px);
    border-left-color: #ff9800;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.lokasi-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(26, 35, 126, 0.2);
}

.lokasi-detail-content {
    flex: 1;
}

.lokasi-detail-label {
    font-size: 12px;
    color: #718096;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.lokasi-detail-text {
    font-size: 15px;
    color: #2d3748;
    font-weight: 500;
    line-height: 1.6;
}

.lokasi-description {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(26, 35, 126, 0.3);
}

.lokasi-description-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lokasi-description-text {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.lokasi-action-buttons {
    display: flex;
    gap: 15px;
}

.lokasi-btn {
    flex: 1;
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lokasi-btn-primary {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.lokasi-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.lokasi-btn-secondary {
    background: white;
    color: #1a237e;
    border: 2px solid #1a237e;
}

.lokasi-btn-secondary:hover {
    background: #1a237e;
    color: white;
    transform: translateY(-2px);
}

.lokasi-map {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.lokasi-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}

.lokasi-map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    z-index: 10;
}

.lokasi-map-title {
    font-size: 16px;
    color: #1a237e;
    font-weight: 700;
    margin-bottom: 8px;
}

.lokasi-map-address {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 968px) {
    .lokasi-content {
        grid-template-columns: 1fr;
    }

    .lokasi-info {
        padding: 30px 25px;
    }

    .lokasi-logo-section {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .lokasi-school-title {
        font-size: 22px;
    }

    .lokasi-map {
        min-height: 400px;
        order: -1;
    }

    .lokasi-action-buttons {
        flex-direction: column;
    }

    .lokasi-btn {
        width: 100%;
    }

    .lokasi-map-overlay {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .lokasi-info {
        padding: 25px 20px;
    }

    .lokasi-detail-item {
        padding: 15px;
        gap: 12px;
    }

    .lokasi-icon {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .lokasi-school-title {
        font-size: 20px;
    }
}