/* ==========================================================================
   Şaşkın Soft | Kreatif Dijital Medya Ajansı - Özel Stil Dosyası
   ========================================================================== */

/* Light & Clean Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f8fafc;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Glassmorphism for Navbar */
.glass-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

/* Glassmorphism utility for Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
}

/* Smooth Service Cards */
.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
}

/* Icon Hover Effect */
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    color: #8b5cf6;
}

.service-icon {
    transition: all 0.3s ease;
}

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

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

/* Gradient Text Utility */
.text-gradient {
    background: linear-gradient(135deg, #16a34a 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 3D Tilt Effect Utilities */
.tilt-card {
    transform-style: preserve-3d;
    will-change: transform;
    transition: box-shadow 0.3s ease;
}

.tilt-content {
    transform: translateZ(30px);
}

/* Rotating Circular Badge */
.rotating-badge {
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Marquee Scroller */
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.scroller {
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    overflow: hidden;
    width: 100%;
}

.scroller__inner {
    display: flex;
    width: max-content;
    flex-wrap: nowrap;
    animation: marquee 25s linear infinite;
}

.scroller:hover .scroller__inner {
    animation-play-state: paused;
}

/* ==========================================================================
   Şaşkın Gözler (Googly Eyes) Stilleri
   ========================================================================== */
.googly-eye {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.googly-pupil {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    transition: transform 0.05s ease-out;
}

.surprised-mouth {
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.is-surprised .surprised-mouth {
    transform: scale(1.6) translateY(2px);
    background-color: #ef4444 !important;
}

.is-surprised .googly-eye {
    transform: scale(1.15);
}
