/* ===== ROOT VARIABLES ===== */
:root {
    --primary-color: #00d4ff;
    --secondary-color: #0f1419;
    --accent-color: #1a2332;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #8a9ba8;
    --platinum-accent: #e8e8e8;
    --steel-accent: #4a5568;
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    --gradient-dark: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 8px 40px rgba(0, 0, 0, 0.3);
    --shadow-aviation: 0 8px 40px rgba(0, 212, 255, 0.2);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #ffffff; /* Ensure body has solid background */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    max-width: 1600px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #2c3e50 100%);
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Make top bar responsive on mobile */
@media (max-width: 768px) {
    .top-bar {
        padding: 8px 0; /* Reduced padding for mobile */
        font-size: 14px; /* Smaller font size */
    }
    
    .contact-info span {
        font-size: 0.8rem; /* Smaller text */
        gap: 4px; /* Reduced gap */
    }
    
    .contact-info i {
        font-size: 0.8rem; /* Smaller icons */
        width: 12px;
    }
}

.contact-info span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.contact-info i {
    color: var(--primary-color);
    width: 16px;
    font-size: 0.95rem;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

/* Top bar location alignment */
.top-bar .col-md-4:last-child {
    padding-right: 32px;
}

/* ===== NAVIGATION ===== */
.main-nav {
    background: var(--secondary-color);
    padding: 15px 0;
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: backdrop-filter 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

/* Ensure navbar always has a solid background to prevent white flash */
.main-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color);
    z-index: -1;
    transition: opacity 0.4s ease;
}

.main-nav.scrolled::before {
    opacity: 0;
}

/* Add a smoother background transition */
.main-nav::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color); /* Keep same color as original */
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.main-nav.scrolled::after {
    opacity: 1;
}

.main-nav.scrolled {
    background: var(--secondary-color); /* Keep same color as original */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-light) !important;
}

.brand-logo {
    height: 100px;
    width: 150px;
    max-width: 150px;
}

.brand-text {
    display: flex;
    align-items: center;
    position: relative;
}

.brand-text-content {
    display: flex;
    flex-direction: column;
    line-height: 1;
    position: relative;
    z-index: 2;
}

.brand-main {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 400;
    color: var(--primary-color);
    font-style: italic;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.brand-sub {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
    margin-top: -1px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* Palm tree silhouette background */
.brand-text::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -15px;
    width: 40px;
    height: 30px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 30"><path d="M20 2 L15 8 L18 8 L20 12 L22 8 L25 8 L20 2 M20 12 L16 20 L18 20 L20 25 L22 20 L24 20 L20 12" fill="%23444444" opacity="0.3"/></svg>') no-repeat center;
    background-size: contain;
    z-index: 1;
    opacity: 0.4;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 15px;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}


/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(rgba(15, 20, 25, 0.1), rgba(26, 35, 50, 0.15)), 
                url('../images/palms-jets-pass-hero-bg-min.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    height: 80vh;
    height: 80dvh; /* Dynamic viewport height for mobile */
    max-height: 80vh;
    max-height: 80dvh; /* Dynamic viewport height for mobile */
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0;
    overflow: hidden;
}

/* Remove fixed background attachment to prevent scroll issues */
.hero-section {
    background-attachment: scroll;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.3) 0%, rgba(44, 44, 44, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    background: rgba(0, 0, 0, 0.4);
    padding: 30px 25px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 900px;
    margin: 0;
    margin-left: 0;
    text-align: left;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00d4ff 0%, #ffffff 50%, #e8e8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-description {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-cta {
    margin-top: 20px;
    text-align: left;
}

.hero-cta .btn-cta {
    padding: 14px 32px;
    font-size: 1.2rem;
    min-width: 180px;
    border-radius: 25px;
}

/* Hero Right Section */
.hero-right-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

/* Hero CTA Button Container */
.hero-cta-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.hero-cta-button {
    font-size: 1.4rem;
    padding: 20px 40px;
    min-width: 300px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.hero-cta-button i {
    margin-right: 10px;
    font-size: 1.2em;
}

.hero-logo {
    margin-bottom: 30px;
    text-align: center;
}

.hero-logo-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-logo-image:hover {
    transform: scale(1.05);
}


.btn {
    padding: 15px 30px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0099cc 100%);
    color: var(--text-light);
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0099cc 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 212, 255, 0.4);
    color: var(--text-light);
}


