.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.glass-card {
    background: rgba(252, 249, 242, 0.6);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(119, 90, 25, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 51, 102, 0.08);
}

.hero-gradient {
    background: linear-gradient(to bottom, rgba(0, 30, 64, 0.4), rgba(252, 249, 242, 1));
}

.glass-panel {
    background: rgba(252, 249, 242, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(119, 90, 25, 0.2);
}

.text-shadow-subtle {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.trips-page .material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

.about-page .material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

.destinations-page .glass-card {
    background: rgba(252, 249, 242, 0.75);
    backdrop-filter: blur(24px);
    border-top: 1px solid rgba(119, 90, 25, 0.3);
    box-shadow: 0 10px 30px -5px rgba(0, 51, 102, 0.08);
}

.destinations-page .hero-gradient {
    background: linear-gradient(to bottom, rgba(0, 30, 64, 0.4), rgba(0, 30, 64, 0.1));
}

.destinations-page .material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.services-page .glass-card {
    background: rgba(252, 249, 242, 0.7);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(233, 193, 118, 0.3);
    box-shadow: none;
}

.form-input-focus:focus {
    border-bottom-color: #e9c176 !important;
    outline: none;
}

.text-underline-expand {
    position: relative;
}

.text-underline-expand::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: #003366;
    transition: width 0.3s ease;
}

.text-underline-expand:hover::after {
    width: 100%;
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.shimmer {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
