/* ─── Sale Price Styles ───────────────────── */
.price-old {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
    font-weight: 400;
}
.sale-badge {
    display: inline-block;
    background: linear-gradient(120deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
    margin-top: 6px;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 10px rgba(239,68,68,0.4);
}

/* ─── Extra Services Section ──────────────── */
.extra-services {
    background: var(--bg-secondary);
    padding: 100px 0;
    border-top: 1px solid var(--border-gold);
    position: relative;
    overflow: hidden;
}
.extra-services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        to right,
        transparent 0, transparent 70px,
        rgba(200,160,0,0.018) 70px, rgba(200,160,0,0.018) 72px
    );
    pointer-events: none;
}
.extra-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.extra-card {
    background: rgba(255,255,255,0.028);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,215,0,0.18);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    will-change: transform;
    transform-style: preserve-3d;
}
.extra-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.extra-card:hover::before { opacity: 1; }
.extra-card:hover {
    border-color: rgba(255,215,0,0.45);
    background: rgba(255,215,0,0.04);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255,215,0,0.1);
}
.extra-icon {
    font-size: 2.4rem;
    line-height: 1;
    filter: drop-shadow(0 0 8px rgba(255,215,0,0.3));
}
.extra-card h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin: 0;
}
.extra-card > p {
    font-size: 0.88rem;
    color: var(--text-body);
    margin: 0;
    line-height: 1.65;
}
.extra-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}
.extra-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.5;
}
.extra-list i {
    color: var(--gold);
    font-size: 0.75rem;
    margin-top: 3px;
    flex-shrink: 0;
}
.extra-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 12px rgba(255,215,0,0.3);
    padding: 8px 0;
    border-top: 1px solid rgba(255,215,0,0.15);
}

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


/* theme-light handled in style.css */


/* ─── Scroll Progress Bar ─────────────────── */
#scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #8B6200, #FFD700, #FFFDE0, #FFD700, #8B6200);
    background-size: 200% auto;
    animation: shimmer 2s linear infinite;
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(255,215,0,0.6);
}

/* ─── Splash Screen ───────────────────────── */
#splash {
    position: fixed;
    inset: 0;
    background: #07070a;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#splash.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.splash-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.splash-inner svg {
    animation: splashPulse 1s ease-in-out infinite alternate;
}
@keyframes splashPulse {
    from { transform: scale(0.95); filter: drop-shadow(0 0 8px rgba(255,215,0,0.3)); }
    to   { transform: scale(1.05); filter: drop-shadow(0 0 24px rgba(255,215,0,0.7)); }
}
.splash-logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 0.25em;
    color: #5a5045;
}
.splash-logo-text span {
    background: linear-gradient(120deg, #8B6200, #FFD700, #FFFDE0, #FFD700, #8B6200);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 2s linear infinite;
}
.splash-bar {
    width: 160px;
    height: 2px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    overflow: hidden;
}
.splash-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #8B6200, #FFD700, #FFFDE0);
    border-radius: 2px;
    animation: splashLoad 1.8s ease forwards;
}
@keyframes splashLoad {
    to { width: 100%; }
}

/* ─── WhatsApp Float Button ───────────────── */
#wa-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #fff;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#wa-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 32px rgba(37,211,102,0.65);
}
.wa-pulse {
    position: absolute;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(37,211,102,0.4);
    animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
    0%   { transform: scale(1);   opacity: 0.8; }
    100% { transform: scale(1.9); opacity: 0; }
}

/* ─── Back to Top ─────────────────────────── */
#back-top {
    position: fixed;
    bottom: 32px;
    right: 104px;
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.028);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,215,0,0.18);
    border-radius: 50%;
    color: #FFD700;
    font-size: 1rem;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
#back-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#back-top:hover {
    background: rgba(255,215,0,0.04);
    border-color: rgba(255,215,0,0.45);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255,215,0,0.2);
}

/* ─── Sticky Mobile CTA ───────────────────── */
#mobile-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 998;
    padding: 12px 16px;
    background: rgba(7,7,10,0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,215,0,0.25);
    box-shadow: 0 -8px 40px rgba(0,0,0,0.6);
    animation: slideUpCTA 0.5s ease forwards;
}
@keyframes slideUpCTA {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
#mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(120deg, #8B6200, #E8B820, #FFD700, #C8900A);
    background-size: 200% auto;
    animation: shimmer 2.5s linear infinite;
    color: #0a0a0a;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 12px;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 20px rgba(255,215,0,0.35);
    transition: transform 0.15s, box-shadow 0.15s;
}
#mobile-cta-btn:active {
    transform: scale(0.97);
    box-shadow: 0 2px 10px rgba(255,215,0,0.2);
}

