/* ─── Tha Klassik Kut — Custom Styles ─── */

/* Base reset tweaks */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-padding-top: 80px;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection color */
::selection {
    background: rgba(4, 120, 87, 0.2);
    color: #047857;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #ecfdf5;
}
::-webkit-scrollbar-thumb {
    background: #a7f3d0;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #34d399;
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid #047857;
    outline-offset: 2px;
}

/* Smooth image rendering */
img {
    -webkit-font-smoothing: antialiased;
    image-rendering: auto;
}

/* Prevent overflow on cards */
.service-card, .testimonial-card {
    overflow: hidden;
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
    .float-slow, .float-medium, .float-fast, .float-delay {
        animation: none;
    }
}
