/* ==========================================================================
   A TO Z TOUR AND TRAVELS — CULTURAL BUNDELKHAND INTRO SPLASH
   ========================================================================== */

.intro-splash-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, #0F2537 0%, #050B12 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}

.intro-splash-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-container {
    text-align: center;
    padding: 30px;
    max-width: 650px;
}

.intro-symbol {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px auto;
    border-radius: 50%;
    background: rgba(245, 179, 53, 0.12);
    border: 2px solid #F5B335;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #F5B335;
    box-shadow: 0 0 40px rgba(245, 179, 53, 0.4);
    animation: pulseSymbol 2s infinite ease-in-out;
}

.intro-title-1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #FFFFFF;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.intro-title-2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: #F5B335;
    margin-bottom: 25px;
}

.intro-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: #94A3B8;
    margin-bottom: 35px;
}

.intro-tagline span {
    color: #FF6B00;
    font-weight: 700;
}

.intro-progress-bar {
    width: 260px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.intro-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #F5B335, #FF6B00);
    border-radius: 10px;
    transition: width 2.2s ease-out;
}

.skip-intro-btn {
    margin-top: 25px;
    background: transparent;
    border: 1px solid rgba(245, 179, 53, 0.3);
    color: #94A3B8;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.skip-intro-btn:hover {
    color: #F5B335;
    border-color: #F5B335;
}

@keyframes pulseSymbol {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(245, 179, 53, 0.3); }
    50% { transform: scale(1.08); box-shadow: 0 0 50px rgba(245, 179, 53, 0.6); }
}