/* ─── Ripple Effect ───────────────────────── */
.ripple-wave {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,215,0,0.28);
    transform: scale(0);
    animation: ripple-anim 0.55s ease-out forwards;
    pointer-events: none;
}
@keyframes ripple-anim {
    to { transform: scale(4); opacity: 0; }
}

/* ─── Mobile Responsive ───────────────────── */
@media (max-width: 768px) {
    #mobile-cta { display: block; }
    #wa-float  { bottom: 88px; }
    #back-top  { bottom: 88px; right: 16px; }

    .hero-title { font-size: clamp(1.8rem, 6vw, 3rem); }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-stats {
        flex-direction: column;
        padding: 16px 20px;
        gap: 0;
    }
    .glass-stat { padding: 10px 20px; }
    .divider { width: 60px; height: 1px; }
    .section-header h2 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
    .pricing-grid { grid-template-columns: 1fr; }
    .popular { transform: none; }
    .extra-grid { grid-template-columns: 1fr; }
    #particles-canvas { display: none; }
}
@media (max-width: 480px) {
    .btn-lg { padding: 14px 24px; font-size: 1rem; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn { text-align: center; justify-content: center; }
    .badge { font-size: 0.75rem; padding: 6px 14px; }
    .price span { font-size: 1.8rem; }
    .contact-info, .contact-form-box { padding: 24px 18px; }
}

/* ─── FAQ Section ─────────────────────────── */
.faq-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
}
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: rgba(255,255,255,0.025);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,215,0,0.14);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.faq-item.open {
    border-color: rgba(255,215,0,0.4);
    box-shadow: 0 4px 32px rgba(0,0,0,0.3), 0 0 20px rgba(255,215,0,0.06);
}
.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    transition: color 0.3s;
}
.faq-item.open .faq-q { color: var(--gold); }
.faq-icon {
    flex-shrink: 0;
    font-size: 0.85rem;
    color: var(--gold);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-a p {
    padding: 0 24px 20px;
    color: var(--text-body);
    font-size: 0.93rem;
    line-height: 1.75;
    margin: 0;
}
.faq-item.open .faq-a { max-height: 300px; }

/* Add FAQ to navbar */

/* ─── Mobile Bottom Navigation ───────────── */
#bottom-nav {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 64px;
    background: rgba(7,7,10,0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255,215,0,0.18);
    z-index: 9999;
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom);
}
#bottom-nav .bnav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 8px 0;
    transition: color 0.25s ease;
    min-height: 44px; /* WCAG tap target */
    position: relative;
}
#bottom-nav .bnav-item i {
    font-size: 1.25rem;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), color 0.25s;
}
#bottom-nav .bnav-item.active {
    color: var(--gold);
}
#bottom-nav .bnav-item.active i {
    transform: translateY(-3px) scale(1.15);
    filter: drop-shadow(0 0 8px rgba(255,215,0,0.6));
}
#bottom-nav .bnav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 24px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255,215,0,0.6);
}

@media (max-width: 768px) {
    #bottom-nav {
        display: flex;
    }
    /* Hide sticky CTA when bottom-nav shown */
    #mobile-cta { display: none !important; }
    /* Push footer up */
    footer { padding-bottom: 80px; }
    #wa-float  { bottom: 76px; }
    #back-top  { bottom: 76px; }
    /* Hide top hamburger nav on mobile — use bottom nav */
    .mobile-menu-btn { display: none; }
}

/* ─── Cookie Consent ──────────────────────── */
#cookie-bar {
    position: fixed;
    bottom: 70px; /* above bottom-nav on mobile */
    left: 12px; right: 12px;
    background: rgba(15,15,20,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,215,0,0.25);
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    z-index: 9998;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
}
#cookie-bar.show {
    transform: translateY(0);
    opacity: 1;
}
#cookie-bar p {
    font-size: 0.82rem;
    color: var(--text-body);
    margin: 0;
    line-height: 1.5;
}
#cookie-bar a { color: var(--gold); text-decoration: none; }
#cookie-bar a:hover { text-decoration: underline; }

@media (min-width: 769px) {
    #cookie-bar {
        bottom: 24px;
        left: auto; right: 24px;
        max-width: 420px;
    }
}

/* ─── Accessibility ───────────────────────── */
/* Focus visible for keyboard navigation */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}
/* Minimum tap targets */
a, button, [role="button"] { min-height: 44px; }
.bnav-item, .btn, .faq-q, #cookie-ok { min-height: 44px; }

/* ─── Reduced Motion ──────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    #particles-canvas { display: none !important; }
    .hero-content { transform: none !important; opacity: 1 !important; }
}

/* ─── Lazy Load Fade-in ───────────────────── */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease;
}
img[loading="lazy"].loaded { opacity: 1; }

