/* =========================================
   1. ZENDOODLE BRAND VARIABLES
   ========================================= */
:root {
    --bg-cream: #FDFBF7;
    --zen-teal: #64B6AC;
    --zen-lavender: #7D7098;
    --zen-peach: #FFDAB9;
    --zen-dark: #554D60;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(100, 182, 172, 0.1);
}

/* =========================================
   2. GLOBAL RESET & TYPOGRAPHY
   ========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--bg-cream);
    color: var(--zen-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Fredoka', sans-serif; color: var(--zen-lavender); margin-bottom: 1rem; }
h1 { font-size: 3.5rem; line-height: 1.1; }
h2 { font-size: 2.5rem; text-align: center; color: var(--zen-teal); margin-top: 4rem; margin-bottom: 2rem; }
p { margin-bottom: 1rem; font-size: 1.05rem; }
a { text-decoration: none; transition: all 0.3s ease; }

/* =========================================
   3. NAVIGATION BAR
   ========================================= */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 5%; background: rgba(253, 251, 247, 0.95);
    position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.brand-logo { height: 60px; width: auto; }
.nav-links a { margin-left: 20px; font-weight: 600; color: var(--zen-dark); }
.nav-links a:hover { color: var(--zen-teal); }
.nav-cta { background: var(--zen-teal); color: white !important; padding: 10px 25px; border-radius: 25px; }
.nav-cta:hover { background: var(--zen-lavender); }

/* =========================================
   4. HERO SECTION & HIGHLIGHTS
   ========================================= */
.hero { text-align: center; padding: 6rem 5% 4rem 5%; max-width: 1000px; margin: 0 auto; position: relative; z-index: 2; }
.hero span { color: var(--zen-teal); }
.hero-highlights { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 2rem; font-weight: 600; color: var(--zen-teal); }
.highlight-item::before { content: "✨"; margin-right: 8px; }

/* =========================================
   5. BUTTON STYLES
   ========================================= */
.btn {
    display: inline-block; padding: 14px 35px; border-radius: 50px;
    font-weight: 700; cursor: pointer; margin: 10px 5px; border: none; font-size: 1rem;
}
.btn-primary { background-color: var(--zen-teal); color: white; box-shadow: 0 5px 15px rgba(100,182,172,0.3); }
.btn-primary:hover { transform: translateY(-3px); background-color: var(--zen-lavender); }
.btn-secondary { border: 2px solid var(--zen-lavender); color: var(--zen-lavender); background: transparent; }
.btn-secondary:hover { background: var(--zen-lavender); color: white; }

/* =========================================
   6. BACKGROUND ANIMATION (LIVELY ART)
   ========================================= */
.blob-container { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; overflow: hidden; }

/* Soft Color Blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.4; animation: float 25s infinite alternate; }
.b1 { top: -10%; left: -10%; width: 500px; height: 500px; background: var(--zen-peach); }
.b2 { bottom: 10%; right: -5%; width: 400px; height: 400px; background: var(--zen-teal); animation-duration: 30s; }

/* Floating Art Icons */
.floating-icon { position: absolute; font-size: 3rem; opacity: 0.3; animation: floatIcon 20s infinite linear; filter: grayscale(30%); }
.i1 { top: 15%; left: 10%; animation-duration: 25s; font-size: 4rem; } /* Cloud */
.i2 { top: 60%; left: 85%; animation-duration: 20s; animation-delay: -5s; } /* Palette */
.i3 { top: 80%; left: 20%; animation-duration: 28s; animation-delay: -10s; } /* Crayon */
.i4 { top: 20%; right: 20%; animation-duration: 35s; } /* Sparkle */

@keyframes float { 0% { transform: translate(0, 0); } 100% { transform: translate(30px, 50px); } }
@keyframes floatIcon { 
    0% { transform: translateY(0) rotate(0deg); } 
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0deg); } 
}

/* =========================================
   7. LAYOUT COMPONENTS
   ========================================= */
.section { padding: 4rem 5%; max-width: 1200px; margin: 0 auto; }
.bg-white { background: white; border-radius: 20px; box-shadow: var(--shadow); }

/* Product Grid */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.product-card {
    background: white; padding: 40px; border-radius: 20px; border: 1px solid #EEE;
    transition: 0.3s; display: flex; flex-direction: column; justify-content: space-between;
}
.product-card:hover { transform: translateY(-5px); border-color: var(--zen-teal); box-shadow: var(--shadow); }
.tag { background: var(--zen-peach); padding: 5px 12px; border-radius: 10px; font-size: 0.85rem; font-weight: bold; display: inline-block; margin-bottom: 15px; }

