/* ========================================
   SprząTanio - Landing Page Styles
   Colors: Light Pink (#f8d0e0) + Light Blue (#c8e6f5)
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
    --pink-light: #fce4ef;
    --pink: #f0a8c8;
    --pink-dark: #d87aa8;
    --blue-light: #e0f0fa;
    --blue: #7eb8db;
    --blue-dark: #4a8db8;
    --text-dark: #3a3a5c;
    --text-medium: #5e5e7e;
    --text-light: #8888a8;
    --white: #ffffff;
    --gradient-main: linear-gradient(135deg, #fce4ef 0%, #e8d4f0 30%, #d4e4f8 70%, #c8eaf8 100%);
    --gradient-hero: linear-gradient(180deg, #fde8f0 0%, #ecdaf4 35%, #dbe6fa 65%, #c8eefb 100%);
    --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(240,248,255,0.85) 100%);
    --shadow-soft: 0 4px 30px rgba(120, 140, 190, 0.12);
    --shadow-hover: 0 12px 40px rgba(120, 140, 190, 0.22);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: repeating-linear-gradient(
        165deg,
        #f4d2e6 0px,
        #edd0e8 150px,
        #e6d4f0 300px,
        #dbe6fa 450px,
        #c8eefb 600px,
        #dbe6fa 750px,
        #e6d4f0 900px,
        #edd0e8 1050px,
        #f4d2e6 1200px
    );
    min-height: 100vh;
}

/* ---------- Bubble Canvas ---------- */
#bubbleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
}

/* ---------- Container ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Typography ---------- */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--blue));
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 60px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink) 0%, var(--blue) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(200, 140, 180, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 140, 180, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.6);
    color: var(--text-dark);
    border: 2px solid rgba(200, 180, 210, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    border-color: rgba(200, 180, 210, 0.5);
}

.btn-small {
    padding: 10px 28px;
    font-size: 0.9rem;
}

/* ---------- Navigation ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(120, 140, 190, 0.1);
    padding: 8px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 45px;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
    height: 38px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 400;
    padding: 8px 18px;
    border-radius: 50px;
    transition: all var(--transition);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.6);
    color: var(--blue-dark);
}

.nav-link.nav-cta {
    background: linear-gradient(135deg, var(--pink) 0%, var(--blue) 100%);
    color: var(--white);
    font-weight: 500;
}

.nav-link.nav-cta:hover {
    box-shadow: 0 4px 15px rgba(200, 140, 180, 0.4);
    transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    width: min(420px, 80vw);
    margin-bottom: 32px;
    filter: drop-shadow(0 8px 30px rgba(160, 140, 200, 0.15));
    animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--blue-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-medium);
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 28px;
    height: 28px;
    border-right: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
    opacity: 0.5;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
    50% { transform: rotate(45deg) translateY(8px); opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- Sparkle Background ---------- */
.hero-sparkles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-sparkles::before,
.hero-sparkles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}

.hero-sparkles::before {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(248, 208, 224, 0.3) 0%, transparent 70%);
    top: 10%;
    left: -5%;
    animation: sparkleFloat 8s ease-in-out infinite;
}

.hero-sparkles::after {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(200, 230, 245, 0.3) 0%, transparent 70%);
    bottom: 10%;
    right: -5%;
    animation: sparkleFloat 10s ease-in-out infinite reverse;
}

@keyframes sparkleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

/* ---------- Why Us Section ---------- */
.why-us {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius);
    padding: 48px 32px 40px;
    text-align: center;
    transition: all var(--transition);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(30px);
    animation: revealCard 0.6s ease-out forwards;
}

.feature-card:nth-child(2) { animation-delay: 0.15s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes revealCard {
    to { opacity: 1; transform: translateY(0); }
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(200, 180, 220, 0.4);
}

.feature-icon {
    width: 160px;
    height: 160px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(100, 140, 200, 0.15));
    transition: var(--transition);
}

.feature-card:hover .feature-icon img {
    transform: scale(1.08);
}

/* Icons already include text labels, so hide duplicate h3 visually */
.feature-card h3 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.feature-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
}

/* ---------- Services Section ---------- */
.services {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius);
    padding: 40px 28px 36px;
    transition: all var(--transition);
    box-shadow: var(--shadow-soft);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: var(--blue-dark);
    transition: var(--transition);
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--blue-light) 100%);
    border-radius: 16px;
    padding: 14px;
}

.service-card:hover .service-icon {
    color: var(--pink-dark);
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--pink-light) 100%);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
}