/* ─── Safe Area (iPhone notch) ────────────── */
.hero { padding-top: calc(80px + env(safe-area-inset-top)); }
#bottom-nav { padding-bottom: env(safe-area-inset-bottom); }


/* ════════════════════════════════════════════
   PREMIUM GLASSMORPHISM EFFECTS — NEW
   ════════════════════════════════════════════ */

/* ─── 1. Glass Sheen Sweep on Hover ───────── */
.pricing-card, .extra-card {
    overflow: hidden;
}
.pricing-card::after, .extra-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255, 255, 255, 0.055) 50%,
        transparent 70%
    );
    transform: translateX(-120%) skewX(-15deg);
    transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    z-index: 3;
    border-radius: inherit;
}
.pricing-card:hover::after, .extra-card:hover::after {
    transform: translateX(220%) skewX(-15deg);
}

/* ─── 2. Hero Stats Float Animation ──────── */
@keyframes floatUp {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}
.glass-stat:nth-child(1) { animation: floatUp 4.5s ease-in-out infinite; }
.glass-stat:nth-child(3) { animation: floatUp 4.5s ease-in-out 0.8s infinite; }
.glass-stat:nth-child(5) { animation: floatUp 4.5s ease-in-out 1.6s infinite; }

/* ─── 3. Popular Card Breathing Glow ──────── */
@keyframes cardBreath {
    0%, 100% { box-shadow: 0 0 30px rgba(255,215,0,0.10), 0 0 80px rgba(255,215,0,0.04); }
    50%       { box-shadow: 0 0 60px rgba(255,215,0,0.30), 0 0 120px rgba(255,215,0,0.10); }
}
.popular { animation: cardBreath 3.5s ease-in-out infinite; }

/* ─── 4. Section H2 Underline Reveal ──────── */
.section-header h2 { position: relative; display: inline-block; }
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.8), transparent);
    transition: width 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s;
    border-radius: 2px;
}
.section-header.is-visible h2::after { width: 55%; }

/* ─── 5. Timeline Step Stagger ────────────── */
.timeline-step {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in-section.is-visible .timeline-step:nth-child(1) { opacity:1; transform:none; transition-delay:0.10s; }
.fade-in-section.is-visible .timeline-step:nth-child(2) { opacity:1; transform:none; transition-delay:0.23s; }
.fade-in-section.is-visible .timeline-step:nth-child(3) { opacity:1; transform:none; transition-delay:0.36s; }
.fade-in-section.is-visible .timeline-step:nth-child(4) { opacity:1; transform:none; transition-delay:0.49s; }

/* ─── 6. Glass Inner Top Highlight ───────── */
.feature-card, .service-box, .faq-item, .contact-wrapper {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

/* ─── 7. Hero Scroll Hint ─────────────────── */
.hero-scroll-hint {
    position: absolute;
    bottom: 36px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    z-index: 2;
    opacity: 0;
    animation: hintFadeIn 1s ease 3s forwards;
}
@keyframes hintFadeIn { to { opacity: 0.45; } }
.hero-scroll-hint span {
    display: block;
    width: 1.5px; height: 52px;
    background: linear-gradient(to bottom, rgba(255,215,0,0.9), transparent);
    border-radius: 2px;
    animation: scrollPulse 2s ease-in-out infinite;
}
.hero-scroll-hint i {
    color: rgba(255,215,0,0.7);
    font-size: 0.7rem;
    margin-top: 6px;
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50%       { transform: translateY(6px); opacity: 1; }
}
@media (max-width: 768px) { .hero-scroll-hint { display: none; } }

/* ─── 8. Mobile Active Press Scale ───────── */
@media (hover: none) {
    .btn:active         { transform: scale(0.96) !important; transition: transform 0.08s ease !important; }
    .extra-card:active  { transform: scale(0.97) !important; transition: transform 0.08s ease !important; }
    .faq-q:active       { opacity: 0.75; }
    .social-icon:active { transform: scale(0.88) translateY(0) !important; }
}

/* ─── 9. Feature Card Left Accent Reveal ──── */
.feature-card::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright));
    transition: width 0.5s ease;
    border-radius: 0 2px 0 0;
}
.feature-card:hover::after { width: 100%; }

/* ─── 10. Gradient Text Slow Shift ───────── */
@keyframes gradientShift {
    0%   { background-position: 0% center; }
    50%  { background-position: 100% center; }
    100% { background-position: 0% center; }
}
.gradient-text {
    background-size: 300% auto;
    animation: gradientShift 6s ease infinite;
}

