* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #FFD700;
    --gold-light: #FFE55C;
    --gold-dark: #E6C300;
    --blue: #1DA1F2;
    --dark-bg: #0A0A14;
    --dark-card: #12121F;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--dark-bg);
    color: white;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    line-height: 1.1;
}

.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(29, 161, 242, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #0A0A14 0%, #1A1A2E 50%, #0F0F1E 100%);
}

.mesh-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 215, 0, 0.03) 2px, rgba(255, 215, 0, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(29, 161, 242, 0.03) 2px, rgba(29, 161, 242, 0.03) 4px);
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(100vw, 100vh) rotate(360deg);
    }
}

/* Header */
.locations-header {
    position: relative;
    padding: 160px 40px 80px;
    text-align: center;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: black;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.header-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.header-badge:hover::before {
    left: 100%;
}

.header-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1;
    position: relative;
}

.header-title-main {
    display: block;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.header-title-sub {
    display: block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
    margin-top: 10px;
}

.header-description {
    max-width: 700px;
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 40px auto 0;
    padding: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    position: relative;
}

.header-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), var(--blue));
}

/* Google Maps Section */
.maps-section {
    padding: 80px 40px;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3.2rem;
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.maps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.google-map {
    position: relative;
    height: 500px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.google-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(110%) brightness(0.8);
    transition: filter 0.3s ease;
}

.google-map:hover iframe {
    filter: grayscale(0%) contrast(100%) brightness(0.9);
}

.location-info {
    padding: 40px;
    background: linear-gradient(145deg, 
        rgba(18, 18, 31, 0.9) 0%, 
        rgba(18, 18, 31, 0.95) 100%);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.location-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), var(--blue));
}

.info-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-details {
    margin-bottom: 40px;
}

.info-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    font-size: 1.2rem;
}

.detail-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.detail-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
}

.info-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.info-action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
}

.info-action.directions {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: black;
}

.info-action.contact {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.info-action:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    gap: 15px;
}

/* Visit Planning */
.visit-section {
    padding: 100px 40px;
    position: relative;
    text-align: center;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2));
}

.visit-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    background: linear-gradient(145deg, 
        rgba(18, 18, 31, 0.9) 0%, 
        rgba(18, 18, 31, 0.95) 100%);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.visit-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.visit-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.visit-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 16px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: white;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: black;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

/* Coming Soon Notice */
.coming-soon-section {
    padding: 100px 40px;
    position: relative;
    text-align: center;
}

.coming-soon-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: black;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.coming-soon-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.coming-soon-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Footer */
.locations-footer {
    padding: 60px 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* .footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
} */

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--blue));
    transform-origin: 0%;
    z-index: 1000;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-title {
        font-size: 3.5rem;
    }
    
    .header-title-sub {
        font-size: 2.8rem;
    }
    
    .maps-container {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .maps-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .google-map {
        height: 400px;
    }
    
    .location-info {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .locations-header,
    .maps-section,
    .visit-section,
    .coming-soon-section {
        padding: 80px 20px;
    }
    
    .header-title {
        font-size: 2.8rem;
    }
    
    .header-title-sub {
        font-size: 2.2rem;
    }
    
    .header-description {
        padding: 25px;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .visit-container {
        padding: 40px 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .visit-title {
        font-size: 2rem;
    }
    
    .info-actions {
        flex-direction: column;
    }
    
    .info-action {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header-title {
        font-size: 2.3rem;
    }
    
    .header-title-sub {
        font-size: 1.8rem;
    }
    
    .info-title {
        font-size: 1.8rem;
    }
    
    .google-map {
        height: 300px;
    }
    
    .coming-soon-container {
        padding: 30px 25px;
    }
    
    .coming-soon-title {
        font-size: 1.8rem;
    }
}