/* Detail Lists in Products */
.detail-box { text-align: left; margin-top: 15px; font-size: 0.95rem; }
.detail-box h5 { color: var(--zen-teal); margin-top: 15px; margin-bottom: 5px; font-size: 1rem; font-family: 'Fredoka', sans-serif; }
.detail-box ul { padding-left: 20px; margin-bottom: 10px; }
.detail-box li { margin-bottom: 5px; color: var(--zen-dark); }
.sub-text { font-size: 0.9rem; color: #666; margin-top: 5px; }

/* =========================================
   8. FORMS & CONTACT
   ========================================= */
.contact-wrapper { max-width: 600px; margin: 0 auto; text-align: center; }
input, textarea, select {
    width: 100%; padding: 15px; border: 2px solid #EEE; border-radius: 10px; margin-bottom: 15px;
    font-family: inherit; font-size: 1rem; background: white;
}
input:focus, textarea:focus, select:focus { border-color: var(--zen-teal); outline: none; }

/* =========================================
   9. FAQ & ABOUT
   ========================================= */
.about-box { background: white; padding: 3rem; border-radius: 30px; text-align: center; max-width: 800px; margin: 0 auto; box-shadow: var(--shadow); }
details { background: white; margin-bottom: 15px; padding: 20px; border-radius: 15px; cursor: pointer; border: 1px solid #F0F0F0; }
summary { font-weight: 700; color: var(--zen-dark); list-style: none; font-size: 1.1rem; }
summary::-webkit-details-marker { display: none; }
details[open] summary { color: var(--zen-teal); margin-bottom: 10px; }

/* =========================================
   10. FOOTER (UPDATED)
   ========================================= */
footer {
    background: var(--zen-dark); color: white; padding: 4rem 2rem; text-align: center; margin-top: 5rem;
}
.footer-icons {
    display: flex; justify-content: center; gap: 30px; margin-bottom: 20px;
}
.footer-icon-link {
    color: var(--zen-peach); font-size: 1.2rem; font-weight: bold;
    display: flex; flex-direction: column; align-items: center; gap: 5px;
}
.footer-icon-link span { font-size: 1.8rem; }
.footer-icon-link:hover { color: white; transform: scale(1.1); }
.footer-phone { font-size: 1.2rem; font-weight: bold; color: var(--white); margin-bottom: 10px; display: block;}

/* =========================================
   11. LARGE BACKGROUND MASCOT (NEW)
   ========================================= */
.mascot-bg {
    position: absolute;
    width: 600px; /* Large Size */
    height: auto;
    bottom: -5%;   
    right: -5%;
    opacity: 0.15; /* Very faded */
    z-index: -1;   /* Behind text */
    transform: rotate(-10deg);
    pointer-events: none; 
    animation: floatMascot 20s infinite alternate ease-in-out;
}

@keyframes floatMascot {
    0% { transform: translateY(0) rotate(-10deg) scale(1); }
    100% { transform: translateY(-40px) rotate(-5deg) scale(1.05); }
}

@media (max-width: 768px) {
    .mascot-bg {
        width: 350px;
        bottom: 0;
        right: -80px;
        opacity: 0.1;
    }
    h1 { font-size: 2.5rem; }
    .nav-links { display: none; }
    .hero { padding-top: 3rem; }
}
/* --- MULTI-STEP FORM STYLES --- */
.step-container {
    display: none; /* Hidden by default */
    animation: fadeIn 0.5s;
}
.step-container.active {
    display: block; /* Show active step */
}

/* Progress Bar */
.progress-wrapper {
    margin-bottom: 30px;
    background: #eee;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
}
.progress-bar {
    height: 100%;
    background: var(--zen-teal);
    width: 0%;
    transition: width 0.4s ease;
}
.step-indicator {
    text-align: right;
    font-size: 0.9rem;
    color: var(--zen-teal);
    font-weight: bold;
    margin-bottom: 5px;
}

/* Form layout tweaks */
.radio-group label {
    display: block;
    background: #f9fdfd;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
}
.radio-group label:hover {
    border-color: var(--zen-teal);
    background: white;
}
.radio-group input {
    margin-right: 10px;
    width: auto;
}
.hidden { display: none; }