/* ─── 11. Infinite Marquee Strip ─────────── */
.marquee-strip {
    overflow: hidden;
    background: linear-gradient(90deg,
        rgba(255,215,0,0.04),
        rgba(255,215,0,0.09) 40%,
        rgba(255,215,0,0.09) 60%,
        rgba(255,215,0,0.04));
    border-top: 1px solid rgba(255,215,0,0.14);
    border-bottom: 1px solid rgba(255,215,0,0.14);
    padding: 13px 0;
    position: relative;
    z-index: 1;
}
.marquee-strip::before,
.marquee-strip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.marquee-strip::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}
.marquee-strip::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    animation: marqueeScroll 22s linear infinite;
    white-space: nowrap;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-track span {
    color: rgba(255,215,0,0.75);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.marquee-track .mx {
    color: rgba(255,215,0,0.25);
    font-size: 0.55rem;
    flex-shrink: 0;
}

/* ─── 12. Cursor Trail Dots ──────────────── */
.cursor-trail-dot {
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    will-change: left, top;
}

/* ─── 13. Word Reveal Animation ──────────── */
.word-reveal .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}
.word-reveal.is-visible .word {
    opacity: 1;
    transform: translateY(0);
}

/* ─── 14. Skew-In Entrance (service boxes) ─ */
@keyframes skewIn {
    from { opacity: 0; transform: skewY(-2deg) translateY(30px); }
    to   { opacity: 1; transform: skewY(0) translateY(0); }
}

/* ─── 15. Focus Glow on Inputs ────────────── */
.input-group input:focus {
    box-shadow: 0 0 0 3px rgba(255,215,0,0.12), 0 0 20px rgba(255,215,0,0.08);
}

/* ════════════════════════════════════════════
   10 MOBILE & GESTURE WOW EFFECTS
   ════════════════════════════════════════════ */

/* ─── 16. Touch Ripple Effect ────────────── */
.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-anim 0.6s linear;
    background: rgba(255, 215, 0, 0.25);
    pointer-events: none;
    z-index: 10;
}
@keyframes ripple-anim {
    to { transform: scale(4); opacity: 0; }
}

/* ─── 17. Horizontal Scroll Snapping (Mobile) */
@media (max-width: 768px) {
    .portfolio-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 24px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 -20px; /* Bleed edge */
        padding: 0 20px 24px 20px;
    }
    .portfolio-grid::-webkit-scrollbar { display: none; }
    .portfolio-grid .portfolio-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        margin-right: 16px;
    }
}

/* ─── 18. Ambient Floating Orbs ──────────── */
.ambient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ─── 19. Spotlight Text Mask ────────────── */
.spotlight-text {
    background: linear-gradient(120deg, rgba(255,255,255,0.4), rgba(255,215,0,1) 50%, rgba(255,255,255,0.4));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.1s linear;
}

/* ─── 20. Inner Image Parallax Base ──────── */
.portfolio-visual { 
    overflow: hidden; 
}
.portfolio-visual img {
    height: 120%; /* Extra height to allow scrolling */
    width: 100%;
    object-fit: cover;
    transform: translateY(0) scale(1.05);
    will-change: transform;
    transform-origin: center;
}

/* ─── 21. Blur Reveal on Scroll ──────────── */
.blur-reveal {
    filter: blur(12px);
    transition: filter 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease-out, transform 0.6s ease-out;
}
.blur-reveal.is-visible {
    filter: blur(0);
}

/* ─── 22. Elastic Pull Indicator ─────────── */
#pull-indicator {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: var(--gold-bright);
    box-shadow: 0 0 25px var(--gold);
    transform-origin: top;
    transform: scaleY(0);
    z-index: 9999;
    pointer-events: none;
}

/* ─── Reduced motion override ─────────────── */
@media (prefers-reduced-motion: reduce) {
    .marquee-track    { animation: none; }
    .glass-stat       { animation: none; }
    .popular          { animation: none; }
    .gradient-text    { animation: none; }
    .hero-scroll-hint { animation: none; opacity: 0.4; }
    .blur-reveal      { filter: none; }
}


/* ════════════════════════════════════════════
   EXIT INTENT POPUP
   ════════════════════════════════════════════ */
