/* ==========================================================================
   MYVISATRAVELS.IN - PREMIUM VIBRANT COLORFUL 3D UNDER DEVELOPMENT STYLES
   ========================================================================== */

:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --color-pink: #ff007a;
    --color-cyan: #00f0ff;
    --color-purple: #a855f7;
    --color-gold: #fbbf24;
    --color-emerald: #10b981;
    --color-blue: #3b82f6;
}

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

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background: #090d16;
    font-family: var(--font-body);
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

/* Animated Colorful Background Gradient Glows */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: 
        radial-gradient(circle at 15% 20%, rgba(255, 0, 122, 0.28) 0%, transparent 45%),
        radial-gradient(circle at 85% 25%, rgba(0, 240, 255, 0.25) 0%, transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(168, 85, 247, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.2) 0%, transparent 40%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    animation: bgPulse 10s ease-in-out infinite alternate;
}

@keyframes bgPulse {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.08) rotate(3deg); }
}

/* Canvas 3D Background */
#canvas3d {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: auto;
}

/* Wrapper Layout */
.main-wrapper {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1.5rem;
    pointer-events: none;
}

.brand-header, .content-box, .footer {
    pointer-events: auto;
}

/* Header Logo & Status */
.brand-header {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
}

.logo-globe {
    font-size: 1.7rem;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.6));
}

.logo-text .highlight {
    background: linear-gradient(135deg, #00f0ff, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text .tld {
    color: var(--color-gold);
    font-size: 0.95rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(0, 240, 255, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #00f0ff;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.25);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-emerald);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--color-emerald);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.4); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

/* Central Content Ultra-Premium Glass Card */
.content-box {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 32px;
    padding: 3.5rem 2.5rem;
    max-width: 780px;
    width: 100%;
    text-align: center;
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(168, 85, 247, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.25);
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

/* Top Neon Accent Line */
.content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff007a, #00f0ff, #a855f7, #fbbf24);
}

.glow-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, rgba(255, 0, 122, 0.2), rgba(168, 85, 247, 0.25));
    border: 1px solid rgba(255, 0, 122, 0.4);
    color: #ff77bc;
    font-size: 0.825rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    padding: 0.45rem 1.25rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(255, 0, 122, 0.3);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.3rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.gradient-text {
    background: linear-gradient(135deg, #ff007a 0%, #00f0ff 40%, #a855f7 70%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.3));
}

.hero-subtext {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin: 0 auto 2.25rem;
    max-width: 600px;
    line-height: 1.6;
}

/* 3D Countdown Grid */
.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.count-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 1.25rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.count-card:hover {
    border-color: #00f0ff;
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 240, 255, 0.35);
}

.count-val {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 900;
    background: linear-gradient(180deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.count-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    font-weight: 700;
    margin-top: 0.25rem;
}

/* Form Input & Premium Buttons */
.notify-form {
    max-width: 540px;
    margin: 0 auto 1.5rem;
}

.input-wrapper {
    display: flex;
    gap: 0.5rem;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 0.45rem;
    border-radius: 999px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: #ff007a;
    box-shadow: 0 0 25px rgba(255, 0, 122, 0.4);
}

.input-wrapper input {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
}

.input-wrapper input::placeholder {
    color: #64748b;
}

.btn-notify {
    background: linear-gradient(135deg, #ff007a, #a855f7);
    color: #ffffff;
    border: none;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(255, 0, 122, 0.4);
}

.btn-notify:hover {
    background: linear-gradient(135deg, #ff2a93, #c084fc);
    transform: scale(1.04);
    box-shadow: 0 6px 28px rgba(255, 0, 122, 0.6);
}

.btn-whatsapp-glow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #10b981 0%, #00f0ff 100%);
    color: #041f17;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    padding: 0.9rem 2.2rem;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.45);
    transition: all 0.3s ease;
}

.btn-whatsapp-glow:hover {
    background: linear-gradient(135deg, #059669 0%, #00d2ff 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(0, 240, 255, 0.6);
    color: #ffffff;
}

.form-feedback {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #00f0ff;
    font-weight: 600;
}

/* Contact Details Strip */
.contact-strip {
    font-size: 0.9rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.contact-strip a {
    color: #e2e8f0;
    text-decoration: none;
}

.contact-strip a:hover {
    color: #00f0ff;
}

.dot {
    color: #475569;
}

/* Footer */
.footer {
    font-size: 0.85rem;
    color: #64748b;
    text-align: center;
}

/* Responsive Rules */
@media (max-width: 640px) {
    .content-box {
        padding: 2.25rem 1.25rem;
    }

    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .input-wrapper {
        flex-direction: column;
        border-radius: 20px;
        padding: 0.6rem;
    }

    .btn-notify {
        width: 100%;
        justify-content: center;
        border-radius: 14px;
    }
}
