/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #0B1426;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #FFFFFF;
}

.lead {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary {
    background: #CBA135;
    color: #0B1426;
    border: 2px solid #CBA135;
    font-weight: 600;
}

.btn-primary:hover {
    background: #B8941F;
    border-color: #B8941F;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(203, 161, 53, 0.3);
}

.btn-outline {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #CBA135;
}

.btn-outline:hover {
    background: #CBA135;
    color: #0B1426;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 20, 38, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(203, 161, 53, 0.2);
}

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

.nav-logo h1 {
    font-size: 1.5rem;
    margin: 0;
    color: #CBA135;
    font-family: 'Playfair Display', serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #CBA135;
}

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}


.hero-jet {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%),
                url('2.jpg') center/cover;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1rem;
    color: #CBA135;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    font-weight: 400;
    color: #FFFFFF;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    margin-top: 2rem;
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero .hero-background {
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%),
                url('1.jpeg') center/cover;
}

.jets-hero .hero-background {
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%),
                url('1.jpeg') center/cover;
}


.about-hero .hero-background {
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%),
                url('1.jpeg') center/cover;
}

.contact-hero .hero-background {
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%),
                url('1.jpeg') center/cover;
}

.page-hero .hero-content h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-hero .hero-content p {
    color: white;
    opacity: 0.9;
    font-size: 1.2rem;
}

/* Sections */
section {
    padding: 5rem 0;
}

.intro {
    background: #1A1A1A;
    text-align: center;
}

.intro-text {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    color: #FFFFFF;
}

/* Jet Preview */
.jet-preview {
    padding: 5rem 0;
    background: #0B1426;
}

.section-description {
    text-align: center;
    color: #e0e0e0;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.jet-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #CBA135;
}