.service-cta-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* ---------- About / Steps Section ---------- */
.about {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.step-card {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius);
    padding: 44px 32px 36px;
    text-align: center;
    flex: 1;
    max-width: 280px;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition);
    position: relative;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink) 0%, var(--blue) 100%);
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(180, 140, 200, 0.3);
}

.step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    font-weight: 300;
}

.step-connector {
    width: 60px;
    flex-shrink: 0;
    color: var(--blue);
    opacity: 0.4;
}

.step-connector svg {
    width: 100%;
}

/* ---------- Contact Section ---------- */
.contact {
    padding: 100px 0 80px;
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius);
    padding: 44px 24px 36px;
    transition: all var(--transition);
    box-shadow: var(--shadow-soft);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(200, 180, 220, 0.4);
}

.contact-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(100, 140, 200, 0.15));
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    font-weight: 400;
}

/* ---------- Footer ---------- */
.footer {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 8px;
}

.footer-logo p {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-size: 0.9rem;
    font-weight: 400;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--blue-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(200, 200, 220, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 300;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1024px) {
    .features-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        flex-wrap: wrap;
    }

    .step-connector {
        display: none;
    }

    .step-card {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    /* Nav Mobile */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        padding: 100px 32px 40px;
        gap: 8px;
        transition: right 0.4s ease;
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1rem;
        padding: 12px 20px;
        width: 100%;
    }

    /* Grid Adjustments */
    .features-grid,
    .services-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-card {
        max-width: 100%;
        width: 100%;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    /* Hero */
    .hero-logo {
        width: min(300px, 75vw);
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .section-subtitle {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .feature-card,
    .service-card,
    .contact-card {
        padding: 32px 24px 28px;
    }
}

/* ---------- Scroll Animations ---------- */
.why-us,
.services,
.about,
.contact {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.why-us.visible,
.services.visible,
.gallery.visible,
.wycena.visible,
.about.visible,
.contact.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ========================================
   Wycena / Form Wizard Section
   ======================================== */

.wycena {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.form-wizard {
    max-width: 680px;
    margin: 48px auto 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(240,248,255,0.9) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(255,255,255,0.7);
    overflow: hidden;
    min-height: 360px;
}

.wizard-service-selector {
    padding: 52px 44px;
    text-align: center;
}

.wizard-prompt {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    color: var(--text-dark);
    margin-bottom: 36px;
    line-height: 1.4;
}

.service-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.service-type-card {
    background: rgba(255,255,255,0.65);
    border: 2px solid rgba(240,168,200,0.25);
    border-radius: var(--radius-sm);
    padding: 28px 14px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
}

.service-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--pink);
    background: rgba(255,255,255,0.95);
}

.stc-icon {
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 4px;
}

.service-type-card h4 {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.88rem;
    line-height: 1.3;
    margin: 0;
}

.service-type-card p {
    font-size: 0.74rem;
    color: var(--text-medium);
    line-height: 1.4;
    margin: 0;
}

#wQuestionArea {
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.wizard-header {
    padding: 18px 32px 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(240,168,200,0.18);
    flex-shrink: 0;
}

.wizard-back-btn {
    background: none;
    border: none;
    color: var(--text-medium);
    font-size: 0.82rem;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.wizard-back-btn:hover {
    background: rgba(240,168,200,0.12);
    color: var(--text-dark);
}

.wizard-progress {
    flex: 1;
    height: 5px;
    background: rgba(240,168,200,0.18);
    border-radius: 10px;
    overflow: hidden;
}

.wizard-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--pink), var(--blue));
    border-radius: 10px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard-step-count {
    font-size: 0.75rem;
    color: var(--text-light);
    white-space: nowrap;
    min-width: 44px;
    text-align: right;
    font-family: 'Poppins', sans-serif;
}

.wizard-question-slide {
    flex: 1;
    padding: 36px 40px 20px;
}

.question-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.4;
}

.optional-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    color: var(--text-light);
    font-style: italic;
    font-weight: 400;
}

.question-hint {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 6px;
    font-style: italic;
    line-height: 1.5;
}

.question-input {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid rgba(240,168,200,0.3);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.8);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
    outline: none;
    margin-top: 20px;
    display: block;
}

.question-input:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(240,168,200,0.18);
    background: rgba(255,255,255,0.95);
}

.question-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.question-input-wrapper .question-input {
    margin-top: 0;
    padding-right: 52px;
}

.question-input-suffix {
    position: absolute;
    right: 16px;
    color: var(--text-light);
    font-size: 0.9rem;
    pointer-events: none;
    font-family: 'Poppins', sans-serif;
}

