/* GLOBAL STYLES */
:root {
    --kla-green: #16a34a;
    --kla-dark: #1c1c1c;
}

body {
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
}

/* Luxury Input Styling */
input::placeholder {
    color: #cbd5e1;
    font-weight: 600;
}

/* Hero Text Shadow */
h1 {
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

/* Custom Scrollbar for Luxury Feel */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #16a34a;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #15803d;
}