/* Elegant Jets Style - Harrell Aviation */
/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --secondary-black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #a0a0a0;
    --white: #ffffff;
    --accent-gold: #c0c0c0;
    --accent-blue: #4a90e2;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--primary-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation - Elegant Style */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-logo h1 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-dropdown {
    position: relative;
}

/* Add invisible bridge to make dropdown easier to access */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 20px;
    display: none;
}

.nav-dropdown:hover::after {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: rgba(0, 0, 0, 0.98);
    min-width: 300px;
    padding: 1.5rem 0;
    margin-top: 0;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 1.25rem 2rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    line-height: 1.6;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
    padding-left: 2.25rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-icon {
    font-size: 1rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    margin: -12px -12px -12px 0;
    position: relative;
    z-index: 1003;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

/* Buttons - Elegant Style */
.btn-primary {
    background-color: var(--white);
    color: var(--primary-black);
    border: none;
    padding: 0.75rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--accent-gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Section - Elegant Style */
.hero-elegant {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 2;
}

.hero-content-elegant {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    margin-top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title-elegant {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 3rem;
    letter-spacing: -1px;
    color: var(--white);
}

.hero-title-line {
    display: block;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 8rem;
}

.btn-hero-primary {
    background-color: var(--white);
    color: var(--primary-black);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-hero-primary:hover {
    background-color: var(--accent-gold);
    color: var(--white);
}

.btn-hero-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background-color: var(--white);
    color: var(--primary-black);
}

/* Inline Booking Form - Elegant Style */
.booking-form-inline {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    justify-content: center;
    max-width: 1200px;
    width: 85%;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.booking-field label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.booking-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-size: 0.9375rem;
    min-width: 180px;
    transition: var(--transition);
}

.booking-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.booking-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background-color: rgba(255, 255, 255, 0.15);
}

.guest-counter {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 4px;
}

.guest-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.guest-btn:hover {
    color: var(--accent-gold);
}

.btn-booking-submit {
    background-color: var(--white);
    color: var(--primary-black);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
}

.btn-booking-submit:hover {
    background-color: var(--accent-gold);
    color: var(--white);
}

/* What Sets Apart Section */
.section-dark {
    background-color: var(--primary-black);
    padding: 6rem 0;
}

.section-what-sets-apart {
    padding: 8rem 0;
}

.section-header-elegant {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.section-title-elegant {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.section-header-buttons {
    display: flex;
    gap: 1rem;
}

.btn-secondary-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary-outline:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Features Grid - Elegant Style */
.features-grid-elegant {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card-elegant {
    background-color: var(--dark-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.feature-card-elegant:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.feature-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.feature-card-elegant:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content {
    padding: 2.5rem;
}

.feature-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-content p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.btn-link-arrow {
    background: none;
    border: none;
    color: var(--accent-gold);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-link-arrow:hover {
    color: var(--white);
    transform: translateX(5px);
}

/* App Section */
.section-app {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--secondary-black) 100%);
    padding: 8rem 0;
}

.app-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.app-text-content {
    text-align: center;
    margin-bottom: 4rem;
}

.app-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-app-download,
.btn-app-learn {
    background-color: var(--white);
    color: var(--primary-black);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-app-download:hover,
.btn-app-learn:hover {
    background-color: var(--accent-gold);
    color: var(--white);
}

.app-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.app-feature-item {
    text-align: center;
}

.app-feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.app-feature-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.app-feature-item p {
    color: var(--light-gray);
    line-height: 1.8;
}


/* Aircraft Hero Section */
.section-aircraft-hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.aircraft-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.aircraft-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aircraft-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    z-index: 2;
}

.aircraft-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.aircraft-hero-subtitle {
    font-size: 1rem;
    color: var(--light-gray);
    margin-bottom: 1rem;
    font-weight: 500;
}

.aircraft-hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.aircraft-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Programs Cards Section */
.section-programs-cards {
    background-color: var(--secondary-black);
    padding: 8rem 0;
}

.section-title-center-elegant {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
}

.programs-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.program-card-elegant {
    background-color: var(--dark-gray);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.program-card-elegant:hover {
    background-color: var(--medium-gray);
    transform: translateY(-5px);
}

.program-icon-large {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.program-card-elegant h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.program-card-elegant p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Promotional Banner */
.section-promo-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 6rem 0;
    text-align: center;
}

.promo-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.promo-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.promo-highlight {
    display: block;
    color: var(--accent-gold);
    font-weight: 600;
}

.promo-text {
    font-size: 1.125rem;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.promo-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-promo-primary {
    background-color: var(--white);
    color: var(--primary-black);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-promo-primary:hover {
    background-color: var(--accent-gold);
    color: var(--white);
}

.btn-promo-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-promo-secondary:hover {
    background-color: var(--white);
    color: var(--primary-black);
}


/* Footer - Elegant Style */
.footer-elegant {
    background-color: var(--primary-black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-social {
    display: flex;
    gap: 2rem;
}

.social-link {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--white);
}

.footer-cta {
    text-align: center;
    margin-bottom: 4rem;
}

.btn-footer-cta {
    background-color: var(--white);
    color: var(--primary-black);
    border: none;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-footer-cta:hover {
    background-color: var(--accent-gold);
    color: var(--white);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-column a {
    display: block;
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-disclaimer {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.75rem;
    color: var(--light-gray);
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--light-gray);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--white);
}

/* Modal - Elegant Style (Hidden - form now opens in new tab) */
.modal {
    display: none !important;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-y: auto;
    padding: 2rem 0;
}

.modal.active {
    display: none !important;
}

.modal-content-elegant {
    background-color: var(--dark-gray);
    padding: 3rem;
    border-radius: 12px;
    max-width: 700px;
    width: 90%;
    position: relative;
    margin: 4rem auto;
    max-height: calc(100vh - 8rem);
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--accent-gold);
}

.modal-content-elegant h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--light-gray);
    margin-bottom: 2rem;
}

.booking-form-modal {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.form-group label {
    font-size: 0.875rem;
    color: var(--light-gray);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.875rem;
    border-radius: 4px;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group select {
    background-color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.form-group select option {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 0.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background-color: rgba(0, 0, 0, 0.9);
}

.form-checkbox {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
}

.form-checkbox label {
    font-size: 0.75rem;
    color: var(--light-gray);
    line-height: 1.5;
}

.btn-submit-modal {
    background-color: var(--white);
    color: var(--primary-black);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-submit-modal:hover {
    background-color: var(--accent-gold);
    color: var(--white);
}


/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.75rem;
    }

    .hero-title-elegant {
        font-size: 3.5rem;
        line-height: 1.1;
    }

    .hero-content-elegant {
        margin-top: 0;
    }

    .hero-buttons {
        margin-bottom: 6rem;
        gap: 1.25rem;
    }

    .booking-form-inline {
        flex-wrap: wrap;
        bottom: 3rem;
        gap: 1rem;
    }

    .section-title-elegant,
    .section-title-center-elegant,
    .app-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .feature-card-elegant,
    .program-card-elegant {
        transition: transform 0.2s ease;
    }

    .feature-card-elegant:active,
    .program-card-elegant:active {
        transform: scale(0.98);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-logo h1 {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: var(--transition);
        align-items: flex-start;
        gap: 1.5rem;
        overflow-y: auto;
        z-index: 1001;
    }

    .nav-menu.active {
        right: 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: static;
        display: none;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        margin-top: 0.5rem;
        padding: 0.5rem 0;
    }

    .nav-dropdown:hover .dropdown-content,
    .nav-dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1003;
        min-width: 52px;
        min-height: 52px;
        align-items: center;
        justify-content: center;
    }

    .nav-right {
        gap: 0.5rem;
    }

    .nav-phone {
        display: none;
    }

    /* Hide Request Charter button in header on mobile */
    .nav-right .btn-primary {
        display: none;
    }

    /* Fix hero section visibility on mobile */
    .hero-elegant {
        min-height: 100vh;
        height: auto;
        background-size: cover !important;
        background-position: center !important;
        background-attachment: scroll !important;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    }

    .hero-content-elegant {
        position: relative;
        z-index: 10;
        margin-top: 0;
        padding: 2rem 1.5rem;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-title-elegant {
        font-size: 3.5rem;
        line-height: 1.1;
        text-align: center;
        color: var(--white);
        margin-bottom: 2rem;
        font-weight: 300;
        letter-spacing: -1px;
    }

    .hero-title-line {
        display: block;
    }

    .hero-subtitle-elegant {
        font-size: 1rem;
        text-align: center;
        color: var(--white);
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 5rem;
        gap: 1rem;
        width: 100%;
        padding: 0 1rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        padding: 1.125rem 2rem;
        font-size: 1rem;
        text-align: center;
        justify-content: center;
        display: inline-flex;
        align-items: center;
    }

    /* Hide booking form on mobile */
    .booking-form-inline {
        display: none !important;
    }

    .section-header-elegant {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .section-title-elegant,
    .section-title-center-elegant {
        font-size: 2rem;
        line-height: 1.2;
    }

    .features-grid-elegant {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-card-elegant {
        padding: 2rem 1.5rem;
    }

    .app-features {
        grid-template-columns: 1fr;
    }

    .programs-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .program-card-elegant {
        padding: 2.5rem 2rem;
    }

    .promo-title {
        font-size: 2rem;
    }

    .promo-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-disclaimer {
        padding: 2rem 1.5rem;
    }

    .footer-disclaimer p {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .footer-social {
        flex-wrap: wrap;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-column a {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0.875rem 1rem;
    }

    .nav-logo h1 {
        font-size: 0.875rem;
        letter-spacing: 1px;
    }

    .nav-menu {
        width: 90%;
    }

    .mobile-menu-btn {
        min-width: 48px;
        min-height: 48px;
        padding: 10px;
    }

    .mobile-menu-btn span {
        width: 26px;
        height: 3px;
    }

    /* Ensure header button stays hidden on small mobile */
    .nav-right .btn-primary {
        display: none;
    }

    /* Hero section adjustments for small mobile */
    .hero-elegant {
        min-height: 100vh;
        height: auto;
    }

    .hero-content-elegant {
        position: relative;
        z-index: 10;
        margin-top: 0;
        padding: 2rem 1rem;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-title-elegant {
        font-size: 2.75rem;
        margin-bottom: 1.5rem;
        line-height: 1.1;
        text-align: center;
        color: var(--white);
        font-weight: 300;
        letter-spacing: -0.75px;
    }

    .hero-title-line {
        display: block;
    }

    .hero-subtitle-elegant {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        text-align: center;
        color: var(--white);
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        margin-bottom: 4rem;
        gap: 0.875rem;
        width: 100%;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 1rem 1.75rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
        display: inline-flex;
        align-items: center;
    }

    /* Keep booking form hidden on small mobile */
    .booking-form-inline {
        display: none !important;
    }

    .section-title-elegant,
    .section-title-center-elegant {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .section-subtitle-elegant {
        font-size: 0.95rem;
    }

    .feature-card-elegant {
        padding: 1.75rem 1.25rem;
    }

    .feature-icon-elegant {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .feature-card-elegant h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .feature-card-elegant p {
        font-size: 0.9rem;
    }

    .program-card-elegant {
        padding: 2rem 1.5rem;
    }

    .program-icon-large {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .program-card-elegant h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .program-card-elegant p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .btn-link-arrow {
        font-size: 0.9rem;
    }

    .aircraft-hero-title {
        font-size: 2rem;
    }

    .modal {
        padding: 0.5rem 0;
    }

    .modal-content-elegant {
        padding: 1.5rem 1rem;
        margin: 1rem auto;
        width: 96%;
        max-height: calc(100vh - 2rem);
        border-radius: 8px;
    }

    .modal-content-elegant h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .modal-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .modal-close {
        top: 0.75rem;
        right: 0.75rem;
        font-size: 1.5rem;
        width: 32px;
        height: 32px;
    }

    .footer-disclaimer {
        padding: 1.5rem 1rem;
    }

    .footer-disclaimer p {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column {
        text-align: left;
    }

    .footer-column h4 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .footer-column a {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .footer-legal a {
        font-size: 0.8rem;
    }
}

/* Touch-Friendly Improvements */
button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
    touch-action: manipulation;
}

/* Ensure minimum touch target size (44x44px for iOS, 48x48px for Android) */
@media (max-width: 768px) {
    button,
    .btn-primary,
    .btn-secondary,
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-cta-primary,
    .btn-cta-secondary,
    .category-btn,
    .mobile-menu-btn {
        min-height: 44px;
        min-width: 44px;
    }

    a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    /* Improve form inputs for mobile */
    input,
    select,
    textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px;
    }

    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
        position: relative;
    }

    /* Improve scrolling performance */
    * {
        -webkit-overflow-scrolling: touch;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

/* Airport Autocomplete Styles */
.autocomplete-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: var(--dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-top: 2px;
}

.autocomplete-items div {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.autocomplete-items div:hover,
.autocomplete-items div.autocomplete-active {
    background-color: var(--medium-gray);
}

.autocomplete-items div:last-child {
    border-bottom: none;
}

.autocomplete-items strong {
    color: var(--accent-gold);
    font-size: 1.1em;
}

.autocomplete-items small {
    display: block;
    margin-top: 4px;
    font-size: 0.85em;
    color: var(--light-gray);
}

/* Scrollbar for autocomplete */
.autocomplete-items::-webkit-scrollbar {
    width: 8px;
}

.autocomplete-items::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.autocomplete-items::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.autocomplete-items::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Mobile-specific autocomplete improvements */
@media (max-width: 768px) {
    .autocomplete-items {
        max-height: 250px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .autocomplete-items div {
        padding: 14px 16px;
        min-height: 44px; /* Touch-friendly */
    }

    .autocomplete-items strong {
        font-size: 1em;
    }

    .autocomplete-items small {
        font-size: 0.8em;
    }
}