#exit-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99990;
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
#exit-popup {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -42%) scale(0.92);
    z-index: 99991;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.34,1.56,0.64,1),
                transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
                visibility 0.4s;
    width: min(480px, 92vw);
}
#exit-popup.active,
#exit-overlay.active {
    opacity: 1; visibility: visible;
}
#exit-popup.active {
    transform: translate(-50%, -50%) scale(1);
}
.exit-popup-card {
    background: linear-gradient(145deg, rgba(15,12,8,0.97), rgba(10,10,14,0.97));
    border: 1px solid rgba(255,215,0,0.35);
    border-radius: 24px;
    padding: 40px 36px 32px;
    text-align: center;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 60px rgba(255,215,0,0.08);
    overflow: hidden;
}
.exit-popup-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.8), transparent);
}
#exit-popup-close {
    position: absolute; top: 14px; right: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.55);
    font-size: 1.3rem; width: 32px; height: 32px;
    border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    min-height: unset;
    transition: all 0.2s ease;
}
#exit-popup-close:hover { color: #fff; background: rgba(255,255,255,0.12); }
.exit-popup-icon {
    font-size: 3rem; line-height: 1;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 16px rgba(255,215,0,0.5));
    animation: floatUp 3s ease-in-out infinite;
}
#exit-popup h3 {
    font-size: 1.5rem; font-weight: 800;
    color: var(--white); margin-bottom: 10px;
}
#exit-popup p {
    font-size: 0.93rem; color: var(--text-body);
    line-height: 1.65; margin-bottom: 20px;
}
#exit-popup p strong { color: var(--gold); }
.exit-input-wrap {
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 14px;
}
.exit-input-wrap input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 12px; padding: 13px 16px;
    color: var(--white); font-family: inherit;
    font-size: 0.95rem; outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.exit-input-wrap input:focus {
    border-color: rgba(255,215,0,0.5);
    box-shadow: 0 0 0 3px rgba(255,215,0,0.1);
}
.exit-input-wrap input::placeholder { color: rgba(255,255,255,0.3); }
.exit-submit-btn {
    width: 100%; padding: 14px;
    font-size: 1rem; letter-spacing: 0.03em;
}
.exit-popup-footer {
    margin-top: 18px;
    display: flex; align-items: center; gap: 12px;
    justify-content: center;
}
.exit-popup-footer span { color: rgba(255,255,255,0.3); font-size: 0.82rem; }
.exit-tg-btn {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(32,162,220,0.12);
    border: 1px solid rgba(32,162,220,0.3);
    color: #29b6f6; border-radius: 50px;
    padding: 8px 18px; font-size: 0.85rem;
    font-weight: 600; text-decoration: none;
    transition: all 0.25s ease; min-height: unset;
}
.exit-tg-btn:hover {
    background: rgba(32,162,220,0.22);
    border-color: rgba(32,162,220,0.6);
    transform: translateY(-2px);
}

/* ════════════════════════════════════════════
   PORTFOLIO LIGHTBOX
   ════════════════════════════════════════════ */
#lb-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(8px);
    z-index: 99992;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
#portfolio-lightbox {
    position: fixed; inset: 0;
    z-index: 99993;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 20px;
}
#portfolio-lightbox.active,
#lb-overlay.active { opacity: 1; visibility: visible; }
#lb-content {
    background: rgba(10,10,14,0.95);
    border: 1px solid rgba(255,215,0,0.25);
    border-radius: 20px; overflow: hidden;
    max-width: 700px; width: 100%;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    transform: scale(0.94);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
#portfolio-lightbox.active #lb-content { transform: scale(1); }
#lb-img {
    width: 100%; max-height: 360px;
    object-fit: cover; display: block;
}
#lb-info { padding: 20px 24px; }
#lb-title { font-size: 1.1rem; color: var(--gold); margin-bottom: 6px; }
#lb-desc  { font-size: 0.9rem; color: var(--text-body); line-height: 1.65; margin: 0; }
#lb-close {
    position: fixed; top: 20px; right: 24px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff; font-size: 1.6rem;
    width: 44px; height: 44px; border-radius: 50%;
    cursor: pointer; z-index: 99994;
    display: flex; align-items: center; justify-content: center;
    min-height: unset; transition: all 0.2s ease;
}
#lb-close:hover { background: rgba(255,255,255,0.16); transform: scale(1.1); }
#lb-prev, #lb-next {
    position: fixed; top: 50%; transform: translateY(-50%);
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.25);
    color: var(--gold); font-size: 1.2rem;
    width: 46px; height: 46px; border-radius: 50%;
    cursor: pointer; z-index: 99994;
    display: flex; align-items: center; justify-content: center;
    min-height: unset; transition: all 0.25s ease;
}
#lb-prev { left: 16px; }
#lb-next { right: 16px; }
#lb-prev:hover, #lb-next:hover {
    background: rgba(255,215,0,0.2);
    border-color: rgba(255,215,0,0.5);
    transform: translateY(-50%) scale(1.1);
}

