:root {
    --navy: #1A2B3C;
    --grey: #F4F7F9;
    --accent: #2563EB;
}

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Reveal classes — no initial transforms or opacity; GSAP handles animation */

/* Language Switcher */
.lang-btn {
    color: #94a3b8;
}

.lang-btn.active-lang {
    background-color: white;
    color: var(--navy);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Form Styles */
input, select {
    border-radius: 0;
    appearance: none;
}

/* Scroll Trigger helper classes */
.is-visible {
    opacity: 1;
    transform: none;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Logo and navigation specific tweaks */
#main-nav.scrolled {
    height: 70px;
    background: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

