        .glass-header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .hero-pattern {
            background-image: linear-gradient(180deg, rgba(0, 38, 61, 0.95) 0%, rgba(0, 17, 51, 0.98) 100%);
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
        }

        /* Animation Classes */
        [data-animate] {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        [data-animate].is-visible {
            opacity: 1;
            transform: translateY(0);
        }

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

        /* Decorative Divider */
        .wave-divider {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }
        .wave-divider svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 60px;
        }
        .wave-divider .shape-fill {
            fill: #f9fafb; /* matches bg-gray-50 */
        }

        .interactive-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .interactive-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px -10px rgba(0, 38, 61, 0.1), 0 0 20px -5px rgba(222, 192, 124, 0.4);
            border-color: #DEC07C;
        }