/* ─── Portfolio Card Fix (NO tilt — prevents disappearing) ─ */
.portfolio-card {
    cursor: pointer;
    transition: box-shadow 0.35s ease, border-color 0.35s ease !important;
    transform: none !important; /* override JS tilt */
}
.portfolio-card:hover {
    border-color: rgba(255,215,0,0.5) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 30px rgba(255,215,0,0.1) !important;
}
/* Fix image display in portfolio */
.portfolio-visual {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: linear-gradient(135deg, rgba(255,215,0,0.06), rgba(0,0,0,0.3));
}
.portfolio-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.5s ease;
    will-change: transform;
    display: block;
}
.portfolio-card:hover .portfolio-visual img {
    transform: scale(1.06);
}
/* Placeholder when no image */
.portfolio-visual.no-img {
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, rgba(139,98,0,0.2), rgba(255,215,0,0.06));
}
.portfolio-visual img[src=""],
.portfolio-visual img:not([src]) {
    display: none;
}
/* Zoom icon overlay on hover */
.portfolio-visual::after {
    content: '\f065';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: rgba(255,215,0,0.9);
    background: rgba(0,0,0,0.45);
    opacity: 0; transition: opacity 0.3s ease;
}
.portfolio-card:hover .portfolio-visual::after { opacity: 1; }

/* ─── Admin Portfolio Management ─────────── */
.portfolio-admin-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 12px; padding: 16px;
    margin-bottom: 12px;
    display: flex; flex-direction: column; gap: 8px;
}
.portfolio-admin-item input,
.portfolio-admin-item textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,215,0,0.18);
    border-radius: 8px; padding: 9px 12px;
    color: var(--white); font-family: inherit;
    font-size: 0.85rem; outline: none; width: 100%;
}
.portfolio-admin-item textarea { resize: vertical; min-height: 56px; }
.portfolio-admin-item input:focus,
.portfolio-admin-item textarea:focus {
    border-color: rgba(255,215,0,0.45);
}
.portfolio-admin-item .pa-row {
    display: flex; gap: 8px; align-items: center;
}
.portfolio-admin-item .pa-remove {
    background: rgba(239,68,68,0.12);
    border: 1px solid rgba(239,68,68,0.3);
    color: #f87171; border-radius: 8px;
    padding: 6px 12px; font-size: 0.8rem;
    cursor: pointer; white-space: nowrap;
    min-height: unset; transition: all 0.2s;
}
.portfolio-admin-item .pa-remove:hover {
    background: rgba(239,68,68,0.25);
}
.portfolio-admin-item label {
    font-size: 0.75rem; color: var(--text-muted);
    display: block; margin-bottom: 2px;
}

/* ─── Analytics Enhanced: section scroll depth ─ */
.mz-analytics-badge {
    position: fixed; bottom: 90px; left: 12px;
    background: rgba(10,10,14,0.92);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 10px; padding: 8px 14px;
    font-size: 0.72rem; color: rgba(255,215,0,0.8);
    z-index: 9000; pointer-events: none;
    opacity: 0; transition: opacity 0.5s ease;
    font-family: monospace;
}

/* ─── 15 New WOW Effects ────────────────── */

/* 1. Neon Border Pulse on active nav item */
@keyframes neonPulse {
    0%,100% { box-shadow: 0 0 4px rgba(255,215,0,0.3); }
    50%      { box-shadow: 0 0 14px rgba(255,215,0,0.7), 0 0 30px rgba(255,215,0,0.2); }
}
.bnav-item.active { animation: neonPulse 2.5s ease-in-out infinite; }

/* 2. Gold Rain on hero */
@keyframes goldRain {
    0%   { transform: translateY(-20px) rotate(0deg); opacity: 0.8; }
    100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}
.gold-rain-drop {
    position: fixed; pointer-events: none; z-index: 1;
    font-size: 0.7rem; color: rgba(255,215,0,0.4);
    animation: goldRain linear infinite;
}

/* 3. Button magnetic pull */
.btn-primary { transition: transform 0.15s ease, box-shadow 0.15s ease !important; }

/* 4. Section entrance slide-from-side */
@keyframes slideFromLeft {
    from { opacity:0; transform: translateX(-40px); }
    to   { opacity:1; transform: translateX(0); }
}
@keyframes slideFromRight {
    from { opacity:0; transform: translateX(40px); }
    to   { opacity:1; transform: translateX(0); }
}
.feature-card:nth-child(odd).is-visible  { animation: slideFromLeft  0.6s ease forwards; }
.feature-card:nth-child(even).is-visible { animation: slideFromRight 0.6s ease forwards; }

/* 5. Pulsing dot on contact section */
.direct-contact p i {
    display: inline-block;
    animation: pulseIcon 2s ease-in-out infinite;
}
@keyframes pulseIcon {
    0%,100% { transform: scale(1); }
    50%      { transform: scale(1.25); color: var(--gold); }
}

