:root {
    --brand-orange: #d3701e;
    --brand-navy: #012D4D;
}

body {
    background-color: #f8fafc;
    color: #012D4D;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Ultra Glass Effect (Superior Crystal) */
.smart-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px) saturate(180%) contrast(110%);
    -webkit-backdrop-filter: blur(40px) saturate(180%) contrast(110%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px 0 rgba(1, 45, 77, 0.05);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.smart-glass.scrolled {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(50px) saturate(200%);
    -webkit-backdrop-filter: blur(50px) saturate(200%);
    box-shadow: 0 15px 50px -10px rgba(1, 45, 77, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}

/* Organic Shapes */
.mask-organic {
    clip-path: url(#organic-mask);
}

.blob-shape {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.text-huge {
    font-size: clamp(3.5rem, 10vw, 9rem);
    line-height: 0.85;
    letter-spacing: -0.05em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

/* Floating Animation */
.float {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.gradient-text {
    background: linear-gradient(135deg, #012D4D 0%, #d3701e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

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

::-webkit-scrollbar-thumb {
    background: #d3701e;
    border-radius: 10px;
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d3701e;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.active-nav-link {
    color: #d3701e !important;
}

.active-nav-link::after {
    width: 100%;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Premium Enhancements */
.mesh-gradient {
    background: radial-gradient(at 0% 0%, hsla(210, 100%, 98%, 1) 0, transparent 50%),
        radial-gradient(at 50% 0%, hsla(22, 90%, 92%, 1) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(210, 100%, 95%, 1) 0, transparent 50%);
}

.hover-glow {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(211, 112, 30, 0.3);
    border-color: rgba(211, 112, 30, 0.5);
}

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.7s;
}

.shine-effect:hover::after {
    left: 100%;
    top: 100%;
}

.card-stagger {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-stagger:hover {
    transform: translateY(-12px) scale(1.02);
}

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, #012D4D, #d3701e);
    z-index: 1000;
    transition: width 0.1s;
}

@keyframes pulse-slow {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.animate-pulse-slow {
    animation: pulse-slow 8s infinite;
}