/* Base & Utilities */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    overflow-x: hidden;
}

/* Hero Gradient */
.hero-gradient {
    background: linear-gradient(135deg, #0f1f3d 0%, #1e3a5f 35%, #2a4f7f 60%, #1e3a5f 85%, #0f1f3d 100%);
}

/* Floating Orbs */
.hero-orb {
    pointer-events: none;
}

.hero-orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.4) 0%, transparent 70%);
    top: -10%;
    right: -5%;
}

.hero-orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(224, 185, 94, 0.3) 0%, transparent 70%);
    bottom: 5%;
    left: 5%;
}

.hero-orb--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(61, 106, 159, 0.4) 0%, transparent 70%);
    top: 40%;
    left: 30%;
}

/* Hero Dot Pattern */
.hero-pattern {
    background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* Float Animations */
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes float-delayed {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-25px, 25px) scale(1.03); }
    66% { transform: translate(15px, -15px) scale(0.97); }
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

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

.animate-float-delayed {
    animation: float-delayed 10s ease-in-out infinite;
}

.animate-float-slow {
    animation: float-slow 12s ease-in-out infinite;
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .animate-float, .animate-float-delayed, .animate-float-slow {
        animation: none;
    }
    html {
        scroll-behavior: auto;
    }
}

/* Navbar */
#navbar.scrolled {
    background: rgba(15, 31, 61, 0.95);
    backdrop-blur-xl;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-link {
    position: relative;
}

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

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

.nav-link:hover {
    color: #fff !important;
}

/* Mobile Menu */
.mobile-link {
    position: relative;
    display: block;
    padding: 8px 0;
}

/* FAQ */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s ease;
}

.faq-content.open {
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Service Cards */
.service-card {
    opacity: 1;
    transform: translateY(0);
}

/* Approach Steps */
.approach-orb {
    pointer-events: none;
}

.approach-orb2 {
    pointer-events: none;
}

.approach-step {
    opacity: 1;
    transform: translateY(0);
}

/* Form Focus Styles */
input:focus, textarea:focus {
    border-color: #e0b95e !important;
    box-shadow: 0 0 0 3px rgba(224, 185, 94, 0.15);
}

/* Smooth transitions for all interactive elements */
a, button {
    transition: all 0.25s ease;
}

/* Selection color */
::selection {
    background: rgba(212, 168, 67, 0.3);
    color: #0f1f3d;
}