/* 6. Price counter shimmer */
.price > span:not(.price-old) {
    position: relative; display: inline-block;
}
.price > span:not(.price-old)::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.18) 50%, transparent 65%);
    background-size: 200% 100%;
    animation: shimmer 2.5s linear infinite;
    pointer-events: none;
}

/* 7. Stagger fade for pkg-features items */
.pkg-features li {
    opacity: 0; transform: translateX(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.pricing-card.is-visible .pkg-features li:nth-child(1) { opacity:1; transform:none; transition-delay:0.1s; }
.pricing-card.is-visible .pkg-features li:nth-child(2) { opacity:1; transform:none; transition-delay:0.18s; }
.pricing-card.is-visible .pkg-features li:nth-child(3) { opacity:1; transform:none; transition-delay:0.26s; }
.pricing-card.is-visible .pkg-features li:nth-child(4) { opacity:1; transform:none; transition-delay:0.34s; }
.pricing-card.is-visible .pkg-features li:nth-child(5) { opacity:1; transform:none; transition-delay:0.42s; }
.pricing-card.is-visible .pkg-features li:nth-child(6) { opacity:1; transform:none; transition-delay:0.50s; }

/* 8. Glassmorphism overlay shimmer on cards */
.portfolio-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(105deg,
        transparent 0%, rgba(255,215,0,0.03) 50%, transparent 100%);
    pointer-events: none; z-index: 1;
    border-radius: inherit;
}

/* 9. Active state scale for mobile */
@media (hover: none) {
    .portfolio-card:active { transform: scale(0.97) !important; }
}

/* 10. Social icon bounce */
.social-icon {
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease !important;
}
.social-icon:hover {
    transform: translateY(-6px) scale(1.15) !important;
}

/* 11. Hero badge rotate sparkle */
.badge i.fa-star {
    display: inline-block;
    animation: rotateStar 4s linear infinite;
}
@keyframes rotateStar {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* 12. FAQ item slide-reveal */
.faq-a {
    transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease !important;
}

/* 13. Watermark badge glow */
.watermark-badge {
    position: absolute; bottom: 10px; left: 10px;
    background: rgba(10,10,14,0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,215,0,0.35);
    color: rgba(255,215,0,0.9);
    font-size: 0.7rem; font-weight: 700;
    padding: 4px 10px; border-radius: 50px;
    z-index: 4; display: flex; align-items: center; gap: 5px;
    box-shadow: 0 0 10px rgba(255,215,0,0.2);
    animation: waPulse 3s ease-out infinite;
}
.overlay-badge {
    position: absolute; top: 10px; right: 10px;
    background: linear-gradient(120deg, rgba(139,98,0,0.9), rgba(255,215,0,0.9));
    color: #0a0a0a; font-size: 0.7rem; font-weight: 800;
    padding: 4px 10px; border-radius: 50px; z-index: 4;
    box-shadow: 0 2px 12px rgba(255,215,0,0.4);
}

/* 14. Glow on CTA primary button */
.btn-primary:hover {
    filter: brightness(1.05);
    box-shadow: 0 8px 32px rgba(255,215,0,0.4) !important;
}

/* 15. Smooth page scroll behaviour */
html { scroll-behavior: smooth; }
.portfolio-carousel-wrapper {
    scroll-behavior: smooth;
}

/* ════════════════════════════════════════════════════
   🏆 10 PREMIUM INTERACTIVE WOW EFFECTS
   Inspired by: Apple · Stripe · Linear · Vercel · Framer
   ════════════════════════════════════════════════════ */

/* ─── 1. CUSTOM MAGNETIC CURSOR (Linear-style) ────── */
#mz-cursor-dot {
    position: fixed;
    width: 8px; height: 8px;
    background: #FFD700;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
    box-shadow: 0 0 10px rgba(255,215,0,0.8);
    will-change: left, top;
}
#mz-cursor-ring {
    position: fixed;
    width: 38px; height: 38px;
    border: 1.5px solid rgba(255,215,0,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.35s cubic-bezier(0.34,1.56,0.64,1),
                height 0.35s cubic-bezier(0.34,1.56,0.64,1),
                border-color 0.25s ease,
                left 0.08s linear, top 0.08s linear;
    will-change: left, top;
}
#mz-cursor-ring.hovering {
    width: 60px; height: 60px;
    border-color: rgba(255,215,0,0.9);
    background: rgba(255,215,0,0.04);
}
#mz-cursor-ring.clicking {
    width: 28px; height: 28px;
    background: rgba(255,215,0,0.12);
}
@media (hover: none) {
    #mz-cursor-dot, #mz-cursor-ring { display: none !important; }
}

