body {
    background-color: #fff7ed;
    color: #134e4a;
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
}

/* Hero Overlay Gradient */
.hero-gradient {
    background: linear-gradient(to bottom, rgba(19, 78, 74, 0.3), rgba(19, 78, 74, 0.8));
}

/* Glassmorphism */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

/* Card Hover - Lift Up */
.package-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -5px rgba(13, 148, 136, 0.15);
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #fff7ed; }
::-webkit-scrollbar-thumb { background: #0d9488; border-radius: 10px; }

/* Plane Animation */
@keyframes fly {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -5px) rotate(-5deg); }
    50% { transform: translate(0, -10px) rotate(0deg); }
    75% { transform: translate(-5px, -5px) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}
.animate-fly { animation: fly 6s infinite ease-in-out; }
