/* ========================================= */
/* --- DOC STORE COMING SOON CSS ----------- */
/* ========================================= */

.doc-store-promo {
    padding: 100px 20px;
    background-color: #f8fafc; /* Very light premium background */
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.dsp-container {
    max-width: 1150px;
    width: 100%;
    position: relative;
    z-index: 5;
}

/* --- Animated Ambient Glows --- */
.dsp-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    animation: dsp-breathe 6s infinite alternate ease-in-out;
}

.dsp-glow-blue {
    background: rgba(27, 28, 75, 0.12); /* Disha Navy */
    top: -150px;
    left: -100px;
}

.dsp-glow-orange {
    background: rgba(228, 106, 0, 0.12); /* Disha Orange */
    bottom: -150px;
    right: -100px;
    animation-delay: -3s;
}

@keyframes dsp-breathe {
    0% { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(1.2); opacity: 1; }
}

/* --- The Glassmorphism Card --- */
.dsp-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.75); /* Highly translucent white */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 35px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.9);
    gap: 60px;
}

/* --- Content Side (Left) --- */
.dsp-content {
    flex: 1;
    max-width: 550px;
}

.dsp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    color: #c2410c;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.1);
}

.dsp-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ea580c;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.7);
    animation: dsp-dot-pulse 1.5s infinite;
}

@keyframes dsp-dot-pulse {
    0% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(234, 88, 12, 0); }
    100% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0); }
}

.dsp-title {
    font-size: 46px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin: 0 0 20px 0;
    letter-spacing: -1.5px;
}

.dsp-highlight {
    background: linear-gradient(90deg, #1b1c4b, #e46a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.dsp-desc {
    font-size: 17px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 40px 0;
}

/* --- New Action Button --- */
.dsp-action-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.dsp-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1b1c4b; /* Premium Navy */
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(27, 28, 75, 0.2);
    position: relative;
    overflow: hidden;
}

/* Shine effect on button */
.dsp-explore-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
}

.dsp-explore-btn:hover {
    background: #2e3077;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(27, 28, 75, 0.3);
}

.dsp-explore-btn:hover::after {
    left: 200%;
}

.dsp-explore-btn i {
    transition: transform 0.3s ease;
}

.dsp-explore-btn:hover i {
    transform: translateX(6px); /* Arrow shoots right */
}

.dsp-hint-text {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
    margin: 0;
}

/* --- Visual Side (Right) & The 3D Thinking Magic --- */
.dsp-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.dsp-float-scene {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 350px;
    height: 350px;
    justify-content: center;
}

/* Floating Emojis/Icons around the character */
.dsp-floating-item {
    position: absolute;
    font-size: 32px;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
    z-index: 10;
}

.dsp-item-1 {
    top: 20px;
    left: 20px;
    animation: dsp-float-mini 3s ease-in-out infinite;
}

.dsp-item-2 {
    top: 40px;
    right: 20px;
    font-size: 24px;
    animation: dsp-float-mini 4s ease-in-out infinite 1s;
}

.dsp-item-3 {
    bottom: 50px;
    left: 0px;
    animation: dsp-float-mini 3.5s ease-in-out infinite 0.5s;
}

@keyframes dsp-float-mini {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

/* The Main 3D Thinking Character */
.dsp-3d-character {
    width: 280px;
    height: auto;
    object-fit: contain;
    z-index: 5;
    animation: dsp-float-main 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 25px rgba(0,0,0,0.15));
}

@keyframes dsp-float-main {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* The dynamic floor shadow below the character */
.dsp-floor-shadow {
    width: 160px;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    margin-top: 15px;
    animation: dsp-shadow-pulse 4s ease-in-out infinite;
}

@keyframes dsp-shadow-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.7); opacity: 0.4; } /* Shadow shrinks as character floats up */
}


/* ========================================= */
/* --- RESPONSIVE DESIGN (MOBILE UX) ------- */
/* ========================================= */

@media (max-width: 1024px) {
    .dsp-card {
        padding: 50px 30px;
        gap: 30px;
    }
    .dsp-title { font-size: 38px; }
    .dsp-3d-character { width: 240px; }
}

/* Mobile & Small Tablets */
@media (max-width: 768px) {
    .doc-store-promo {
        padding: 60px 15px;
    }

    .dsp-card {
        flex-direction: column; /* Stack image on top, text below */
        text-align: center;
        padding: 40px 20px;
        gap: 40px;
        border-radius: 28px;
    }

    .dsp-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .dsp-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .dsp-desc {
        font-size: 15px;
        margin-bottom: 30px;
    }

    /* Center align button on mobile */
    .dsp-action-group {
        align-items: center;
        width: 100%;
    }

    .dsp-explore-btn {
        width: 100%;
        justify-content: center;
        padding: 15px;
    }

    /* Move the 3D visual to the top on mobile for better UX */
    .dsp-visual {
        order: -1; 
        width: 100%;
    }

    .dsp-float-scene {
        width: 100%;
        height: 280px;
    }

    .dsp-3d-character {
        width: 200px;
    }

    .dsp-floor-shadow {
        width: 120px;
    }

    /* Adjust floating emojis for mobile */
    .dsp-item-1 { left: 10%; top: 10px; }
    .dsp-item-2 { right: 10%; top: 30px; }
    .dsp-item-3 { left: 5%; bottom: 30px; }
}

@media (max-width: 480px) {
    .dsp-title { font-size: 28px; }
}

