/* Hero gradient background */
.hero-gradient {
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(209, 83, 10, 0.15) 0%, transparent 70%),
                radial-gradient(ellipse 60% 40% at 30% 60%, rgba(26, 74, 122, 0.12) 0%, transparent 60%);
}

/* Gradient text */
.text-gradient {
    background: linear-gradient(135deg, #d1530a, #e06520, #d1530a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navbar background on scroll */
.navbar-scrolled {
    background-color: rgba(204, 216, 217, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(13, 43, 77, 0.1);
}

/* Switch nav colors to dark when scrolled onto light sections */
.navbar-scrolled .nav-text {
    color: #0d2b4d;
}
.navbar-scrolled .nav-link {
    color: rgba(13, 43, 77, 0.7);
}
.navbar-scrolled .nav-link:hover {
    color: #0d2b4d;
}
.navbar-scrolled .nav-border {
    border-color: rgba(13, 43, 77, 0.3);
}

/* FAQ chevron rotation */
.faq-chevron.rotate {
    transform: rotate(180deg);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background-color: rgba(209, 83, 10, 0.25);
    color: #0d2b4d;
}

/* Focus ring for accessibility */
:focus-visible {
    outline: 2px solid #d1530a;
    outline-offset: 2px;
}

/* Fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

/* Subtle glow on CTA elements */
.glow {
    box-shadow: 0 0 40px rgba(209, 83, 10, 0.15);
}
