.location-section {
    background: linear-gradient(180deg, var(--light-turquoise) 0%, var(--turquoise) 100%);
    padding: 6rem 2rem;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.location-header {
    text-align: center;
    margin-bottom: 4rem;
}

.location-header h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.location-header .wave-underline {
    background: linear-gradient(90deg, white, var(--coral));
}

.location-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-color: var(--coral);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--turquoise);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.2);
    color: var(--coral);
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--turquoise);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    height: 100%;
    min-height: 400px;
}

.map-iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    border-radius: 20px;
    display: block;
}

.map-overlay-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--deep-turquoise) 0%, var(--turquoise) 50%, var(--light-turquoise) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

.map-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
}

.map-marker {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

.map-overlay p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.map-overlay .btn-primary {
    background: white;
    color: var(--turquoise);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.map-overlay .btn-primary:hover {
    background: var(--coral);
    color: white;
}

@media (max-width: 968px) {
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .location-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .location-section {
        padding: 3rem 1rem;
        width: 100%;
        max-width: 100vw;
    }
    
    .location-header {
        margin-bottom: 2rem;
    }
    
    .location-header h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .location-header p {
        font-size: 1rem;
    }
    
    .location-content {
        gap: 1.5rem;
    }
    
    .location-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-card {
        padding: 1.5rem 1rem;
    }
    
    .info-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .info-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .info-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .map-container {
        min-height: 250px;
    }
    
    .map-overlay {
        padding: 1.5rem;
    }
    
    .map-marker {
        font-size: 3rem;
        margin-bottom: 0.75rem;
    }
    
    .map-overlay p {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .map-overlay .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .location-section {
        padding: 2rem 0.75rem;
        width: 100%;
        max-width: 100vw;
    }
    
    .location-header {
        margin-bottom: 1.5rem;
    }
    
    .location-header h2 {
        font-size: 1.8rem;
    }
    
    .location-header p {
        font-size: 0.9rem;
    }
    
    .location-content {
        gap: 1rem;
    }
    
    .info-card {
        padding: 1.25rem 0.75rem;
    }
    
    .map-container {
        min-height: 200px;
    }
    
    .map-overlay {
        padding: 1rem;
    }
    
    .map-marker {
        font-size: 2.5rem;
    }
    
    .map-overlay p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