/* ─── 2. SPOTLIGHT CARD HOVER (Vercel-style) ──────── */
.spotlight-card {
    position: relative;
    overflow: hidden;
}
.spotlight-card::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,215,0,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
    left: var(--mx, 50%);
    top:  var(--my, 50%);
}
.spotlight-card:hover::before { opacity: 1; }

/* ─── 3. NOISE / GRAIN TEXTURE OVERLAY (Stripe-style) */
#noise-overlay {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-size: 180px;
    animation: grainShift 0.4s steps(1) infinite;
}
@keyframes grainShift {
    0%  { transform: translate(0,0); }
    25% { transform: translate(-2px, 1px); }
    50% { transform: translate(1px, -1px); }
    75% { transform: translate(-1px, 2px); }
}

/* ─── 4. MESH GRADIENT MOUSE TRACKER ─────────────── */
#mesh-gradient {
    position: fixed; inset: 0;
    pointer-events: none; z-index: 0;
    opacity: 0.35;
    background:
        radial-gradient(ellipse 60% 50% at var(--mx,50%) var(--my,30%),
            rgba(200,144,10,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 35% at calc(100% - var(--mx,50%)) calc(100% - var(--my,30%)),
            rgba(255,215,0,0.08) 0%, transparent 65%);
    transition: background 0.6s ease;
}

/* ─── 5. NUMBER FLIP (Slot Machine) ──────────────── */
.flip-number {
    display: inline-flex;
    overflow: hidden;
    height: 1.2em;
    line-height: 1.2em;
}
.flip-digit {
    display: inline-block;
    animation: flipDown 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
    transform-origin: top center;
}
@keyframes flipDown {
    from { transform: rotateX(-90deg) translateY(-50%); opacity: 0; }
    to   { transform: rotateX(0deg)   translateY(0);    opacity: 1; }
}

/* ─── 6. SECTION MORPH PROGRESS INDICATOR ────────── */
#section-progress {
    position: fixed;
    right: 18px; top: 50%;
    transform: translateY(-50%);
    display: flex; flex-direction: column;
    gap: 8px; z-index: 8000;
    opacity: 0;
    transition: opacity 0.4s ease;
}
#section-progress.visible { opacity: 1; }
.sp-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,215,0,0.25);
    border: 1.5px solid rgba(255,215,0,0.3);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
    position: relative;
}
.sp-dot.active {
    background: #FFD700;
    width: 8px; height: 22px;
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(255,215,0,0.6);
}
.sp-dot::after {
    content: attr(data-label);
    position: absolute;
    right: 14px; top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    font-size: 0.72rem; font-weight: 600;
    color: rgba(255,215,0,0.8);
    background: rgba(10,10,14,0.9);
    border: 1px solid rgba(255,215,0,0.2);
    padding: 3px 8px; border-radius: 6px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.2s ease;
}
.sp-dot:hover::after { opacity: 1; }
@media (max-width: 768px) { #section-progress { display: none; } }

/* ─── 7. SCROLL-TRIGGERED GLOW HALOS ─────────────── */
.glow-halo {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
    opacity: 0;
    transition: opacity 1.2s ease, transform 1.2s ease;
    z-index: 0;
}
.glow-halo.visible { opacity: 1; }

/* ─── 8. CONFETTI BURST (on form success) ─────────── */
.confetti-piece {
    position: fixed;
    width: 8px; height: 8px;
    pointer-events: none;
    z-index: 99999;
    border-radius: 2px;
    animation: confettiFall linear forwards;
}
@keyframes confettiFall {
    0%   { transform: translateY(0) rotate(0deg) scale(1);   opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg) scale(0.3); opacity: 0; }
}

/* ─── 9. GLASSMORPHISM TOOLTIP ───────────────────── */
.mz-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%; transform: translateX(-50%);
    background: rgba(10,10,14,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,215,0,0.25);
    border-radius: 10px;
    padding: 7px 14px;
    font-size: 0.78rem; font-weight: 500;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0; transform: translateX(-50%) translateY(4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.mz-tooltip::after {
    content: '';
    position: absolute;
    top: 100%; left: 50%; transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(255,215,0,0.25);
}
[data-tip]:hover .mz-tooltip,
[data-tip]:focus .mz-tooltip {
    opacity: 1; transform: translateX(-50%) translateY(0);
}

/* ─── 10. ELASTIC SCROLL SNAP DOTS (portfolio) ───── */
.carousel-dots {
    display: flex; gap: 8px;
    justify-content: center;
    margin-top: 20px;
}
.carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,215,0,0.25);
    border: 1.5px solid rgba(255,215,0,0.3);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.carousel-dot.active {
    background: #FFD700;
    width: 24px; border-radius: 4px;
    box-shadow: 0 0 10px rgba(255,215,0,0.5);
}
