/* ── Base ── */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

body {
    cursor: none;
    overflow-x: hidden;
    background-color: #121414;
}

/* ── Custom Cursor ── */
#cursor {
    width: 18px;
    height: 18px;
    border: 1.5px solid #e8ff8b;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
}

body.cursor-on-interactive #cursor {
    width: 30px;
    height: 30px;
    background-color: rgba(232, 255, 139, 0.1);
}

/* ── Shine Sweep Button Effect ── */
.shine-sweep {
    position: relative;
    overflow: hidden;
}

.shine-sweep::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 50%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(30deg);
    transition: left 0.6s ease;
}

.shine-sweep:hover::after {
    left: 150%;
}

/* ── Hero Mockup Float ── */
.floating-mockup {
    animation: float 6s ease-in-out infinite;
}

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

/* ── Process Section Dot Grid ── */
.dot-grid {
    background-image: radial-gradient(rgba(232, 255, 139, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* ── Scroll Reveal ── */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ── Work Card Hover Glow ── */
.lime-glow:hover {
    box-shadow: 0px 0px 25px rgba(232, 255, 139, 0.2);
    border-color: rgba(232, 255, 139, 0.4);
}

/* ── Quote Modal ── */
#quote-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#quote-overlay.open { display: flex; }

@keyframes scale-in {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

.form-card {
    background-color: #141418;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: scale-in 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.acid-lime-glow:hover {
    box-shadow: 0px 0px 25px rgba(232, 255, 139, 0.2);
    border-color: rgba(232, 255, 139, 0.4);
}

/* ── Modal Input Ghost ── */
.input-ghost {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    color: #e2e2e2;
    width: 100%;
    padding: 8px 0;
}

.input-ghost:focus {
    outline: none;
    border-bottom-color: #e8ff8b;
    box-shadow: 0 1px 0 0 #e8ff8b;
}

/* ── Form Validation ── */
.field-error {
    border-bottom-color: #ff6b6b !important;
}

.error-msg {
    color: #ff6b6b;
    font-size: 10px;
    margin-top: 4px;
    display: none;
}

.error-msg.visible { display: block; }

/* ── Modal Button Shine ── */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: 0.6s;
}

.btn-shine:hover::after { left: 100%; top: 100%; }

/* ── Success Check Animation ── */
.check-anim {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: dash 0.6s ease-in-out forwards;
}

@keyframes dash { to { stroke-dashoffset: 0; } }

/* ── Modal Step Visibility ── */
.hidden-step { display: none; opacity: 0; }
.active-step  { display: block; opacity: 1; }
.active-step.flex-step { display: flex; }