.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    font-size: 24px;
    animation: bounce 2s infinite;
    z-index: 10;
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 20px;
        font-size: 20px;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== SECTION STYLES ===== */
section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    color: var(--text-dark);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 35px;
    text-align: left;
    color: var(--text-dark);
}

.section-description {
    font-size: 1.5rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-weight: 500;
    line-height: 1.7;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    margin-top: 0;
    position: relative;
    z-index: 3;
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    color: var(--text-dark);
}

.about-section .section-title,
.about-section .section-description {
    color: var(--text-dark);
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="%2300d4ff" opacity="0.05"/><circle cx="25" cy="25" r="1" fill="%2300d4ff" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%2300d4ff" opacity="0.03"/><circle cx="50" cy="20" r="0.5" fill="%2300d4ff" opacity="0.04"/><circle cx="20" cy="70" r="0.5" fill="%2300d4ff" opacity="0.04"/><circle cx="80" cy="40" r="0.5" fill="%2300d4ff" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
    pointer-events: none;
}

/* ===== AIRCRAFT SECTION ===== */
.aircraft-section {
    padding: 100px 0 120px 0;
    background: linear-gradient(135deg, #f5f3f0 0%, #faf8f5 100%);
    position: relative;
    color: var(--text-dark);
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.aircraft-section .section-title {
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.aircraft-section .section-description {
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
}

.aircraft-image {
    position: relative;
    height: 70vh;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.aircraft-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.aircraft-image:hover img {
    transform: scale(1.05);
}

.carousel-caption {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    text-align: left;
}

.carousel-caption h5 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.carousel-caption p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.carousel-indicators {
    bottom: -80px;
    margin-bottom: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.carousel-indicators button {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(0, 0, 0, 0.3);
    margin: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.carousel-indicators button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.carousel-indicators button:hover {
    background-color: rgba(0, 212, 255, 0.3);
    border-color: var(--primary-color);
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.carousel-indicators button:hover::before {
    width: 100%;
    height: 100%;
}

.carousel-indicators button.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.7), 0 6px 20px rgba(0, 0, 0, 0.2);
}

.carousel-indicators button.active::before {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Aircraft Section Responsive */
@media (max-width: 768px) {
    .aircraft-section {
        padding: 60px 0 120px 0;
    }
    
    .aircraft-image {
        height: 50vh;
        border-radius: 8px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .carousel-indicators {
        bottom: -70px;
        gap: 10px;
    }
    
    .carousel-indicators button {
        width: 16px;
        height: 16px;
        border: 2px solid rgba(0, 0, 0, 0.3);
    }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    position: relative;
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    color: var(--text-light);
}

.pricing-section .section-title,
.pricing-section .section-description {
    color: var(--text-light);
}

.pricing-section .beyond-pass h3 {
    color: var(--text-light);
}

.pricing-section .beyond-pass p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><defs><pattern id="pricing-pattern" width="120" height="120" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="60" height="60" fill="%2300d4ff" opacity="0.02"/><rect x="60" y="60" width="60" height="60" fill="%2300d4ff" opacity="0.02"/><circle cx="30" cy="30" r="1" fill="%2300d4ff" opacity="0.04"/><circle cx="90" cy="90" r="1" fill="%2300d4ff" opacity="0.04"/></pattern></defs><rect width="120" height="120" fill="url(%23pricing-pattern)"/></svg>');
    pointer-events: none;
}

.pricing-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    color: var(--text-dark);
}

.pricing-card:hover {
    transform: translateZ(0) translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.2);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 2px solid var(--primary-color);
}

.pricing-card.featured:hover {
    transform: translateZ(0) translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.2);
    border-color: var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #2c3e50 100%);
    color: var(--text-light);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    border: 2px solid rgba(0, 212, 255, 0.2);
}

.card-header {
    padding: 30px 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.02) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
}

.card-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
    gap: 4px;
}

.price-currency {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 212, 255, 0.3);
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.price-description {
    color: var(--text-muted);
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.8;
}

.card-body {
    padding: 20px 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.features-list {
    margin-bottom: 20px;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding: 0;
    text-align: left;
}

.feature:last-child {
    margin-bottom: 0;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0099cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.feature-check i {
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.feature-text {
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.member-benefits {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 212, 255, 0.12) 100%);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(0, 212, 255, 0.15);
    margin-top: 15px;
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.member-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, rgba(0, 212, 255, 0.3) 100%);
}

.benefits-header {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.benefit {
    display: flex;
    align-items: center;
    padding: 6px 0;
    text-align: left;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 8px 12px;
    margin: -2px;
}

.benefit:hover {
    background: rgba(0, 212, 255, 0.08);
    transform: translateX(4px);
}

.benefit-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0099cc 100%);
    border-radius: 50%;
    margin-right: 14px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.4);
}