.jet-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.jet-card {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(203, 161, 53, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.jet-card:hover {
    transform: translateY(-5px);
    border-color: #CBA135;
    box-shadow: 0 8px 25px rgba(203, 161, 53, 0.2);
}

.jet-image {
    height: 200px;
    background: url('https://images.unsplash.com/photo-1593001653378-987b91b27e84?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
}

/* Specific jet images - Authentic aircraft models */
.jet-card:nth-child(1) .jet-image {
    background: url('CITatioon.webp') center/cover;
}

.jet-card:nth-child(2) .jet-image {
    background: url('g650.jpg') center/cover;
}

.jet-card:nth-child(3) .jet-image {
    background: url('7500.jpg') center/cover;
}

.jet-overlay {
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.jet-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #FFFFFF;
    margin: 0;
}

.jet-rate {
    padding: 0 1.5rem;
    color: #CBA135;
    font-weight: 600;
    margin: 0 0 1.5rem;
}

.jet-card .btn {
    margin: 0 1.5rem 1.5rem;
}



/* Global Routes */
.global-routes {
    padding: 5rem 0;
    background: #0B1426;
}

.global-routes h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #CBA135;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 3rem;
}

.route {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(203, 161, 53, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.route:hover {
    transform: translateY(-5px);
    border-color: #CBA135;
    box-shadow: 0 8px 25px rgba(203, 161, 53, 0.2);
}

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

.route h3 {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.route p {
    color: #CBA135;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

/* Services Grid */
.services {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.services-grid.single-service {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.service-jets .service-image {
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%),
                url('2.jpeg') center/cover;
}


.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
    z-index: 2;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.service-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Luxury Banner */
.luxury-banner {
    background: #1A1A1A;
    color: #CBA135;
    text-align: center;
    padding: 3rem 0;
}

.luxury-banner h2 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 300;
    letter-spacing: 1px;
    color: #CBA135;
}

/* Trust Pillars */
.trust-pillars {
    background: #0B1426;
    padding: 5rem 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.pillar {
    padding: 2rem;
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pillar h3 {
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.pillar p {
    color: #f0f0f0;
    font-size: 1rem;
    opacity: 0.9;
}

/* Jet Guide */
.jet-guide {
    padding: 5rem 0;
}

.section-subtitle {
    text-align: center;
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.jet-categories {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.jet-category {
    border: 1px solid #CBA135;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(10px);
}

.jet-category:hover {
    border-color: #CBA135;
    box-shadow: 0 4px 20px rgba(203, 161, 53, 0.2);
    transform: translateY(-5px);
}

.jet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.jet-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #CBA135;
}

.jet-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.spec {
    background: rgba(203, 161, 53, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #CBA135;
    border: 1px solid rgba(203, 161, 53, 0.3);
}

.jet-description {
    margin-bottom: 1.5rem;
    color: #f0f0f0;
    opacity: 0.9;
}


/* Destinations */
.destinations {
    background: #f8f8f8;
    padding: 5rem 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.destination {
    text-align: center;
}

.destination-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%),
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Specific destination images */
.destination:nth-child(1) .destination-image {
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%),
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
}

.destination:nth-child(2) .destination-image {
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%),
                url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
}

.destination:nth-child(3) .destination-image {
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%),
                url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
}

.destination:nth-child(4) .destination-image {
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%),
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
}

.destination-overlay {
    height: 100%;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
}

.destination h3 {
    margin-bottom: 0.5rem;
}

.destination p {
    color: #666;
    font-size: 0.9rem;
}

/* APA Note */
.apa-note {
    background: #f0f0f0;
    padding: 3rem 0;
    text-align: center;
}

.apa-content h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.apa-content p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Process */
.process {
    padding: 5rem 0;
    background: #f8f8f8;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.step h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step p {
    color: #666;
}

/* CTA Panel */
.cta-panel {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta-panel h2 {
    margin-bottom: 1rem;
    color: white;
}

.cta-panel p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section {
    text-align: center;
    padding: 5rem 0;
    background: #f8f8f8;
}

.cta-section h2 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Contact Form */
.contact-form-section {
    padding: 5rem 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-success {
    text-align: center;
    padding: 3rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.form-success h3 {
    color: #27ae60;
    margin-bottom: 1rem;
}

/* Contact Info */
.contact-info {
    background: #f8f8f8;
    padding: 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-item p {
    color: #666;
    margin: 0;
}

/* About Content */
.about-content {
    padding: 5rem 0;
    text-align: center;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.brand-pillars {
    background: #f8f8f8;
    padding: 5rem 0;
}

.values {
    padding: 5rem 0;
}

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

.value h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value p {
    color: #666;
}

/* Disclaimer */
.disclaimer {
    background: #f0f0f0;
    padding: 2rem 0;
    text-align: center;
}

.disclaimer p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: #0B1426;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(203, 161, 53, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #CBA135;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-brand p {
    color: #FFFFFF;
    margin: 0;
    opacity: 0.8;
}

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

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

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-column a:hover {
    color: #CBA135;
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(203, 161, 53, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #FFFFFF;
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero {
        height: 100vh;
        padding-top: 70px;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-jet {
        flex: 1;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        height: 300px;
    }

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

    .form-actions {
        flex-direction: column;
    }

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

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .jet-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .jet-specs {
        flex-direction: column;
        gap: 0.5rem;
    }

}

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .contact-form {
        padding: 2rem 1rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

}

/* About Page Styles */
.company-story {
    padding: 5rem 0;
    background: #f8f8f8;
}

.story-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.story-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.story-item p {
    color: #333;
    line-height: 1.6;
}

.story-item h3 {
    color: #CBA135;
    margin-bottom: 1rem;
}

.story-item ul {
    list-style: none;
    padding: 0;
}

.story-item li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.story-item li::before {
    content: "•";
    color: #CBA135;
    position: absolute;
    left: 0;
}

.expertise {
    padding: 5rem 0;
    background: #0B1426;
}

.expertise h2 {
    text-align: center;
    color: #CBA135;
    margin-bottom: 3rem;
}

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

.expertise-item {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(203, 161, 53, 0.3);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-5px);
    border-color: #CBA135;
    box-shadow: 0 8px 25px rgba(203, 161, 53, 0.2);
}

.expertise-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.expertise-item h3 {
    color: #CBA135;
    margin-bottom: 1rem;
}

.expertise-item p {
    color: #e0e0e0;
}

.why-choose-us {
    padding: 5rem 0;
    background: #f8f8f8;
}

.why-choose-us h2 {
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

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

.reason-item {
    padding: 2rem;
    border-left: 4px solid #CBA135;
    background: #ffffff;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.reason-item h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.reason-item p {
    color: #333;
    line-height: 1.6;
}

.client-commitment {
    padding: 5rem 0;
    background: #1A1A1A;
}

.client-commitment h2 {
    text-align: center;
    color: #CBA135;
    margin-bottom: 3rem;
}

.commitment-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.commitment-text h3 {
    color: #CBA135;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.commitment-text h3:first-child {
    margin-top: 0;
}

.commitment-text p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.commitment-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(203, 161, 53, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #CBA135;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Decision Helper Styles */
.decision-helper {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(203, 161, 53, 0.3);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.decision-helper h3 {
    color: #CBA135;
    margin-bottom: 1.5rem;
    text-align: center;
}

.helper-questions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.question {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    border-left: 3px solid #CBA135;
}

.question strong {
    color: #CBA135;
    display: block;
    margin-bottom: 0.5rem;
}

.question p {
    color: #e0e0e0;
    margin: 0;
    font-size: 0.9rem;
}

/* Enhanced Jet Category Styles */
.jet-models, .jet-amenities {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    border-left: 3px solid #CBA135;
}

.jet-models strong, .jet-amenities strong {
    color: #CBA135;
}

.jet-models, .jet-amenities {
    color: #e0e0e0;
    font-size: 0.9rem;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .commitment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .commitment-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .story-grid, .expertise-grid, .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .helper-questions {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .commitment-stats {
        grid-template-columns: 1fr;
    }
    
    .stat {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 10000;
    max-width: 400px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification-message {
    color: #333;
    font-size: 0.9rem;
    margin-right: 1rem;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    color: #333;
}

.notification-success {
    border-left: 4px solid #27ae60;
}

.notification-error {
    border-left: 4px solid #e74c3c;
}

.notification-info {
    border-left: 4px solid #3498db;
}

.notification-warning {
    border-left: 4px solid #f39c12;
}

/* Enhanced Text Visibility */
.hero-content p,
.intro p,
.hero-subtitle {
    color: #f0f0f0 !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

/* Ensure good contrast on dark backgrounds */
.trust-pillars h3,
.global-routes h3,
.route h3 {
    color: #ffffff !important;
}

.route p,
.global-routes p {
    color: #e0e0e0 !important;
}

/* Improve form visibility */
.contact-form-section {
    background: #ffffff;
}

.contact-form-section .form-group label {
    color: #333 !important;
    font-weight: 600;
}

/* Better contrast for dark sections */
.expertise,
.client-commitment,
.trust-pillars,
.global-routes {
    background: #0B1426;
}

/* Ensure proper contrast for about page light sections */
.company-story,
.why-choose-us {
    background: #f8f8f8;
}

.company-story h2,
.why-choose-us h2 {
    color: #1a1a1a !important;
}

.story-intro {
    color: #333 !important;
}

.expertise-item,
.stat,
.commitment-text {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(203, 161, 53, 0.4);
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #CBA135;
    outline-offset: 2px;
}

/* Legal Pages */
.legal-page {
    padding: 8rem 0 5rem;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content section {
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #333;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #333;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }
    
    .nav-link:hover,
    .nav-link.active {
        text-decoration: underline;
    }
}
