/* Custom Colors - Dark Navy & Lemon Gradient */
:root {
    --navy-900: #0a1929;
    --navy-800: #132f4c;
    --navy-700: #1e4976;
    --navy-600: #2c5282;
    --lemon-100: #fef9c3;
    --lemon-200: #fef08a;
    --lemon-300: #fde047;
    --lemon-400: #fcd34d;
    --lemon-500: #fbbf24;
    --lemon-600: #f59e0b;
    --lemon-700: #d97706;
    --lemon-800: #b45309;
    --lemon-gradient: linear-gradient(135deg, #FDE047 0%, #FCD34D 50%, #FBBF24 100%);
    --navy-lemon-gradient: linear-gradient(135deg, #0a1929 0%, #132f4c 30%, #1e4976 60%, #FDE047 100%);
    /* Legacy gold variables for backward compatibility - now using lemon */
    --gold-gradient: linear-gradient(135deg, #FDE047 0%, #FCD34D 50%, #FBBF24 100%);
    --navy-gold-gradient: linear-gradient(135deg, #0a1929 0%, #132f4c 30%, #1e4976 60%, #FDE047 100%);
}

/* ============================================
   PROFESSIONAL HEADER & NAVIGATION STYLES
   ============================================ */

/* Header Container */
.header-professional {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 25, 41, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(251, 191, 36, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-professional.scrolled {
    background: rgba(10, 25, 41, 0.99);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}

/* Navigation Wrapper */
.nav-professional {
    width: 100%;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Brand/Logo Section */
.nav-brand {
    flex-shrink: 0;
    z-index: 10;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-link:hover {
    transform: translateY(-2px);
}

.brand-icon-wrapper {
    width: 48px;
    height: 48px;
    background: var(--gold-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-link:hover .brand-icon-wrapper {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.brand-icon {
    font-size: 1.5rem;
    color: #0a1929;
    font-weight: 600;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.brand-tagline {
    font-size: 0.7rem;
    font-weight: 500;
    color: #fbbf24;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Desktop Navigation Menu */
.nav-menu-desktop {
    display: none;
    flex: 1;
    justify-content: flex-end;
}

@media (min-width: 1024px) {
    .nav-menu-desktop {
        display: flex;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list-item {
    position: relative;
}

/* Navigation Links */
.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(94, 234, 212, 0.08);
}

.nav-link:hover::before {
    width: 60%;
}

.nav-link.active {
    color: #fbbf24;
    background: rgba(94, 234, 212, 0.12);
}

.nav-link.active::before {
    width: 60%;
}

.nav-link-text {
    position: relative;
    z-index: 1;
}

.nav-chevron {
    font-size: 0.7rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 0.25rem;
}

.nav-dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

/* CTA Button */
.nav-cta-btn {
    background: var(--gold-gradient);
    color: #0a1929 !important;
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    margin-left: 0.5rem;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
    border: none;
}

.nav-cta-btn::before {
    display: none;
}

.nav-cta-btn:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    color: #0a1929 !important;
}

.nav-cta-btn .nav-link-text {
    margin-right: 0.5rem;
}

/* Mega Menu Dropdown */
.nav-mega-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    min-width: 600px;
}

.nav-dropdown:hover .nav-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.mega-menu-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
    position: relative;
    overflow: hidden;
}

.mega-menu-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
}

.mega-menu-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0a1929;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f3f4f6;
}

.mega-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mega-menu-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.5rem;
    color: #4b5563;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.mega-menu-link i {
    color: #2dd4bf;
    font-size: 1rem;
    width: 20px;
    text-align: center;
    transition: transform 0.2s;
}

.mega-menu-link:hover {
    color: #0a1929;
    background: rgba(94, 234, 212, 0.1);
    padding-left: 1rem;
}

.mega-menu-link:hover i {
    transform: scale(1.2);
    color: #d97706;
}

/* Mobile Menu Toggle Button */
.nav-mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 6px;
    z-index: 1001;
    transition: all 0.3s;
}

@media (min-width: 1024px) {
    .nav-mobile-toggle {
        display: none;
    }
}

.hamburger-line {
    width: 24px;
    height: 2.5px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.nav-mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Menu */
.nav-mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 25, 41, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 999;
    border-top: 1px solid rgba(94, 234, 212, 0.1);
}

.nav-mobile-menu[aria-hidden="false"] {
    transform: translateX(0);
}

.nav-mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-menu-content {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 100%;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.mobile-nav-link i {
    width: 24px;
    text-align: center;
    color: #fbbf24;
    font-size: 1.125rem;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #ffffff;
    background: rgba(94, 234, 212, 0.12);
    border-color: rgba(94, 234, 212, 0.2);
    transform: translateX(4px);
}

.mobile-nav-link.mobile-nav-cta {
    background: var(--gold-gradient);
    color: #0a1929;
    font-weight: 600;
    margin-top: 1rem;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.mobile-nav-link.mobile-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

/* Mobile Accordion */
.mobile-nav-accordion {
    display: flex;
    flex-direction: column;
}

.mobile-nav-accordion-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem 1.25rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-nav-accordion-btn i:first-child {
    width: 24px;
    text-align: center;
    color: #fbbf24;
    font-size: 1.125rem;
}

.accordion-arrow {
    margin-left: auto;
    transition: transform 0.3s;
    font-size: 0.875rem;
}

.mobile-nav-accordion-btn.active .accordion-arrow {
    transform: rotate(180deg);
}

.mobile-nav-accordion-btn:hover,
.mobile-nav-accordion-btn.active {
    background: rgba(94, 234, 212, 0.12);
    border-color: rgba(94, 234, 212, 0.2);
}

.mobile-nav-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-left: 1rem;
}

.mobile-nav-accordion-content.active {
    max-height: 500px;
    padding-top: 0.5rem;
}

.mobile-nav-sublink {
    display: block;
    padding: 0.75rem 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    border-radius: 8px;
    transition: all 0.2s;
    margin-left: 2.5rem;
}

.mobile-nav-sublink:hover {
    color: #fbbf24;
    background: rgba(94, 234, 212, 0.08);
    padding-left: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
    .nav-wrapper {
        padding: 0 1.5rem;
        height: 70px;
    }
    
    .brand-icon-wrapper {
        width: 42px;
        height: 42px;
    }
    
    .brand-icon {
        font-size: 1.25rem;
    }
    
    .brand-name {
        font-size: 1.25rem;
    }
    
    .brand-tagline {
        font-size: 0.65rem;
    }
    
    .nav-mobile-menu {
        top: 70px;
    }
}

@media (max-width: 640px) {
    .nav-wrapper {
        padding: 0 1rem;
    }
    
    .mega-menu-content {
        min-width: calc(100vw - 2rem);
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Parallax Hero Section */
.hero-tigren-style {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--navy-mint-gradient);
    margin-top: 80px;
    perspective: 1000px;
}

@media (max-width: 1023px) {
    .hero-tigren-style {
        margin-top: 70px;
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(94, 234, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 212, 191, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(20, 184, 166, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h100v100H0z' fill='%230a1929'/%3E%3Cpath d='M0 0l100 100M100 0L0 100' stroke='%235eead4' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
    opacity: 0.4;
    transform: translateZ(0);
    will-change: transform;
}

.parallax-layer {
    position: absolute;
    inset: 0;
    will-change: transform;
}

.parallax-layer-1 {
    background: radial-gradient(circle at 30% 40%, rgba(94, 234, 212, 0.2) 0%, transparent 60%);
    transform: translateZ(0);
}

.parallax-layer-2 {
    background: radial-gradient(circle at 70% 60%, rgba(45, 212, 191, 0.15) 0%, transparent 60%);
    transform: translateZ(0);
}

.parallax-layer-3 {
    background: radial-gradient(circle at 50% 80%, rgba(20, 184, 166, 0.1) 0%, transparent 60%);
    transform: translateZ(0);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 4rem 0;
}

.hero-text-wrapper {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title-accent {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background: var(--gold-gradient);
    color: #0a1929;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.hero-btn-primary:hover::before {
    left: 100%;
}

.hero-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(251, 191, 36, 0.4);
}

.hero-btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(94, 234, 212, 0.4);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(94, 234, 212, 0.15);
    border-color: rgba(94, 234, 212, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(94, 234, 212, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Parallax Styles */
.parallax-section {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.parallax-element {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.parallax-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gold-gradient);
    opacity: 0.05;
    transform: translateZ(-1px) scale(2);
    will-change: transform;
}

/* Section Styles */
.section-standard {
    padding: 6rem 0;
    position: relative;
}

.section-parallax {
    padding: 8rem 0;
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-with-parallax {
    position: relative;
    overflow: hidden;
}

.section-with-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-mint-gradient);
    opacity: 0.95;
    z-index: 1;
}

.section-with-parallax > * {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0a1929;
    margin-bottom: 1rem;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--gold-gradient);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
}

.section-stats {
    padding: 6rem 0;
    background: var(--navy-mint-gradient);
    position: relative;
    overflow: hidden;
}

.section-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(94, 234, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(45, 212, 191, 0.1) 0%, transparent 50%);
    animation: parallaxFloat 20s ease-in-out infinite;
}

@keyframes parallaxFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(10px);
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #0a1929;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.3);
    transition: transform 0.3s;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(94, 234, 212, 0.3);
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.focus-card-modern {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}

.focus-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(251, 191, 36, 0.2);
    border-color: #fbbf24;
}

.focus-icon-modern {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #0a1929;
    font-size: 1.75rem;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.25);
    transition: all 0.3s;
}

.focus-card-modern:hover .focus-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.4);
}

.focus-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a1929;
    margin-bottom: 0.5rem;
}

.focus-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Focus Areas Info Boxes - 3 Column Grid */
.focus-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .focus-areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .focus-areas-grid {
        grid-template-columns: 1fr;
    }
}

.info-box {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(94, 234, 212, 0.2);
    box-shadow: 
        0 4px 16px rgba(10, 25, 41, 0.08),
        0 2px 8px rgba(10, 25, 41, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-box:hover::before {
    transform: scaleX(1);
}

.info-box:hover {
    transform: translateY(-8px);
    border-color: rgba(94, 234, 212, 0.6);
    box-shadow: 
        0 20px 48px rgba(251, 191, 36, 0.25),
        0 8px 24px rgba(10, 25, 41, 0.12),
        0 0 0 1px rgba(94, 234, 212, 0.1);
}

.info-box-placeholder {
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 968px) {
    .info-box-placeholder {
        display: none;
    }
}

.info-box-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #0a1929;
    font-size: 2rem;
    box-shadow: 
        0 8px 24px rgba(251, 191, 36, 0.3),
        0 4px 12px rgba(251, 191, 36, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.info-box-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: var(--gold-gradient);
    opacity: 0;
    z-index: -1;
    filter: blur(12px);
    transition: opacity 0.4s;
}

.info-box:hover .info-box-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 32px rgba(251, 191, 36, 0.4),
        0 6px 16px rgba(251, 191, 36, 0.3);
}

.info-box:hover .info-box-icon::after {
    opacity: 0.6;
}

.info-box-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a1929;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.3s;
}

.info-box:hover .info-box-title {
    color: #d97706;
}

.info-box-description {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s;
}

.info-box:hover .info-box-description {
    color: #6b7280;
}

/* Footer Styles */
.footer-standard {
    background: #0a1929;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Tailwind Custom Colors */
.bg-navy-900 { background-color: #0a1929; }
.bg-navy-800 { background-color: #132f4c; }
.bg-navy-700 { background-color: #1e4976; }
.text-navy-900 { color: #0a1929; }
.text-navy-800 { color: #132f4c; }
.bg-lemon-400 { background-color: #fef08a; }
.bg-lemon-500 { background-color: #fde047; }
.bg-lemon-600 { background-color: #facc15; }
.text-lemon-300 { color: #fef9c3; }
.text-lemon-400 { color: #fef08a; }
.text-lemon-500 { color: #fde047; }
.from-lemon-400 { --tw-gradient-from: #fef08a; }
.to-lemon-500 { --tw-gradient-to: #fde047; }
.from-navy-900 { --tw-gradient-from: #0a1929; }
.to-navy-800 { --tw-gradient-to: #132f4c; }
.border-navy-800 { border-color: #132f4c; }

/* Navigation Styles */
.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: white;
    border-radius: 0.5rem;
    transition: all 0.3s;
    position: relative;
}

.nav-item:hover {
    background-color: #1e4976;
}

.nav-item.active {
    background: linear-gradient(to right, #fef08a, #fde047);
    color: #0a1929;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    width: 24rem;
    background-color: #132f4c;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    transition: all 0.3s;
    z-index: 50;
}

.nav-item.group:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(to right, #fef08a, #fde047);
    color: #0a1929;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.btn-primary:hover {
    background: linear-gradient(to right, #fde047, #facc15);
    transform: scale(1.05);
}

.btn-secondary {
    background-color: #1e4976;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    border: 2px solid #fef08a;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #132f4c;
    transform: scale(1.05);
}

.btn-outline {
    border: 2px solid #fef08a;
    color: #fef08a;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline:hover {
    background-color: #fef08a;
    color: #0a1929;
    transform: scale(1.05);
}

/* Focus Cards */
.focus-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.focus-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.5rem);
}

.focus-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to bottom right, #fef08a, #fde047);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #0a1929;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.focus-card:hover .focus-icon {
    transform: scale(1.1) rotate(6deg);
}

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

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 1s ease-out;
}

.animate-slide-up {
    animation: slide-up 1s ease-out 0.3s both;
}

/* Service Cards */
.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border-left: 4px solid;
}

.service-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.5rem);
}

.service-card.education {
    border-left-color: #fef08a;
}

.service-card.leadership {
    border-left-color: #1e4976;
}

.service-card.skills {
    border-left-color: #fde047;
}

.service-card.community {
    border-left-color: #132f4c;
}

.service-card.innovation {
    border-left-color: #facc15;
}

/* Program Cards */
.program-card {
    background: linear-gradient(to bottom right, white, #f9fafb);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.program-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

/* Gallery Grid */
.gallery-item {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.gallery-item:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Form Styles */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    outline: none;
    transition: all 0.3s;
}

.form-input:focus {
    border-color: #fef08a;
    box-shadow: 0 0 0 2px rgba(254, 240, 138, 0.5);
}

.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    outline: none;
    transition: all 0.3s;
    resize: none;
}

.form-textarea:focus {
    border-color: #fef08a;
    box-shadow: 0 0 0 2px rgba(254, 240, 138, 0.5);
}

/* Stats Cards */
.stat-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.5rem);
}

/* News Cards */
.news-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.news-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.5rem);
}

/* Donate Card */
.donate-card {
    background: linear-gradient(to bottom right, #fef08a, #fde047);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    color: #0a1929;
}

/* Page-specific unique designs */
.about-hero {
    background: linear-gradient(to bottom right, #0a1929, #132f4c, #0a1929);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23fef08a' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a1929;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #fef08a, #fde047);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #fde047, #facc15);
}