.benefit-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.card-footer {
    padding: 0 40px 0px;
    text-align: center;
}

.btn-cta {
    padding: 18px 45px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 10;
    min-width: 200px;
    text-align: center;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
}


.beyond-pass {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.beyond-pass h3 {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.beyond-pass p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    position: relative;
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    color: var(--text-dark);
}

.benefits-section .section-title {
    color: var(--text-dark);
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><defs><pattern id="benefit-pattern" width="80" height="80" patternUnits="userSpaceOnUse"><path d="M0,40 L80,40 M40,0 L40,80" stroke="%2300d4ff" stroke-width="0.5" opacity="0.03"/><circle cx="40" cy="40" r="3" fill="%2300d4ff" opacity="0.02"/><circle cx="20" cy="20" r="1" fill="%2300d4ff" opacity="0.04"/><circle cx="60" cy="60" r="1" fill="%2300d4ff" opacity="0.04"/></pattern></defs><rect width="80" height="80" fill="url(%23benefit-pattern)"/></svg>');
    pointer-events: none;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    color: var(--text-dark);
}

.benefit-item:hover {
    transform: translateZ(0) translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
    border-color: var(--primary-color);
}

.benefit-icon {
    background: var(--gradient-primary);
    color: var(--text-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.7rem;
    font-weight: 700;
}

.benefit-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6;
}

/* ===== JETSHARING SECTION ===== */
.jetsharing-section {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    position: relative;
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    color: var(--text-light);
}

.jetsharing-section .section-title,
.jetsharing-section .section-subtitle {
    color: var(--text-light);
}

.jetsharing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="jetsharing-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><polygon points="50,10 60,40 90,40 70,60 80,90 50,70 20,90 30,60 10,40 40,40" fill="%2300d4ff" opacity="0.02"/><circle cx="25" cy="25" r="2" fill="%2300d4ff" opacity="0.03"/><circle cx="75" cy="75" r="2" fill="%2300d4ff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23jetsharing-pattern)"/></svg>');
    pointer-events: none;
}

.jetsharing-content {
    padding-right: 40px;
}

.jetsharing-content .section-title {
    text-align: left;
    margin-bottom: 10px;
}

.jetsharing-content .section-description {
    text-align: left;
    margin: 0 0 30px 0;
    color: rgba(255, 255, 255, 0.8);
}

.jetsharing-benefits {
    margin-top: 40px;
}

.jetsharing-benefit {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    backdrop-filter: blur(10px);
    color: var(--text-light);
}

.jetsharing-benefit h4 {
    color: var(--text-light);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
}

.jetsharing-benefit h4 i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 20px;
}

.jetsharing-benefit p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6;
}

.jetsharing-image {
    text-align: center;
    position: relative;
}

.image-placeholder {
    background: var(--gradient-dark);
    color: var(--text-light);
    padding: 0;
    border-radius: 15px;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}


.image-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}


/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--text-light);
    padding: 60px 0 30px;
    position: relative;
    border-top: 3px solid var(--primary-color);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><defs><pattern id="footer-pattern" width="120" height="120" patternUnits="userSpaceOnUse"><circle cx="60" cy="60" r="1" fill="%2300d4ff" opacity="0.08"/><circle cx="30" cy="30" r="0.5" fill="%2300d4ff" opacity="0.05"/><circle cx="90" cy="90" r="0.5" fill="%2300d4ff" opacity="0.05"/><circle cx="60" cy="20" r="0.3" fill="%2300d4ff" opacity="0.06"/><circle cx="20" cy="80" r="0.3" fill="%2300d4ff" opacity="0.06"/><circle cx="100" cy="40" r="0.3" fill="%2300d4ff" opacity="0.06"/></pattern></defs><rect width="120" height="120" fill="url(%23footer-pattern)"/></svg>');
    pointer-events: none;
}

