/* ========================================== */
/* 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;
    text-align: center;
    padding-top: 20px;
}

/* ============================================================ */
/* ===== 📱 MOBILE SCREEN (YOUR ORIGINAL DESIGN) 📱 ===== */
/* ============================================================ */
.mobile-only.contact-page {
    width: 100%;
    max-width: 450px;
    padding: 20px 20px 60px;
    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: 200px; right: -80px; width: 200px; height: 200px; background: #ffe8f3; }
.mobile-only .blob-3 { top: 700px; left: -60px; width: 350px; height: 350px; background: #ffffff; }
.mobile-only .blob-4 { bottom: 100px; right: -80px; width: 250px; height: 250px; background: #ffe8f3; }

.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 .contact-hero {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.mobile-only .contact-title {
    font-family: "Dreamy Notes Script", cursive;
    font-size: 27px;
    line-height: 1.1;
    color: #5b1133;
    margin-bottom: 15px;
}

.mobile-only .contact-subtitle {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 25px;
    padding: 0 15px;
}

.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 .form-container {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid #ffadd6;
    border-radius: 30px;
    padding: 30px 25px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(255, 173, 214, 0.1);
    text-align: center;
}

.mobile-only .script-heading {
    font-family: "Dreamy Notes Script", cursive;
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.mobile-only .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-only .form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.mobile-only .form-group label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

.mobile-only .form-group input, 
.mobile-only .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #ffe8f3;
    border-radius: 18px;
    font-family: "Vividly-Regular", sans-serif;
    font-size: 14px;
    background: #fff5fa;
    color: #5b1133;
    transition: all 0.3s ease;
    outline: none;
}

.mobile-only .form-group input::placeholder, 
.mobile-only .form-group textarea::placeholder {
    color: #c9a4b4;
    opacity: 0.6;
}

.mobile-only .form-group input:focus, 
.mobile-only .form-group textarea:focus {
    border-color: #ffadd6;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 173, 214, 0.1);
}

.mobile-only .form-group textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}

.mobile-only .submit-btn {
    background: #ffadd6;
    border: none;
    border-radius: 30px;
    padding: 16px;
    font-family: "Dreamy Notes Script", cursive;
    font-size: 11px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 173, 214, 0.4);
    width: 100%;
    margin-top: 5px;
}

.mobile-only .submit-btn:hover {
    transform: translateY(-3px);
    background: #ffdcee;
    box-shadow: 0 8px 25px rgba(91, 17, 51, 0.3);
}

.mobile-only .hours-section {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.mobile-only .hours-card {
    background: #ffffff;
    border: 1.5px solid #ffadd6;
    border-radius: 20px;
    padding: 20px 25px;
    box-shadow: 0 4px 15px rgba(255, 173, 214, 0.1);
}

.mobile-only .hour-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    opacity: 0.85;
    border-bottom: 1px solid #ffe8f3;
}

.mobile-only .hour-row:last-child {
    border-bottom: none;
}

.mobile-only .contact-details {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

.mobile-only .detail-card {
    background: #ffffff;
    border: 1.5px solid #ffadd6;
    border-radius: 20px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(255, 173, 214, 0.05);
}

.mobile-only .detail-card:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 10px 30px rgba(255, 173, 214, 0.15);
    border-color: #ff8ec4;
}

.mobile-only .detail-icon {
    font-size: 26px;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.mobile-only .detail-text {
    text-align: left;
}

.mobile-only .detail-text h4 {
    font-family: "Dreamy Notes Script", cursive;
    font-size: 12px;
    margin-bottom: 2px;
}

.mobile-only .detail-text p {
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.5;
}

.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 15px;
    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;
}

.mobile-only .footer-text {
    font-size: 12px;
    opacity: 0.6;
    line-height: 1.5;
}

/* ============================================================ */
/* ===== SCROLL ANIMATIONS (MOBILE) ===== */
/* ============================================================ */
.mobile-only .anim-sky {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(2px);
    transition: all 2s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-only .anim-sky.revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.mobile-only .anim-ripple {
    opacity: 0;
    transform: translateX(-20px);
    letter-spacing: -1px;
    transition: all 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-only .anim-ripple.revealed {
    opacity: 1;
    transform: translateX(0);
    letter-spacing: normal;
}

.mobile-only .anim-cloud {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
    transition: all 2.4s ease;
}
.mobile-only .anim-cloud.revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.mobile-only .anim-rise {
    opacity: 0;
    transform: translateY(40px) rotate(-1deg);
    transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
}
.mobile-only .anim-rise.revealed {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

.mobile-only .anim-wind {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 2.6s ease-out;
}
.mobile-only .anim-wind.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================ */
/* ===== 🖥️ 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 10px 0;
        line-height: 1.1;
    }
    .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);
    }

    /* ===== MAIN LAYOUT ===== */
    .d-main-layout {
        display: flex;
        gap: 50px;
        align-items: flex-start;
    }

    /* ===== LEFT: FORM ===== */
    .d-form-col {
        flex: 1;
    }
    .d-form-box {
        background: #ffffff;
        border: 1.5px solid #ffadd6;
        border-radius: 30px;
        padding: 35px 30px;
        box-shadow: 0 8px 25px rgba(255, 173, 214, 0.1);
        text-align: center;
    }
    .d-script {
        font-family: "Dreamy Notes Script", cursive;
        font-size: 22px;
        margin-bottom: 25px;
        line-height: 1.2;
    }
    .d-contact-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .d-form-group {
        display: flex;
        flex-direction: column;
        text-align: left;
    }
    .d-form-group label {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 8px;
        opacity: 0.8;
        letter-spacing: 0.5px;
    }
    .d-form-group input, 
    .d-form-group textarea {
        width: 100%;
        padding: 14px 16px;
        border: 1.5px solid #ffe8f3;
        border-radius: 18px;
        font-family: "Vividly-Regular", sans-serif;
        font-size: 15px;
        background: #fff5fa;
        color: #5b1133;
        transition: all 0.3s ease;
        outline: none;
    }
    .d-form-group input:focus, 
    .d-form-group textarea:focus {
        border-color: #ffadd6;
        background: #ffffff;
        box-shadow: 0 0 0 4px rgba(255, 173, 214, 0.1);
    }
    .d-form-group textarea {
        resize: vertical;
        min-height: 120px;
        line-height: 1.6;
    }
    .d-submit-btn {
        background: #ffadd6;
        border: none;
        border-radius: 30px;
        padding: 16px;
        font-family: "Dreamy Notes Script", cursive;
        font-size: 14px;
        color: #ffffff;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(255, 173, 214, 0.4);
        width: 100%;
        margin-top: 5px;
    }
    .d-submit-btn:hover {
        transform: translateY(-3px);
        background: #ffdcee;
        box-shadow: 0 8px 25px rgba(91, 17, 51, 0.3);
    }

    /* ===== RIGHT: INFO ===== */
    .d-info-col {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .d-info-box {
        background: #ffffff;
        border: 1.5px solid #ffadd6;
        border-radius: 30px;
        padding: 30px 25px;
        box-shadow: 0 4px 15px rgba(255, 173, 214, 0.1);
        text-align: center;
    }
    .d-hours-grid {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }
    .d-hour-row {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        font-size: 15px;
        opacity: 0.85;
        border-bottom: 1px solid #ffe8f3;
    }
    .d-hour-row:last-child { border-bottom: none; }

    .d-details-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 15px;
    }
    .d-detail-item {
        background: #fff5fa;
        border: 1px solid #ffadd6;
        border-radius: 20px;
        padding: 16px 20px;
        display: flex;
        align-items: center;
        gap: 18px;
        transition: all 0.4s ease;
    }
    .d-detail-item:hover {
        transform: translateY(-3px) scale(1.01);
        box-shadow: 0 10px 30px rgba(255, 173, 214, 0.15);
        border-color: #ff8ec4;
    }
    .d-icon {
        font-size: 28px;
        width: 40px;
        text-align: center;
        flex-shrink: 0;
    }
    .d-detail-item h4 {
        font-family: "Dreamy Notes Script", cursive;
        font-size: 14px;
        margin-bottom: 2px;
    }
    .d-detail-item p {
        font-size: 14px;
        opacity: 0.7;
        line-height: 1.5;
    }

    /* ===== FOOTER ===== */
    .d-footer {
        text-align: center;
        margin-top: 50px;
        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 15px;
        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;
    }
    .d-footer-text {
        font-size: 14px;
        opacity: 0.6;
        line-height: 1.5;
    }
}