        .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.85) 0%, rgba(0, 17, 51, 0.95) 100%), url('../img/pimpin-canseleri.jpg');
            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 */
        }

        /* Form Input Styling overrides */
        .form-input {
            width: 100%;
            border-radius: 0.5rem;
            border: 1px solid #e5e7eb;
            background-color: #f9fafb;
            padding: 0.75rem 1rem;
            font-size: 0.875rem;
            color: #1f2937;
            transition: all 0.3s;
        }
        .form-input:focus {
            outline: none;
            border-color: #DEC07C;
            background-color: #fff;
            box-shadow: 0 0 0 3px rgba(222, 192, 124, 0.2);
        }
        
        .bank-details-card {
            background: linear-gradient(135deg, #00263D 0%, #001133 100%);
        }
