/* Premium Title Styles */
.section-title, 
.pricing-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(120deg, #ffffff 20%, #e5e7eb 30%, #ffffff 70%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 
        2px 2px 2px rgba(0,0,0,0.2),
        -1px -1px 1px rgba(255,255,255,0.1),
        0 4px 8px rgba(255, 255, 255, 0.15);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    animation: shine 3s linear infinite;
}

.portfolio-title,
.reviews-title,
.book-call-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    background: linear-gradient(120deg, #ffffff 20%, #e5e7eb 30%, #ffffff 70%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 
        2px 2px 2px rgba(0,0,0,0.2),
        -1px -1px 1px rgba(255,255,255,0.1),
        0 4px 8px rgba(255, 255, 255, 0.15);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    animation: shine 3s linear infinite;
}


@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Custom Cursor Styles */
:root {
    --ball-size: 19px;   /* circle size */
    --ball-scale: 1;
    --tx: -9999px;
    --ty: -9999px;
}

/* Removed cursor: none so the default arrow remains visible */

.cursor-ball {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--ball-size);
    height: var(--ball-size);
    border-radius: 50%;
    background: #00a796;
    pointer-events: none;
    z-index: 9999;
    transform: translate3d(var(--tx), var(--ty), 0) scale(var(--ball-scale));
    will-change: transform, opacity;
    box-shadow: 0 8px 22px rgba(0,0,0,0.28);
    opacity: 1;
    transition: opacity 160ms linear;
}

.cursor-ball.hidden { 
    opacity: 0; 
}

/* Hide on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor-ball {
        display: none;
    }
}

