/* -------------------------------------------
   GLOBAL RESET & BASE STYLING
--------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    color: #fff;
    background: #000;
    overflow-x: hidden;
}

/* -------------------------------------------
   LOADER ANIMATION
--------------------------------------------*/
.loader {
    position: fixed;
    background: #000;
    width: 100%;
    height: 100%;
    z-index: 9999;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 55px;
    height: 55px;
    border: 5px solid #222;
    border-top: 5px solid #ceff00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

.loader p {
    opacity: 0.7;
    letter-spacing: 1px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* -------------------------------------------
   FLOATING SOCIAL BAR
--------------------------------------------*/
.social-bar {
    position: fixed;
    top: 30%;
    left: 20px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-bar a {
    color: #ceff00;
    font-size: 1.4rem;
    background: rgba(255,255,255,0.06);
    padding: 10px 12px;
    border-radius: 10px;
    transition: 0.3s;
    backdrop-filter: blur(4px);
}

.social-bar a:hover {
    background: #ceff00;
    color: #000;
}

/* -------------------------------------------
   HERO MULTI-PARALLAX
--------------------------------------------*/
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 105%;
    height: 105%;
    background-size: cover;
    background-position: center;
    transform: translateZ(0);
}

.layer1 {
    background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=80");
    animation: parallax1 20s infinite linear;
}

.layer2 {
    background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?auto=format&fit=crop&w=1400&q=80");
    opacity: 0.2;
    animation: parallax2 35s infinite linear;
}

.layer3 {
    background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?auto=format&fit=crop&w=1400&q=80");
    opacity: 0.05;
    animation: parallax3 55s infinite linear;
}

@keyframes parallax1 { 0% { transform: scale(1); } 100% { transform: scale(1.1); } }
@keyframes parallax2 { 0% { transform: scale(1); } 100% { transform: scale(1.2); } }
@keyframes parallax3 { 0% { transform: scale(1); } 100% { transform: scale(1.3); } }

/* -------------------------------------------
   HERO CONTENT
--------------------------------------------*/
.hero-content {
    position: absolute;
    top: 35%;
    width: 100%;
    text-align: center;
    z-index: 10;
    padding: 0 10px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 0 15px #000;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.85;
}

/* COUNTDOWN */
#countdown {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

#countdown div {
    text-align: center;
}

#countdown span {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ceff00;
}

/* BUTTON GROUP */
.btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-group button {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

#notify-btn {
    background: #ceff00;
    color: #000;
}

#notify-btn:hover {
    opacity: 0.85;
}

#whatsapp-btn {
    background: transparent;
    color: #ceff00;
    border: 2px solid #ceff00;
}

#whatsapp-btn:hover {
    background: #ceff00;
    color: #000;
}

/* -------------------------------------------
   WHY SECTION
--------------------------------------------*/
.why {
    padding: 80px 5%;
    text-align: center;
    background: #0d0d0d;
}

.why h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.07);
}

.card i {
    font-size: 2.3rem;
    color: #ceff00;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 10px;
}

/* -------------------------------------------
   MODAL FORM
--------------------------------------------*/
.modal {
    display: none;
    position: fixed;
    background: rgba(0,0,0,0.85);
    width: 100%;
    height: 100%;
    z-index: 200;
    top: 0;
    left: 0;
}

.modal-content {
    background: #111;
    width: 90%;
    max-width: 450px;
    padding: 25px;
    margin: 10% auto;
    border-radius: 12px;
    text-align: center;
    animation: fadeUp 1s;
    position: relative;
}

.close {
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    font-size: 25px;
}

.modal-content input {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: none;
    margin-bottom: 15px;
}

.modal-content button {
    width: 100%;
    background: #ceff00;
    padding: 12px;
    border-radius: 6px;
    color: #000;
    font-weight: bold;
}

/* -------------------------------------------
   EXIT INTENT POPUP
--------------------------------------------*/
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 180;
}

.exit-box {
    background: #111;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    width: 90%;
    max-width: 360px;
    box-shadow: 0 0 20px rgba(0,0,0,0.7);
}

.exit-box h3 {
    margin-bottom: 10px;
}

.exit-box p {
    margin-bottom: 20px;
    opacity: 0.85;
}

.exit-box button {
    padding: 10px 25px;
    border-radius: 6px;
    border: none;
    background: #ceff00;
    color: #000;
    font-weight: 600;
    cursor: pointer;
}

/* -------------------------------------------
   AI WIDGET
--------------------------------------------*/
.ai-widget {
    position: fixed;
    bottom: 30px;
    right: 25px;
    background: #ceff00;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 150;
    box-shadow: 0 0 12px rgba(206,255,0,0.6);
}

.ai-panel {
    position: fixed;
    bottom: 100px;
    right: 25px;
    background: #111;
    padding: 20px;
    width: 260px;
    border-radius: 12px;
    display: none;
    z-index: 140;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.ai-panel h3 {
    margin-bottom: 8px;
}

.ai-panel p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.ai-panel textarea {
    width: 100%;
    min-height: 70px;
    border-radius: 8px;
    border: none;
    padding: 8px;
    margin-bottom: 10px;
    background: #1a1a1a;
    color: #fff;
    resize: none;
}

.ai-panel button {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: none;
    background: #ceff00;
    color: #000;
    font-weight: 600;
    cursor: pointer;
}

/* -------------------------------------------
   FOOTER (NEON GLASS EFFECT)
--------------------------------------------*/
.footer {
    position: relative;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    background: rgba(255,255,255,0.05);
    border-top: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);
    margin-top: 70px;
}

.footer p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* -------------------------------------------
   ANIMATIONS
--------------------------------------------*/
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* -------------------------------------------
   RESPONSIVE
--------------------------------------------*/
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }

    .social-bar {
        display: none;
    }
}
