/* ----------------------------------------------------
   CONTACT — MICRO EXPERIENCE
   Apple-style smooth, minimal, conversational
----------------------------------------------------- */

.contact {
    width: 100%;
    padding: 12vh 0 !important;
    background: linear-gradient(145deg, #ffffff, #f5f5f7);
    border: 1px solid rgba(0,0,0,0.10);

    box-shadow:
        inset 0 0 28px rgba(255,255,255,0.60),
        inset 0 6px 26px rgba(0,0,0,0.07),
        0 14px 26px rgba(0,0,0,0.08),
        0 6px 16px rgba(199,199,199,0.35);    position: relative;
    display: flex;
    justify-content: center;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    overflow: hidden;
}

.contact-wrapper {
    width: min(900px, 90%);
    margin: 0 auto;
    text-align: center;
}

/* TITLE */
.contact-question {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 650;
    letter-spacing: -0.03em;
    color: #111;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
    color: #3d3d3d;
    line-height: 1.6;
    max-width: 55ch;
    margin: 0 auto 4rem auto;
    opacity: 0.8;
}

/* ----------------------------------------------------
   STEP 1 — BUTTONS (Apple AirTag style)
----------------------------------------------------- */

.contact-choices {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.contact-choice {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #ffffffcc;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 4px 14px rgba(0,0,0,0.08),
        inset 0 0 12px rgba(255,255,255,0.6);
    border: 1px solid rgba(220,220,220,0.65);
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1d1d1f;
    text-align: center;

    transition: transform .25s ease, box-shadow .25s ease;
}

.contact-choice:hover {
    transform: translateY(-6px);
    box-shadow:
        0 8px 28px rgba(0,0,0,0.12),
        inset 0 0 18px rgba(255,255,255,0.75);
}

.contact-choice.selected {
    border: 2px solid #007aff;
    box-shadow:
        0 0 0 4px rgba(0,122,255,0.15),
        0 8px 28px rgba(0,0,0,0.12),
        inset 0 0 20px rgba(255,255,255,0.8);
    transform: scale(1.08);
}

/* ----------------------------------------------------
   STEP 2 — URGENCY SLIDER
----------------------------------------------------- */

.contact-step-2 {
    margin-top: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s ease;
}

.contact-step-2.visible {
    opacity: 1;
    pointer-events: auto;
}

.contact-urgency-label {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.contact-slider {
    width: 100%;
    appearance: none;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #cfd3da, #a5b0be);
    outline: none;
    cursor: pointer;
}

.contact-slider::-webkit-slider-thumb {
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #007aff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform .25s ease;
}

.contact-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* ----------------------------------------------------
   CTA BUTTON — FINAL STEP
----------------------------------------------------- */

.contact-final {
    margin-top: 3rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s ease;
}

.contact-final.visible {
    opacity: 1;
    pointer-events: auto;
}

.contact-send-button {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 14px;
    background: linear-gradient(180deg, #fff, #f1f1f3);
    border: 1px solid rgba(200,200,200,0.7);
    box-shadow:
        0 6px 24px rgba(0,0,0,0.08),
        inset 0 0 18px rgba(255,255,255,0.7);
    font-size: 1.15rem;
    font-weight: 600;
    color: #1d1d1f;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
}

.contact-send-button:hover {
    transform: translateY(-4px);
    box-shadow:
        0 10px 32px rgba(0,0,0,0.12),
        inset 0 0 26px rgba(255,255,255,0.85);
}

/* ----------------------------------------------------
   RESPONSIVE
----------------------------------------------------- */

@media (max-width: 600px) {
    .contact-choice {
        width: 120px;
        height: 120px;
        font-size: 0.9rem;
    }

    .contact-question {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-send-button {
        width: 100%;
        padding: 16px;
        font-size: 1.05rem;
    }
}

.micro-hero.contact-hero {
    margin-bottom: 4rem;
}
/* WRAPPER */
.contact-slider-wrapper {
    width: 100%;
    margin-top: 2rem;
    position: relative;
}

/* TRACK */
.contact-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 14px;
    border-radius: 20px;
    background: #d0d0d0;
    outline: none;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

/* THUMB (pallina) */
.contact-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 34px;
    height: 34px;
    background: #ffffff;
    border-radius: 50%;
    border: 3px solid #000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    cursor: grab;
    transition: transform 0.2s ease;
}

.contact-slider::-webkit-slider-thumb:active {
    transform: scale(1.15);
    cursor: grabbing;
}

/* PROGRESS BAR */
.contact-slider-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 14px;
    width: 0%;
    border-radius: 20px;
    background: linear-gradient(90deg, #8bb5ff, #0057ff);
    pointer-events: none;
    transition: width 0.25s ease;
    z-index: 1;
}

/* LABELS */
.contact-slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.6rem;
    padding: 0 4px;
    font-size: 0.9rem;
    opacity: 0.7;
}