textarea.question-input {
    min-height: 90px;
    resize: vertical;
}

.radio-options {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 20px;
}

.radio-option {
    background: rgba(255,255,255,0.65);
    border: 2px solid rgba(240,168,200,0.22);
    border-radius: var(--radius-sm);
    padding: 13px 18px;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 0.93rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.radio-option::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(240,168,200,0.45);
    flex-shrink: 0;
    transition: var(--transition);
}

.radio-option:hover {
    border-color: var(--pink);
    background: rgba(255,255,255,0.9);
    transform: translateX(4px);
}

.radio-option.selected {
    border-color: var(--pink);
    background: rgba(240,168,200,0.1);
}

.radio-option.selected::before {
    background: var(--pink);
    border-color: var(--pink);
    box-shadow: inset 0 0 0 3px white;
}

.checkbox-options {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 20px;
}

.checkbox-option {
    background: rgba(255,255,255,0.65);
    border: 2px solid rgba(240,168,200,0.22);
    border-radius: 30px;
    padding: 9px 18px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    color: var(--text-dark);
}

.checkbox-option:hover {
    border-color: var(--pink);
    background: rgba(255,255,255,0.9);
}

.checkbox-option.selected {
    border-color: var(--pink);
    background: rgba(240,168,200,0.15);
    color: var(--pink-dark);
    font-weight: 500;
}

.scale-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.scale-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--text-light);
    padding: 0 2px;
    font-family: 'Poppins', sans-serif;
}

.scale-buttons {
    display: flex;
    gap: 8px;
}

.scale-btn {
    flex: 1;
    padding: 16px 0;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(240,168,200,0.22);
    background: rgba(255,255,255,0.65);
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-medium);
    cursor: pointer;
    transition: var(--transition);
}

.scale-btn:hover {
    border-color: var(--pink);
    background: rgba(255,255,255,0.9);
    color: var(--text-dark);
}

.scale-btn.selected {
    border-color: var(--pink);
    background: linear-gradient(135deg, rgba(240,168,200,0.18), rgba(126,184,219,0.18));
    color: var(--text-dark);
}

.radio-input-extra {
    margin-top: 12px;
    padding: 14px 16px;
    background: rgba(240,168,200,0.07);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(240,168,200,0.2);
}

.radio-input-extra label {
    font-size: 0.8rem;
    color: var(--text-medium);
    display: block;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

.radio-input-extra .question-input {
    margin-top: 0;
    font-size: 0.9rem;
    padding: 10px 14px;
}

.wizard-footer {
    padding: 18px 40px 32px;
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
}

.wizard-footer .btn {
    min-width: 140px;
}

.wizard-submit-area {
    padding: 56px 44px;
    text-align: center;
}

.submit-icon {
    font-size: 3.2rem;
    margin-bottom: 18px;
}

.wizard-submit-area h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.wizard-submit-area > p {
    color: var(--text-medium);
    font-size: 0.92rem;
    max-width: 420px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.submit-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 360px;
    margin: 0 auto 20px;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 15px 28px;
    border-radius: var(--radius-sm);
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #20b95a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.28);
}

.btn-email-outline {
    background: transparent;
    color: var(--text-dark);
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(240,168,200,0.4);
    font-family: 'Poppins', sans-serif;
    font-size: 0.93rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-email-outline:hover {
    border-color: var(--pink);
    background: rgba(240,168,200,0.07);
    transform: translateY(-2px);
}

.submit-note {
    font-size: 0.77rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.wizard-restart {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 0.8rem;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    text-decoration: underline;
    padding: 4px;
}

.wizard-restart:hover {
    color: var(--text-medium);
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(32px); }
    to   { opacity: 1; transform: translateX(0); }
}

.slide-enter {
    animation: slideInRight 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-8px); }
    40%       { transform: translateX(8px); }
    60%       { transform: translateX(-5px); }
    80%       { transform: translateX(5px); }
}

@media (max-width: 640px) {
    .wizard-service-selector { padding: 32px 20px; }
    .service-type-grid { grid-template-columns: 1fr; }
    .wizard-header { padding: 14px 20px 10px; }
    .wizard-question-slide { padding: 26px 22px 16px; }
    .question-label { font-size: 1.1rem; }
    .wizard-footer { padding: 14px 22px 26px; }
    .wizard-submit-area { padding: 36px 22px; }
    .scale-btn { padding: 12px 0; font-size: 0.95rem; }
}


