body { 
    font-family: 'Poppins', sans-serif; 
    background-color: #030303; 
    color: #f3f4f6; 
}

/* ================= ROYAL SPA BRAND COLOR MATRIX ================= */
.pink-text { color: #d53f8c; }
.pink-bg { background-color: #d53f8c; }
.pink-border { border-color: #d53f8c; }

.gold-text { color: #daa520; }
.gold-bg { background-color: #daa520; }
.gold-border { border-color: #daa520; }

.btn-gradient { 
    background: linear-gradient(135deg, #e91e63, #daa520); 
}

/* Permanent Light Theme & Card Classes */
.card-bg { 
    background-color: #f8fafc; 
    border-color: #e2e8f0; 
    color: #111111; 
}
.footer-bg { 
    background-color: #f1f5f9; 
    border-color: #e2e8f0; 
}
.faq-box { 
    background-color: #ffffff; 
    border-color: #e2e8f0; 
    color: #111111; 
}

/* ================= SLIDER & FADE ANIMATIONS ================= */
.slide { display: none; }
.slide.active { 
    display: block; 
    animation: fade 1.2s ease-in-out; 
}
@keyframes fade { 
    from { opacity: 0.5; } 
    to { opacity: 1; } 
}

/* Text Block Sync Fade Animation */
.slide-text-block { 
    animation: textFade 1.2s ease-in-out; 
}
@keyframes textFade { 
    from { opacity: 0; transform: translateY(10px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* Modal Overlay Custom */
.modal-overlay { 
    display: none; 
    background-color: rgba(0,0,0,0.9); 
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.modal-overlay.active { display: flex; }

/* ================= CAPSULE CLOCK COMPONENT ================= */
.capsule-clock {
    width: 82px;  
    height: 28px;  
    border-radius: 50px;
    background: linear-gradient(135deg, #e91e63, #daa520); 
    border: 1.5px solid rgba(255, 255, 255, 0.8); 
    box-shadow: 0 0 15px rgba(233, 30, 99, 0.4), inset 0 0 5px rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.clock-time-part { font-size: 11px; font-weight: 700; color: #ffffff; }
.clock-ampm-part { font-size: 8px; font-weight: 600; margin-left: 2px; color: #ffffff; }

/* ================= NEON GLOW SOCIAL ICONS ================= */
.social-royal-btn, .social-gold-btn {
    width: 36px;
    height: 36px;
    border-radius: 50px;
    background: linear-gradient(135deg, #e91e63, #daa520);
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}
.social-royal-btn:hover, .social-gold-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px #e91e63;
}

/* ================= REAL CARTOON MASCOT & BUBBLE STYLES ================= */
#floating-mascot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    cursor: pointer;
    width: 115px;
    height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: mascotFlyIn 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, realCartoonMotion 2.5s ease-in-out infinite;
    transition: transform 0.3s ease;
}

#floating-mascot-container:hover {
    transform: scale(1.15) rotate(4deg);
}

#floating-mascot-container img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0px 12px 20px rgba(213, 63, 140, 0.45));
    transform-origin: bottom center;
}

/* کارٹون اینٹری اینیمیشن */
@keyframes mascotFlyIn {
    0% {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(2.8) rotate(-15deg);
        opacity: 0;
    }
    60% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
    }
    100% {
        top: auto;
        left: auto;
        bottom: 20px;
        right: 20px;
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* کارٹون لائیو موشن (Squash & Stretch) */
@keyframes realCartoonMotion {
    0%, 100% {
        transform: translateY(0) scale(1, 1) rotate(0deg);
    }
    30% {
        transform: translateY(-10px) scale(0.97, 1.03) rotate(-2deg);
    }
    60% {
        transform: translateY(-3px) scale(1.02, 0.98) rotate(2deg);
    }
}

/* ویلکم چیٹ ببل (Royal Spa Theme) */
#welcome-bubble {
    position: fixed;
    bottom: 135px;
    right: 25px;
    background: #ffffff;
    color: #111111;
    padding: 10px 16px;
    border-radius: 18px 18px 4px 18px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.35);
    font-size: 12px;
    font-weight: bold;
    z-index: 99998;
    opacity: 0;
    transform: translateY(15px) scale(0.9);
    animation: bubblePop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.6s forwards;
    border-right: 4px solid #d53f8c;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

@keyframes bubblePop {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ================= VIP CHATBOT STYLES ================= */
#chat-widget-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #e91e63, #daa520);
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5);
    z-index: 99999;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

#chat-widget-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(233, 30, 99, 0.7);
}

#chat-box {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 360px;
    max-width: 88vw;
    height: 500px;
    background: #191016;
    border: 1px solid #d53f8c;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0,0,0,0.8);
    z-index: 99999;
    overflow: hidden;
    transition: all 0.3s ease;
}

.chat-hidden { display: none !important; }

.chat-header {
    background: linear-gradient(135deg, #2b1422, #0e070c);
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(213, 63, 140, 0.3);
    color: #ffffff;
}

.header-info { display: flex; align-items: center; gap: 10px; }
.avatar {
    width: 38px; 
    height: 38px;
    background: linear-gradient(135deg, #e91e63, #daa520);
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
}

.chat-body {
    flex: 1;
    padding: 14px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #140d12;
}

.msg-bot {
    background: #24141e;
    color: #f1f1f1;
    padding: 12px;
    border-radius: 12px 12px 12px 2px;
    font-size: 12px;
    line-height: 1.5;
    border-left: 3px solid #d53f8c;
}

.msg-user {
    background: linear-gradient(135deg, #e91e63, #daa520);
    color: #ffffff;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 12px 12px 2px 12px;
    font-size: 12px;
    align-self: flex-end;
}

.btn-group { 
    display: flex; 
    flex-direction: column; 
    gap: 6px; 
    margin-top: 8px; 
}

.action-btn {
    background: #24141e;
    color: #ffffff;
    border: 1px solid #d53f8c;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease;
}

.action-btn:hover { 
    background: linear-gradient(135deg, #e91e63, #daa520); 
    color: #ffffff; 
    font-weight: 600; 
}

/* ================= REVIEWS SMOOTH MARQUEE TRACK ================= */
@keyframes reviewScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-marquee-track {
    display: flex;
    width: max-content;
    animation: reviewScroll 35s linear infinite;
}

.review-marquee-track:hover {
    animation-play-state: paused;
}