/* assets/css/style.css */
:root {
    --primary-dark: #0A1F44;
    --primary-gold: #D4AF37;
    --primary-gold-light: #F3E5AB;
    --accent-crimson: #8B1E3F;
    --gray-bg: #F8F9FD;
    --white: #ffffff;
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--gray-bg);
    color: #1e293b;
    line-height: 1.5;
    overflow-x: hidden;
}

/* Glassmorphism Nav */
.glass-nav {
    background: rgba(10, 31, 68, 0.92);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: var(--primary-gold);
    font-size: 2rem;
}

.logo .highlight {
    color: var(--primary-gold);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: #f1f5f9;
    font-weight: 500;
    transition: var(--transition);
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.nav-menu li a:hover, .nav-menu li a.active {
    color: var(--primary-gold);
}

.btn-outline-light {
    border: 2px solid var(--primary-gold);
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    background: transparent;
    color: var(--primary-gold) !important;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: var(--primary-gold);
    color: var(--primary-dark) !important;
    border-color: var(--primary-gold);
}

.nav-toggle {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}

/* Hero Section Premium */
.hero-premium {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.4)), url('../images/hero.avif') no-repeat;
    /* background:  url('../images/hero.avif') no-repeat; */
    background-size: cover;
    background-position: center 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    justify-items: center;
    max-width: 1280px;
    width: 100%;
    padding: 2rem;
    z-index: 10;
    position: relative;
}

/* Helicopter Image Side */
.hero-helicopter {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 400px;
}

.helicopter-wrapper {
    position: relative;
    animation: helicopterFly 3s ease-in-out infinite;
}

/* @keyframes helicopterFly {
    0% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(20px) translateY(-15px);
    }
    50% {
        transform: translateX(0) translateY(-30px);
    }
    75% {
        transform: translateX(-20px) translateY(-15px);
    }
    100% {
        transform: translateX(0) translateY(0);
    }
} */

/* @keyframes helicopterFly {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -8px) rotate(1deg);
    }
    50% {
        transform: translate(0, -16px) rotate(0deg);
    }
    75% {
        transform: translate(-10px, -8px) rotate(-1deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
} */