/* Gallery overlay */
.gallery-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 35, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-overlay.active {
    display: flex;
}

.gallery-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 2.2rem;
    cursor: pointer;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.25s ease;
    line-height: 1;
}

.gallery-close:hover {
    background: rgba(255,255,255,0.12);
    color: white;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    font-size: 1.6rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.gallery-arrow:hover {
    background: rgba(255,255,255,0.18);
    color: white;
}

.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }

.gallery-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px 0;
    width: 100%;
    min-height: 0;
}

.gallery-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
    transition: opacity 0.3s ease;
}

.gallery-img.loading {
    opacity: 0.3;
}

.gallery-bottom {
    padding: 16px 20px 20px;
    text-align: center;
    width: 100%;
    flex-shrink: 0;
}

.gallery-title {
    color: rgba(255,255,255,0.9);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.gallery-counter {
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.gallery-thumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.45;
    transition: 0.25s ease;
    border: 2px solid transparent;
}

.gallery-thumb:hover {
    opacity: 0.8;
}

.gallery-thumb.active {
    opacity: 1;
    border-color: var(--pink);
}

/* Responsive */
@media (max-width: 640px) {
    .gallery-content { padding: 56px 16px 0; }
    .gallery-arrow { width: 38px; height: 38px; font-size: 1.2rem; }
    .gallery-prev { left: 8px; }
    .gallery-next { right: 8px; }
    .gallery-img { max-height: 55vh; border-radius: 8px; }
    .gallery-thumb { width: 40px; height: 40px; }
}


/* ========================================
   Standalone Gallery Section
   ======================================== */

.gallery {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.gallery-grid-item {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.gallery-grid-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.gallery-grid-item img,
.gallery-grid-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-grid-item:hover img,
.gallery-grid-item:hover video {
    transform: scale(1.06);
}

.gallery-grid-item.gallery-hidden {
    display: none;
}

.gallery-play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.gallery-play-icon::after {
    content: '';
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    transition: 0.25s ease;
}

.gallery-grid-item:hover .gallery-play-icon::after {
    background-color: rgba(0,0,0,0.7);
    transform: scale(1.1);
}

.gallery-show-more {
    text-align: center;
    margin-top: 32px;
}

.gallery-show-more.hidden {
    display: none;
}

.gallery-video {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
    outline: none;
}

@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .gallery-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 32px; }
}

/* ========================================
   Promo Bubble
   ======================================== */

.promo-bubble {
    position: fixed;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    z-index: 999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.5) 0%, rgba(252,228,239,0.35) 30%, rgba(240,168,200,0.2) 60%, rgba(200,234,251,0.15) 100%);
    border: 1.5px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    box-shadow: 0 0 20px rgba(240,168,200,0.35), inset 0 0 20px rgba(255,255,255,0.15);
    animation: promoPulse 3s ease-in-out infinite;
    will-change: left, top;
    user-select: none;
    -webkit-user-select: none;
    transition: transform 0.15s ease;
}

.promo-bubble::before {
    content: '';
    position: absolute;
    top: 14%;
    left: 20%;
    width: 35%;
    height: 25%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.7) 0%, transparent 70%);
    pointer-events: none;
}

.promo-bubble::after {
    content: '';
    position: absolute;
    bottom: 18%;
    right: 15%;
    width: 15%;
    height: 12%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.4) 0%, transparent 70%);
    pointer-events: none;
}

.promo-bubble:hover {
    transform: scale(1.08);
}

.promo-bubble:active {
    transform: scale(0.95);
}

.promo-bubble-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pink-dark);
    text-shadow: 0 1px 4px rgba(255,255,255,0.6);
    pointer-events: none;
    position: relative;
    z-index: 1;
}

@keyframes promoPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(240,168,200,0.35), inset 0 0 20px rgba(255,255,255,0.15); }
    50% { box-shadow: 0 0 35px rgba(240,168,200,0.55), 0 0 60px rgba(200,234,251,0.2), inset 0 0 20px rgba(255,255,255,0.2); }
}

/* Promo banner in contact */
.promo-banner {
    background: linear-gradient(135deg, var(--pink-light), var(--blue-light));
    border: 2px solid rgba(240,168,200,0.35);
    border-radius: var(--radius-sm);
    padding: 16px 28px;
    margin-bottom: 32px;
    text-align: center;
    animation: fadeInUp 0.5s ease forwards;
}

.promo-banner span {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--pink-dark);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
    .promo-bubble { width: 80px; height: 80px; }
    .promo-bubble-text { font-size: 1.15rem; }
}
