/* ========================================== */
/* RESET & BASE STYLES                         */
/* ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

@font-face {
    font-family: "KNMaiyuan-Regular";
    src: url("./KNMaiyuan-Regular.ttf") format("woff2"),
         url("./KNMaiyuan-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Vividly-Regular";
    src: url("./Vividly-Regular.otf") format("woff2"),
         url("./Vividly-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Dreamy Notes Script";
    src: url("./Dreamy\ Notes\ Script.otf") format("woff2"),
         url("./Dreamy\ Notes\ Script.otf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #fff5fa;
    font-family: "Vividly-Regular", sans-serif;
    color: #5b1133;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
    padding-top: 20px;
}

/* ============================================================ */
/* ===== 📱 MOBILE SCREEN (YOUR ORIGINAL DESIGN) 📱 ===== */
/* ============================================================ */
.mobile-only.faq-page {
    width: 100%;
    max-width: 450px;
    padding: 20px 20px 80px;
    position: relative;
    background-color: #fff5fa;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-only .bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: -1;
    pointer-events: none;
}
.mobile-only .blob-1 { top: -20px; left: -80px; width: 300px; height: 300px; background: #ffffff; }
.mobile-only .blob-2 { top: 300px; right: -100px; width: 250px; height: 250px; background: #ffe8f3; }
.mobile-only .blob-3 { bottom: 100px; left: -60px; width: 300px; height: 300px; background: #ffffff; }

.mobile-only .back-btn {
    display: inline-block;
    margin-bottom: 25px;
    color: #5b1133;
    font-size: 13px;
    text-decoration: none;
    border: 1.5px solid #ffadd6;
    padding: 8px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.6);
    transition: all 0.4s ease;
}
.mobile-only .back-btn:hover {
    background: #ffe8f3;
    transform: translateX(-5px);
}

.mobile-only .faq-hero {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.mobile-only .faq-title {
    font-family: "Dreamy Notes Script", cursive;
    font-size: 27px;
    line-height: 1.2;
    color: #5b1133;
    margin-bottom: 15px;
}

.mobile-only .faq-subtitle {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 25px;
    padding: 0 10px;
}

.mobile-only .hero-circle {
    display: inline-block;
    padding: 12px 24px;
    border: 1.5px solid #ffadd6;
    border-radius: 40px;
    background: #ffffff;
    font-family: "Dreamy Notes Script", cursive;
    font-size: 12px;
    box-shadow: 0 4px 15px rgba(255, 173, 214, 0.2);
}

.mobile-only .faq-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.mobile-only .faq-item {
    background: #ffffff;
    border: 1.5px solid #ffadd6;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 173, 214, 0.1);
}

.mobile-only .faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 173, 214, 0.2);
}

.mobile-only .faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: "Vividly-Regular", sans-serif;
    font-size: 15px;
    color: #5b1133;
    text-align: left;
    transition: background 0.3s ease;
}

.mobile-only .faq-question:hover {
    background: #fff5fa;
}

.mobile-only .faq-icon {
    font-size: 22px;
    font-weight: 300;
    color: #ffadd6;
    transition: transform 0.3s ease;
    margin-left: 15px;
    flex-shrink: 0;
}

.mobile-only .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
    padding: 0 20px;
    background: #fff5fa;
}

.mobile-only .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
}

.mobile-only .faq-answer p {
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.8;
    padding-top: 5px;
    border-top: 1px solid #ffe8f3;
}