.footer-section h4 {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.certifications {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 20px;
    align-items: center;
    justify-content: flex-start;
}

.cert-badge {
    background: var(--accent-color);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.cert-badge i {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 10px;
}

.cert-badge span {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-light);
}

.footer-bottom {
    border-top: 1px solid var(--accent-color);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-primary);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-dark);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.7rem;
    }
    
    .section-title {
        font-size: 2.6rem;
    }
    
    html {
        scroll-padding-top: 90px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }
    
    html {
        scroll-padding-top: 85px; /* Adjusted for top bar + navbar */
    }
    
    .hero-section {
        height: 75vh;
        max-height: 75vh;
        background-attachment: scroll;
        padding: 0;
    }
    
    .hero-content {
        padding: 25px;
        max-width: 750px;
        margin: 0;
        margin-left: 0;
    }
    
    .hero-title {
        font-size: 3.8rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
        max-width: 650px;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .pricing-card.featured {
        transform: translateY(-15px) scale(1.02);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    html {
        scroll-padding-top: 90px; /* Increased to account for top bar + navbar */
    }
    
    /* Top bar mobile layout */
    .top-bar .row {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .top-bar .col-md-6 {
        width: 100%;
        text-align: center !important;
    }
    
    .top-bar .contact-info {
        justify-content: center;
    }
    
    /* Hero Section */
    .hero-section {
        height: auto;
        min-height: 40vh;
        background-attachment: scroll;
        padding: 10px 0;
    }
    
    .hero-section .row {
        align-items: flex-start !important;
        min-height: auto !important;
        padding-top: 0;
    }
    
    .hero-content {
        padding: 15px 10px;
        max-width: 100%;
        margin: 0 auto 5px auto;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
        line-height: 1.1;
        margin-bottom: 8px;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 1.3rem;
        margin-bottom: 12px;
        max-width: 100%;
    }
    
    .hero-cta {
        text-align: center;
        margin-top: 8px;
    }
    
    .hero-cta .btn-cta {
        padding: 16px 36px;
        font-size: 1.2rem;
        min-width: 200px;
    }
    
    /* Hero Right Section Mobile */
    .hero-right-section {
        padding: 0 10px;
        margin-top: 0;
        text-align: center;
    }
    
    .hero-cta-button-container {
        min-height: 200px;
    }
    
    .hero-cta-button {
        font-size: 1.2rem;
        padding: 16px 30px;
        min-width: 250px;
        border-radius: 12px;
    }
    
    .hero-logo {
        margin-bottom: 5px;
    }
    
    .hero-logo-image {
        max-width: 280px;
        border-radius: 12px;
    }
    
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 14px 25px;
        font-size: 1rem;
        z-index: 10;
    }
    
    
    .contact-info span {
        font-size: 0.8rem;
    }
    
    /* Mobile Navigation Improvements */
    .navbar-toggler {
        border: none;
        padding: 8px 12px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.3);
    }
    
    .navbar-toggler:hover {
        background: rgba(0, 212, 255, 0.1);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 24px;
        height: 24px;
    }
    
    .navbar-collapse {
        background: linear-gradient(135deg, rgba(15, 20, 25, 0.98) 0%, rgba(26, 35, 50, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 15px;
        margin-top: 15px;
        padding: 30px 25px;
        border: 1px solid rgba(0, 212, 255, 0.2);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
    }
    
    .navbar-collapse::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-color) 0%, rgba(0, 212, 255, 0.3) 100%);
    }
    
    .navbar-nav {
        text-align: center;
        margin: 0;
        padding: 0;
    }
    
    .navbar-nav .nav-item {
        margin: 0;
        padding: 0;
    }
    
    .navbar-nav .nav-link {
        padding: 18px 20px;
        margin: 0;
        border-radius: 10px;
        transition: all 0.3s ease;
        font-size: 1.3rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        position: relative;
        display: block;
        margin-bottom: 8px;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(0, 212, 255, 0.1);
        color: var(--primary-color) !important;
        transform: translateX(5px);
    }
    
    .navbar-nav .nav-link.active {
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0.05) 100%);
        color: var(--primary-color) !important;
        border-left: 3px solid var(--primary-color);
    }
    
    .navbar-nav .nav-link.active::after {
        display: none;
    }
    
    .navbar-nav .nav-link:last-child {
        margin-bottom: 0;
    }
    
    /* Mobile Navbar Brand Improvements */
    .navbar-brand {
        padding: 8px 0;
    }
    
    .brand-logo {
        height: 80px;
        width: 120px;
        max-width: 120px;
    }
    
    .brand-text {
        gap: 8px;
    }
    
    .brand-main {
        font-size: 28px;
    }
    
    .brand-sub {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .brand-text::before {
        width: 30px;
        height: 22px;
        top: -6px;
        left: -12px;
    }
    
    /* Small Mobile Navigation Adjustments */
    .navbar-collapse {
        margin-top: 12px;
        padding: 25px 20px;
        border-radius: 12px;
    }
    
    .navbar-nav .nav-link {
        padding: 15px 18px;
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    /* Sections */
    .section-title {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .section-description {
        font-size: 1.3rem;
        margin-bottom: 40px;
    }
    
    /* Pricing Cards */
    .pricing-card.featured {
        transform: translateY(-10px) scale(1.01);
        margin-top: 20px;
    }
    
    .pricing-card {
        margin-bottom: 30px;
        padding: 20px 15px;
    }
    
    .card-header {
        padding: 20px 15px 15px;
    }
    
    .card-body {
        padding: 15px;
    }
    
    .card-footer {
        padding: 0 15px 0px;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .price-currency {
        font-size: 2.5rem;
    }
    
    /* Benefit Items */
    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        margin-bottom: 25px;
    }
    
    .benefit-icon {
        margin: 0 auto 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .benefit-content h4 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .benefit-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* JetSharing */
    .jetsharing-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .jetsharing-content .section-title,
    .jetsharing-content .section-subtitle {
        text-align: center;
    }
    
    .jetsharing-content .section-description {
        text-align: center;
        margin: 0 auto 30px;
    }
    
    .jetsharing-image {
        margin-top: 30px;
    }
    
    .jetsharing-benefit {
        margin-bottom: 20px;
        padding: 15px;
    }
    
    .jetsharing-benefit h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .jetsharing-benefit p {
        font-size: 1rem;
    }
    
    /* Certifications */
    .certifications {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    
    .footer-section {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    /* Top bar compact mobile layout */
    .top-bar {
        padding: 6px 0; /* Even smaller padding */
        font-size: 13px;
    }
    
    .top-bar .row {
        gap: 3px; /* Smaller gap between items */
    }
    
    .contact-info span {
        font-size: 0.75rem; /* Even smaller text */
        gap: 3px;
    }
    
    .contact-info i {
        font-size: 0.7rem;
        width: 10px;
    }
    
    /* Hero Section */
    .hero-section {
        height: auto;
        min-height: 35vh;
        padding: 8px 0;
    }
    
    .hero-section .row {
        align-items: flex-start !important;
        min-height: auto !important;
        padding-top: 0;
    }
    
    .hero-content {
        padding: 12px 8px;
        max-width: 100%;
        margin: 0 auto 3px auto;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 6px;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 10px;
        max-width: 100%;
    }
    
    .hero-cta {
        text-align: center;
        margin-top: 6px;
    }
    
    .hero-cta .btn-cta {
        padding: 14px 32px;
        font-size: 1.1rem;
        min-width: 180px;
    }
    
    /* Hero Right Section Small Mobile */
    .hero-right-section {
        padding: 0 8px;
        margin-top: 0;
        text-align: center;
    }
    
    .hero-logo {
        margin-bottom: 3px;
    }
    
    .hero-logo-image {
        max-width: 260px;
        border-radius: 10px;
    }
    
    
    .btn {
        max-width: 250px;
        padding: 12px 20px;
        font-size: 0.95rem;
        z-index: 10;
    }
    
    .btn-cta {
        min-width: 200px;
        padding: 14px 28px;
        font-size: 1.1rem;
    }
    
    /* Sections */
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .section-description {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    /* Pricing Cards */
    .pricing-card {
        padding: 18px 12px;
        margin-bottom: 25px;
    }
    
    .pricing-card.featured {
        transform: translateY(-10px) scale(1.01);
        margin-top: 15px;
    }
    
    .card-header {
        padding: 35px 15px 15px;
    }
    
    .card-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .card-body {
        padding: 15px;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .price-currency {
        font-size: 2rem;
    }
    
    .member-benefits {
        padding: 15px;
        margin-top: 12px;
    }
    
    .benefits-header {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .member-benefits {
        margin-top: 20px;
    }
    
    .benefits-header {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .card-footer {
        padding: 0 15px 0px;
    }
    
    .btn-cta {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
    
    /* Benefit Items */
    .benefit-item {
        padding: 25px 15px;
    }
    
    .benefit-content h4 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .benefit-content p {
        font-size: 0.9rem;
    }
    
    /* JetSharing */
    .jetsharing-benefit h4 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    
    .jetsharing-benefit p {
        font-size: 0.9rem;
    }
    
    
    .contact-info span {
        font-size: 0.75rem;
    }
    
    /* Footer */
    .footer-section h4 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .footer-section p {
        font-size: 1.1rem;
    }
    
    .contact-info p {
        font-size: 1rem;
    }
    
    .cert-badge span {
        font-size: 0.8rem;
    }
    
    .footer-bottom p {
        font-size: 1rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }
    
    /* Top bar ultra compact for extra small devices */
    .top-bar {
        padding: 4px 0; /* Ultra minimal padding */
        font-size: 14px;
    }
    
    .top-bar .row {
        gap: 1px; /* Ultra minimal gap */
    }
    
    .contact-info span {
        font-size: 0.6rem; /* Ultra small text */
        gap: 1px;
    }
    
    .contact-info i {
        font-size: 0.6rem;
        width: 7px;
    }
    
    .hero-section {
        height: auto;
        min-height: 60vh;
        padding: 10px 0;
    }
    
    .hero-section .row {
        align-items: flex-start !important;
        min-height: auto !important;
        padding-top: 10px;
    }
    
    .hero-content {
        padding: 15px 10px;
        max-width: 100%;
        margin: 0 auto 20px auto;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
        margin-bottom: 8px !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
    }
    
    .hero-description {
        font-size: 1rem !important;
        margin-bottom: 15px !important;
        max-width: 100%;
    }
    
    /* Hero Right Section Extra Small Mobile */
    .hero-right-section {
        padding: 0 10px;
        margin-top: 15px;
        text-align: center;
    }
    
    .hero-logo {
        margin-bottom: 12px;
    }
    
    .hero-logo-image {
        max-width: 200px;
        border-radius: 8px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .pricing-card {
        padding: 12px 6px;
    }
    
    .card-header {
        padding: 20px 8px 10px;
    }
    
    .card-body {
        padding: 8px;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .price-currency {
        font-size: 1.5rem;
    }
    
    .benefit-item {
        padding: 15px 8px;
    }
    
    .btn-cta {
        min-width: 160px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Extra Small Mobile Navigation */
    .navbar-collapse {
        margin-top: 10px;
        padding: 20px 15px;
        border-radius: 10px;
    }
    
    .navbar-nav .nav-link {
        padding: 8px 10px;
        font-size: 0.9rem;
        margin-bottom: 4px;
    }
    
    .brand-main {
        font-size: 18px;
    }
    
    .brand-sub {
        font-size: 7px;
        letter-spacing: 1.5px;
    }
    
    .brand-text::before {
        width: 25px;
        height: 18px;
        top: -5px;
        left: -10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    /* Top bar extra compact for small mobile */
    .top-bar {
        padding: 5px 0; /* Minimal padding */
        font-size: 12px;
    }
    
    .top-bar .row {
        gap: 2px; /* Minimal gap */
    }
    
    .contact-info span {
        font-size: 0.7rem; /* Very small text */
        gap: 2px;
    }
    
    .contact-info i {
        font-size: 0.65rem;
        width: 8px;
    }
    
    .hero-section {
        height: 90vh;
        max-height: 90vh;
        padding: 0;
    }
    
    .hero-content {
        padding: 15px 10px; /* Reduced padding */
        max-width: 100%;
        margin: 0 auto 25px auto;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 20px;
        max-width: 100%;
    }
    
    /* Hero Right Section 480px */
    .hero-right-section {
        padding: 0 8px;
        margin-top: 15px;
        text-align: center;
    }
    
    .hero-logo {
        margin-bottom: 12px;
    }
    
    .hero-logo-image {
        max-width: 260px;
        border-radius: 10px;
    }
    
    .btn {
        max-width: 220px;
        padding: 10px 18px;
        font-size: 0.9rem;
        z-index: 10;
    }
    
    .btn-cta {
        min-width: 180px;
        padding: 12px 24px;
        font-size: 1.05rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .pricing-card {
        padding: 15px 8px;
    }
    
    .card-header {
        padding: 30px 10px 10px;
    }
    
    .card-body {
        padding: 10px;
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    .price-currency {
        font-size: 1.8rem;
    }
    
    .member-benefits {
        padding: 12px;
    }
    
    .btn-cta {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .benefit-item {
        padding: 20px 10px;
    }
    
    .featured-badge {
        padding: 8px 20px;
        font-size: 11px;
    }
}

/* ===== BUTTON VISIBILITY ENHANCEMENTS ===== */
.btn, .btn-cta {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    letter-spacing: 0.3px;
}


.btn-primary, .btn-cta.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0099cc 100%);
    color: var(--text-light) !important;
    border: 2px solid var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover, .btn-cta.btn-primary:hover {
    background: linear-gradient(135deg, #0099cc 0%, var(--primary-color) 100%);
    color: var(--text-light) !important;
    box-shadow: 0 12px 32px rgba(0, 212, 255, 0.5);
}


/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Increased for better spacing */
}

body {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    /* Ensure smooth scrolling on all devices */
    -webkit-scroll-behavior: smooth;
    -moz-scroll-behavior: smooth;
    -ms-scroll-behavior: smooth;
    /* Prevent scroll chaining issues */
    overscroll-behavior: contain;
}

/* Prevent layout shifts and jerking */
* {
    box-sizing: border-box;
}

/* Fix for mobile scroll issues */
@media (max-width: 768px) {
    body {
        /* Ensure proper touch scrolling on mobile */
        -webkit-overflow-scrolling: touch;
        /* Prevent scroll momentum issues */
        overscroll-behavior-y: contain;
    }
    
    /* Fix for iOS Safari scroll issues */
    .hero-section,
    section {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* Optimized animations for better performance */
.pricing-card,
.benefit-item,
.navbar,
.scroll-to-top {
    will-change: transform;
}

/* Optimize animations for better performance */
.pricing-card:hover,
.benefit-item:hover {
    transform: translateY(-8px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-section {
        transform: none !important;
    }
}

/* ===== LOADING ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== AIRCRAFT OWNERS PAGE STYLES ===== */
.ownership-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.ownership-content {
    padding-right: 30px;
}

.ownership-section .section-title {
    color: var(--text-dark);
    margin-bottom: 30px;
}

.ownership-section .section-subtitle {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 2.2rem;
    font-weight: 700;
}

.ownership-section .section-description {
    color: var(--text-muted);
    margin-bottom: 25px;
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.6;
}

.ownership-heading {
    color: var(--text-dark);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 25px;
    position: relative;
}

.ownership-heading:first-child {
    margin-top: 0;
}

.ownership-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.ownership-text {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.5;
}

.ownership-benefits {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.ownership-benefits li {
    color: var(--text-muted);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
}

.ownership-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.ownership-benefits strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ===== LEARN MORE PAGE STYLES ===== */
.learn-more-content {
    padding: 80px 0;
    background: #ffffff;
}

.learn-more-content .container {
    max-width: 1200px;
}

.learn-more-content .row {
    gap: 0;
}

.learn-more-content .col-lg-6 {
    padding: 0 15px;
}

.form-section {
    padding: 50px 40px;
    background: #e8e8e8;
    border-radius: 0;
    box-shadow: none;
    border: none;
    margin: 20px 0;
    min-height: 600px;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.5;
}

.required-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-style: italic;
}

.contact-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.btn-submit {
    width: 100%;
    padding: 12px 25px;
    background: #1a2332;
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: none;
    margin-top: 20px;
}

.btn-submit:hover {
    background: #2c3e50;
    transform: none;
    box-shadow: none;
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 20px;
    line-height: 1.4;
    text-align: left;
}

.info-section {
    padding: 50px 40px;
    background: #ffffff;
    margin: 20px 0;
    min-height: 600px;
}

.jet-image {
    margin-bottom: 40px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.jet-image img {
    width: 100%;
    height: auto;
    display: block;
}

.info-content {
    text-align: left;
}

.info-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.info-description {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-phone {
    margin-top: 30px;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-radius: 15px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.2);
}

.phone-link:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 212, 255, 0.3);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0.08) 100%);
}

.phone-link i {
    font-size: 1.5rem;
}

/* Aircraft Owners Page Responsive */
@media (max-width: 992px) {
    .ownership-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .ownership-section .section-subtitle {
        font-size: 1.8rem;
    }
    
    .ownership-heading {
        font-size: 1.3rem;
    }
}

/* Learn More Page Responsive */
@media (max-width: 992px) {
    .form-section {
        margin-bottom: 40px;
        padding: 30px;
    }
    
    .info-section {
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    .ownership-section {
        padding: 40px 0;
    }
    
    .ownership-section .section-title {
        margin-bottom: 20px;
    }
    
    .ownership-section .section-subtitle {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .ownership-section .section-description {
        margin-bottom: 20px;
    }
    
    .ownership-heading {
        font-size: 1.2rem;
        margin-top: 20px;
        margin-bottom: 12px;
    }
    
    .ownership-text {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .ownership-benefits {
        margin: 12px 0;
    }
    
    .ownership-benefits li {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .learn-more-content {
        padding: 60px 0;
    }
    
    .form-section {
        padding: 25px;
    }
    
    .form-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .info-title {
        font-size: 1.5rem;
    }
    
    .phone-link {
        font-size: 1.5rem;
        padding: 15px 25px;
    }
}

@media (max-width: 576px) {
    .form-section {
        padding: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
    }
    
    .btn-submit {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .phone-link {
        font-size: 1.3rem;
        padding: 12px 20px;
    }

}

/* ===== QUOTE REQUEST MODAL ===== */
.modal-dialog {
    max-width: 600px;
    margin: 1.75rem auto;
}

/* Quote request modal specific width */
#quoteModal .modal-dialog {
    max-width: 600px;
    margin: 1.75rem auto;
    display: flex;
    align-items: center;
    min-height: calc(100% - 3.5rem);
}

.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--text-light);
    border-bottom: none;
    border-radius: 15px 15px 0 0;
    padding: 15px 20px;
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 20px;
    background: #ffffff;
}

.quote-form .form-group {
    margin-bottom: 20px;
}

.quote-form .form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.quote-form .form-group input,
.quote-form .form-group select,
.quote-form .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
}

.quote-form .form-group input:focus,
.quote-form .form-group select:focus,
.quote-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.quote-form .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.form-actions .btn {
    padding: 5px 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 100px;
    font-size: 0.9rem;
}

.form-actions .btn-secondary {
    background: #6c757d;
    border-color: #6c757d;
    color: white;
}

.form-actions .btn-secondary:hover {
    background: #5a6268;
    border-color: #545b62;
    color: white;
}

.form-actions .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.form-actions .btn-primary:hover {
    background: #0099cc;
    border-color: #0099cc;
    color: white;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 20px;
    }
    
    /* Quote modal responsive */
    #quoteModal .modal-dialog {
        max-width: calc(100% - 40px);
        margin: 20px auto;
    }
    
    .modal-header {
        padding: 20px 25px;
    }
    
    .modal-body {
        padding: 25px 20px;
    }
    
    .form-actions {
        flex-direction: row;
        gap: 10px;
        justify-content: space-between;
    }
    
    .form-actions .btn {
        flex: 1;
        max-width: 48%;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    #quoteModal .modal-dialog {
        max-width: calc(100% - 20px);
        margin: 10px auto;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
}

/* ===== CHECKBOX STYLES ===== */
.checkbox-group {
    margin-bottom: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
    margin-top: 5px;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    flex-shrink: 0;
    margin-top: 4px;
}

/* ===== SIGNUP MODAL ===== */
#signupModal .modal-dialog {
    max-width: 400px;
    margin: 1.75rem auto;
    display: flex;
    align-items: center;
    min-height: calc(100% - 3.5rem);
}

/* Ensure modal is centered on larger screens */
@media (min-width: 576px) {
    #signupModal .modal-dialog {
        margin: 1.75rem auto;
        max-width: 400px;
    }
}

#signupModal .modal-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

#signupModal .modal-title i {
    color: var(--accent-color);
}

#signupModal .signup-form .form-group {
    margin-bottom: 12px;
}

#signupModal .signup-form .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

#signupModal .signup-form .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

#signupModal .signup-form .row {
    margin: 0 -5px;
}

#signupModal .signup-form .row .col-md-6 {
    padding: 0 5px;
}

#signupModal .signup-form .checkbox-group {
    margin-bottom: 15px;
}

#signupModal .signup-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
    margin-top: 5px;
}

#signupModal .signup-form .checkbox-label input[type="checkbox"] {
    margin: 0;
    flex-shrink: 0;
    margin-top: 6px;
}

#signupModal .signup-btn {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

#signupModal .signup-btn:hover {
    background: #0099cc;
    border-color: #0099cc;
}

/* ===== LOADING STYLES ===== */
.loading-spinner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.loading-spinner.show {
    display: flex;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loading-content {
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.loading-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 15px;
    color: var(--primary-color);
}

/* Button loading state */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    color: white;
}

/* Form loading overlay */
.form-loading {
    position: relative;
    pointer-events: none;
}

.form-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: 8px;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0099cc;
}
