*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #1b1c1c;
    background-color: #fbf9f8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
    color: #1b1c1c;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.shadow-ambient {
    box-shadow: 0 12px 40px rgba(0, 56, 108, 0.06);
}

.mesh-bg {
    background-color: #f6f3f2;
    background-image:
        radial-gradient(at 20% 30%, rgba(0, 56, 108, 0.04) 0, transparent 50%),
        radial-gradient(at 80% 20%, rgba(0, 101, 141, 0.04) 0, transparent 50%),
        radial-gradient(at 50% 80%, rgba(0, 66, 19, 0.03) 0, transparent 50%);
}

.text-shadow-premium {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

@keyframes gradient-slow {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

.animate-gradient-slow {
    animation: gradient-slow 8s ease-in-out infinite;
}

a,
button {
    transition: all 0.2s ease;
}

button:active {
    transform: scale(0.98);
}

.material-symbols-outlined {
    vertical-align: middle;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

::-webkit-scrollbar {
    width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
    background: #737781;
}

::selection {
    background: rgba(0, 56, 108, 0.15);
    color: #00386c;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
}

@media print {
    body {
        background: white;
    }

    .no-print {
        display: none !important;
    }
}

.lang-dropdown {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95) translateY(-4px);
    transition: all 0.2s ease;
    transform-origin: top right;
    z-index: 100;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.lang-option.active {
    background-color: rgba(0, 56, 108, 0.08);
    color: #00386c;
}

#lang-arrow {
    transition: transform 0.2s ease;
}

#lang-arrow.rotate-180 {
    transform: rotate(180deg);
}