/* Explain: App-specific component classes and scroll animations. - */
.glass-capsule {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px -10px rgba(11, 29, 46, 0.1);
}

.arch-mask {
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
}

.btn-gold {
    background-color: var(--primary-color);
    color: var(--surface-color);
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-navy {
    background-color: var(--secondary-color);
    color: var(--surface-color);
    transition: all 0.3s ease;
}
.btn-navy:hover {
    background-color: var(--secondary-hover);
}

.form-input-lux {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.75rem 0;
    color: var(--surface-color);
    transition: border-color 0.3s;
}
.form-input-lux:focus {
    outline: none;
    border-bottom-color: var(--surface-color);
}
.form-input-lux::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse Glow for CTAs */
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(217, 164, 65, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(217, 164, 65, 0); }
    100% { box-shadow: 0 0 0 0 rgba(217, 164, 65, 0); }
}
.cta-pulse {
    animation: pulse-glow 2s infinite;
}

/* Swiper Customizations */
.swiper-pagination-bullet {
    background: var(--primary-color) !important;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    opacity: 1;
}