@keyframes helicopterFly {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    20% {
        transform: translateY(-6px) rotate(1deg);
    }
    40% {
        transform: translateY(-12px) rotate(0deg);
    }
    60% {
        transform: translateY(-8px) rotate(-1deg);
    }
    80% {
        transform: translateY(-4px) rotate(0.5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}


.helicopter-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    max-height: 600px;
    object-fit: contain;
}

.helicopter-img-mobile {
    display: none;
}

.helicopter-img-desktop {
    display: block;
}

@media (max-width: 768px) {
    .helicopter-img-desktop {
        display: none;
    }
    
    .helicopter-img-mobile {
        display: block;
    }
}

.hero-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.btn-gold {
    background: var(--primary-gold);
    color: var(--primary-dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

.btn-gold:hover {
    background: #c8a52e;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* Cards, Grids */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.section-sub {
    text-align: center;
    color: #4b5563;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: transparent;
    margin: 0 auto;
    max-width: 1200px;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    transition: transform 0.5s ease-in-out;
}

.carousel-track.paused {
    transition: none;
}

.carousel-container:hover .carousel-nav-btn {
    opacity: 1;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
    transition: opacity 0.3s ease, background 0.3s ease;
    opacity: 0.7;
}

.carousel-nav-btn:hover {
    background: rgba(212, 175, 55, 1);
}

.carousel-nav-btn:disabled {
    opacity: 0.3 !important;
    cursor: not-allowed;
    background: rgba(212, 175, 55, 0.5) !important;
}

.carousel-nav-btn.prev {
    left: 10px;
}

.carousel-nav-btn.next {
    right: 10px;
}

.premium-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.carousel-track .premium-card {
    width: 350px;
    height: 520px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .carousel-track .premium-card {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .carousel-track .premium-card {
        width: 250px;
    }
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.price-tag {
    color: var(--primary-gold);
    font-weight: 800;
    font-size: 1rem;
    margin: 0.5rem 0;
}

.card-content .btn-gold {
    margin-top: auto;
}

/* Booking form glass */
.glass-form {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 32px;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-weight: 600;
    color: var(--primary-dark);
}

.input-group input, .input-group select, .input-group textarea {
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: #fefefe;
}

.input-group input:focus, .input-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.full-width {
    grid-column: span 2;
}

/* Footer */
.footer-modern {
    background: var(--primary-dark);
    color: #cbd5e1;
    padding: 3rem 2rem 1.5rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20px, 1fr));
    gap: 2rem;
}

.footer-col h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 2rem;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .hero-helicopter {
        height: 300px;
    }
    
    .helicopter-img {
        max-height: 250px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: var(--primary-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
        backdrop-filter: blur(10px);
        z-index: 999;
    }
    .nav-menu.active {
        left: 0;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .full-width {
        grid-column: span 1;
    }
    .section-title {
        font-size: 1.8rem;
    }
}

/* Video hero section alternative */
.video-overlay {
    position: relative;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Floating WhatsApp Button Container */
.whatsapp-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
}

.whatsapp-float {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .whatsapp-container {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 32px;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    margin: auto;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease;
    z-index: 2001;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-dark);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary-gold);
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    text-align: center;
}

.modal-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }
}

/* FAQ Details Styling */
details {
    transition: all 0.3s ease;
}

details[open] {
    background: #f8f9fd !important;
}

details summary {
    user-select: none;
    position: relative;
    padding-right: 2rem;
}

details summary::-webkit-details-marker {
    position: absolute;
    right: 0.5rem;
}

details summary:hover {
    color: var(--primary-gold) !important;
}

details p {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Table Styling */
table {
    width: 100%;
}

table thead th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    border: 1px solid #ddd;
}

table tbody td {
    padding: 1rem;
    border: 1px solid #ddd;
}

table tbody tr:hover {
    background: #f8f9fd !important;
    transition: background 0.2s ease;
}

/* =============================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ============================================= */

/* Extra Small Devices (320px - 480px) - Mobile Phones */
@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo a {
        font-size: 1.3rem;
    }

    .logo a img {
        height: 40px;
    }

    .hero-premium {
        min-height: 70vh;
    }

    .hero-container {
        gap: 1rem;
        padding: 1rem;
    }

    .hero-helicopter {
        height: 200px;
    }

    .helicopter-img {
        max-height: 180px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .btn-gold {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .container {
        padding: 2rem 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-sub {
        font-size: 0.9rem;
    }

    .carousel-track .premium-card {
        width: 100%;
        height: auto;
    }

    .carousel-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-nav-btn.prev {
        left: 5px;
    }

    .carousel-nav-btn.next {
        right: 5px;
    }

    .premium-card {
        border-radius: 16px;
    }

    .card-img {
        height: 180px;
    }

    .card-content {
        padding: 1rem;
    }

    .card-content h3 {
        font-size: 1.1rem;
    }

    .price-tag {
        font-size: 0.9rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .glass-form {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .input-group input, 
    .input-group select, 
    .input-group textarea {
        padding: 0.8rem;
        border-radius: 12px;
        font-size: 16px;
    }

    .modal-content {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .modal-title {
        font-size: 1.3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-col h4 {
        font-size: 1rem;
    }

    .whatsapp-container {
        bottom: 1rem;
        right: 1rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* Small Devices (481px - 768px) - Mobile Phones & Tablets Portrait */
@media (max-width: 768px) and (min-width: 481px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .logo a {
        font-size: 1.5rem;
    }

    .logo a img {
        height: 45px;
    }

    .hero-premium {
        min-height: 75vh;
    }

    .hero-container {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .hero-helicopter {
        height: 250px;
    }

    .helicopter-img {
        max-height: 220px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-gold {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .container {
        padding: 3rem 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-sub {
        font-size: 0.95rem;
    }

    .carousel-track .premium-card {
        width: 100%;
        height: auto;
    }

    .carousel-nav-btn {
        width: 45px;
        height: 45px;
    }

    .card-img {
        height: 200px;
    }

    .card-content {
        padding: 1.2rem;
    }

    .card-content h3 {
        font-size: 1.2rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .glass-form {
        padding: 2rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Medium Devices (769px - 1024px) - Tablets & Small Laptops */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-premium {
        min-height: 80vh;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .hero-helicopter {
        height: 300px;
    }

    .helicopter-img {
        max-height: 280px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .btn-gold {
        padding: 0.95rem 2.2rem;
    }

    .carousel-track .premium-card {
        width: 300px;
        height: 480px;
    }

    .card-img {
        height: 220px;
    }

    .container {
        padding: 3.5rem 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Large Devices (1025px - 1440px) - Desktop */
@media (min-width: 1025px) and (max-width: 1440px) {
    .hero-premium {
        min-height: 85vh;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        padding: 2rem;
    }

    .hero-helicopter {
        height: 400px;
    }

    .helicopter-img {
        max-height: 600px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .carousel-track .premium-card {
        width: 350px;
        height: 520px;
    }

    .container {
        padding: 4rem 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Extra Large Devices (1441px+) - Large Monitors */
@media (min-width: 1441px) {
    :root {
        --max-width: 1400px;
    }

    .hero-premium {
        min-height: 90vh;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        padding: 3rem;
        max-width: 1400px;
    }

    .hero-helicopter {
        height: 450px;
    }

    .helicopter-img {
        max-height: 700px;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .hero-content p {
        font-size: 1.4rem;
    }

    .carousel-track .premium-card {
        width: 380px;
        height: 550px;
    }

    .container {
        padding: 5rem 3rem;
        max-width: 1400px;
    }

    .section-title {
        font-size: 3rem;
    }

    .section-sub {
        font-size: 1.2rem;
    }

    .form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

/* =============================================
   VIEWPORT-SPECIFIC OPTIMIZATIONS
   ============================================= */

/* Landscape Mode (Mobile) */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-premium {
        min-height: 100vh;
        padding: 1rem 0;
    }

    .hero-container {
        gap: 1rem;
    }

    .hero-helicopter {
        height: 200px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .nav-toggle {
        display: block;
    }
}

/* Portrait Mode */
@media (orientation: portrait) {
    body {
        overflow-x: hidden;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn-gold,
    .carousel-nav-btn,
    .whatsapp-float {
        padding: 1rem;
        min-height: 44px;
        min-width: 44px;
    }

    .carousel-nav-btn {
        width: 50px;
        height: 50px;
    }
}

/* High DPI Screens (Retina) */
@media (min-resolution: 192dpi) {
    * {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Print Styles */
@media print {
    .glass-nav,
    .whatsapp-container,
    .carousel-nav-btn,
    .modal {
        display: none !important;
    }

    .hero-premium {
        min-height: auto;
    }

    .container {
        padding: 2rem 1rem;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .helicopter-wrapper {
        animation: none !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #0a0e27;
        color: #e0e0e0;
    }

    .glass-form,
    .premium-card,
    .modal-content {
        background: #1a1f3a;
        color: #e0e0e0;
    }

    .input-group input,
    .input-group select,
    .input-group textarea {
        background: #2a2f4a;
        color: #e0e0e0;
        border-color: #3a3f5a;
    }
}