.mobile-only .faq-contact {
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    border: 1.5px solid #ffadd6;
    border-radius: 30px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.mobile-only .script-heading {
    font-family: "Dreamy Notes Script", cursive;
    font-size: 21px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.mobile-only .contact-text {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 20px;
}

.mobile-only .contact-btn {
    display: inline-block;
    background: #ffadd6;
    border: none;
    border-radius: 30px;
    padding: 12px 35px;
    font-family: "Dreamy Notes Script", cursive;
    font-size: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 173, 214, 0.4);
}

.mobile-only .contact-btn:hover {
    transform: scale(1.05);
    background: #ffdcee;
    box-shadow: 0 6px 25px rgba(91, 17, 51, 0.3);
}

.mobile-only .footer-section {
    text-align: center;
    padding-top: 10px;
}

.mobile-only .footer-circle {
    width: 90px;
    height: 90px;
    background-color: #ffffff;
    border-radius: 50%;
    border: 1.5px solid #ffadd6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.5s ease;
    cursor: pointer;
}

.mobile-only .footer-circle:hover {
    transform: rotate(-5deg) scale(1.05);
    background: #fff0f5;
}

.mobile-only .text-wrapper-56 {
    font-family: "Dreamy Notes Script", cursive;
    font-size: 18px;
    color: #5b1133;
}

/* ============================================================ */
/* ===== 🖥️ BRAND NEW LAPTOP/TABLET DESIGN 🖥️ ===== */
/* ============================================================ */

/* Hide laptop version on phones */
@media (max-width: 767px) {
    .desktop-wrapper { display: none !important; }
}

/* Show laptop version on tablets and laptops */
@media (min-width: 768px) {
    .mobile-only { display: none !important; }
    
    body {
        background: #fff0f6;
        display: flex;
        justify-content: center;
        padding: 40px;
    }

    .desktop-wrapper {
        max-width: 1200px;
        width: 100%;
        background: #fff5fa;
        border-radius: 40px;
        box-shadow: 0 20px 60px rgba(255, 173, 214, 0.1);
        overflow: hidden;
        padding: 40px 50px 50px 50px;
        font-family: "Single Day", "Vividly-Regular", sans-serif;
        color: #5b1133;
    }

    /* ===== HEADER ===== */
    .d-header {
        display: flex;
        justify-content: flex-start;
        padding-bottom: 20px;
        border-bottom: 1px solid #ffadd6;
        margin-bottom: 40px;
    }
    .d-back-btn {
        font-family: "Vividly-Regular", Helvetica;
        font-size: 14px;
        color: #5b1133;
        border: 1.5px solid #ffadd6;
        padding: 10px 25px;
        border-radius: 30px;
        background: #ffffff;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    .d-back-btn:hover { background: #ffe8f3; transform: scale(1.05); }

    /* ===== HERO ===== */
    .d-hero {
        text-align: center;
        margin-bottom: 40px;
    }
    .d-hero-content h1 {
        font-family: "Dreamy Notes Script", cursive;
        font-size: 48px;
        color: #5b1133;
        margin: 0 0 15px 0;
        line-height: 1.2;
    }
    .d-hero-content p {
        font-family: "Vividly-Regular", Helvetica;
        font-size: 18px;
        color: #5b1133;
        line-height: 1.6;
        max-width: 600px;
        margin: 0 auto 20px;
    }
    .d-hero-badge {
        display: inline-block;
        padding: 12px 30px;
        border: 1.5px solid #ffadd6;
        border-radius: 40px;
        background: #ffffff;
        font-family: "Dreamy Notes Script", cursive;
        font-size: 14px;
        box-shadow: 0 4px 15px rgba(255, 173, 214, 0.2);
    }

    /* ===== FAQ GRID ===== */
    .d-faq-section { margin-bottom: 40px; }
    .d-faq-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    .d-faq-card {
        background: #ffffff;
        border: 1.5px solid #ffadd6;
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(255, 173, 214, 0.1);
    }
    .d-faq-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 173, 214, 0.2);
    }
    .d-faq-question {
        width: 100%;
        background: transparent;
        border: none;
        padding: 20px 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-family: "Vividly-Regular", sans-serif;
        font-size: 16px;
        color: #5b1133;
        text-align: left;
        transition: background 0.3s ease;
    }
    .d-faq-question:hover { background: #fff5fa; }
    .d-faq-icon {
        font-size: 24px;
        font-weight: 300;
        color: #ffadd6;
        transition: transform 0.3s ease;
        margin-left: 15px;
        flex-shrink: 0;
    }
    .d-faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out, padding 0.3s ease;
        padding: 0 25px;
        background: #fff5fa;
    }
    .d-faq-card.active .d-faq-answer {
        padding: 0 25px 25px 25px;
    }
    .d-faq-answer p {
        font-size: 14px;
        line-height: 1.7;
        opacity: 0.8;
        padding-top: 5px;
        border-top: 1px solid #ffe8f3;
    }

    /* ===== CONTACT CTA ===== */
    .d-cta-section {
        margin: 0 auto 40px;
        max-width: 700px;
    }
    .d-cta-box {
        background: rgba(255, 255, 255, 0.5);
        border: 1.5px solid #ffadd6;
        border-radius: 30px;
        padding: 40px 30px;
        text-align: center;
    }
    .d-script {
        font-family: "Dreamy Notes Script", cursive;
        font-size: 24px;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    .d-cta-box p {
        font-size: 15px;
        line-height: 1.6;
        opacity: 0.8;
        margin-bottom: 25px;
    }
    .d-cta-btn {
        display: inline-block;
        background: #ffadd6;
        border: none;
        border-radius: 30px;
        padding: 14px 40px;
        font-family: "Dreamy Notes Script", cursive;
        font-size: 14px;
        color: #ffffff;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(255, 173, 214, 0.4);
    }
    .d-cta-btn:hover {
        transform: scale(1.05);
        background: #ffdcee;
        box-shadow: 0 6px 25px rgba(91, 17, 51, 0.3);
    }

    /* ===== FOOTER ===== */
    .d-footer {
        text-align: center;
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid #ffadd6;
    }
    .d-footer-circle {
        width: 100px;
        height: 100px;
        background-color: #ffffff;
        border-radius: 50%;
        border: 1.5px solid #ffadd6;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        transition: all 0.5s ease;
        cursor: pointer;
    }
    .d-footer-circle:hover {
        transform: rotate(-5deg) scale(1.05);
        background: #fff0f5;
    }
    .d-footer-circle span {
        font-family: "Dreamy Notes Script", cursive;
        font-size: 20px;
        color: #5b1133;
        line-height: 1.3;
        text-align: center;
    }
}