@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Heebo:wght@300;400;500;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-dark: #11130C;
    --primary-gold: #A38A47;
    --accent-emerald: #004D00;
    --accent-navy: #1D2C43;
    --accent-cream: #F0E68C;
    --pure-white: #FFFFFF;
    --charcoal: #444444;
    --dark-overlay: rgba(17, 19, 12, 0.85);
}

/* Base Typography and RTL Support */
body {
    font-family: 'Montserrat', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--pure-white);
    background-color: var(--primary-dark);
}

html[dir="rtl"] body,
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, 
html[dir="rtl"] h4, html[dir="rtl"] h5, html[dir="rtl"] h6,
html[dir="rtl"] .nav-links a, html[dir="rtl"] button,
html[dir="rtl"] .submit-btn, html[dir="rtl"] .cta-button {
    font-family: 'Heebo', sans-serif;
}

/* Common Elements */
a {
    text-decoration: none;
    color: var(--pure-white);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-gold);
}

ul {
    list-style: none;
}

/* PREMIUM KEYFRAME ANIMATIONS - RESTORED */
@keyframes premiumGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes premiumIconGlow {
    0% {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 8px rgba(255, 215, 0, 0.4);
        transform: scale(1);
    }
    100% {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 12px rgba(255, 215, 0, 0.8), 
                     0 0 24px rgba(255, 215, 0, 0.4);
        transform: scale(1.05);
    }
}

@keyframes premiumIconPulse {
    0%, 100% { transform: scale(1.15) rotate(5deg); }
    50% { transform: scale(1.25) rotate(8deg); }
}

@keyframes luxuryShimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

@keyframes prestigeGlow {
    0%, 100% { 
        filter: drop-shadow(0 8px 24px rgba(163, 138, 71, 0.4)); 
    }
    50% { 
        filter: drop-shadow(0 12px 32px rgba(163, 138, 71, 0.6)) 
               drop-shadow(0 0 20px rgba(244, 208, 63, 0.3)); 
    }
}

/* Universal Smooth Transitions */
button, .btn, .cta-button, .nav-btn, .lang-btn, .submit-btn, 
.gallery-item, .team-member, .benefit-card, .testimonial-card,
.contact-item, .social-link, .modal-nav-btn, .checkbox-label {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-gold);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.divider {
    height: 3px;
    width: 60px;
    background-color: var(--primary-gold);
    margin: 0 auto;
}

/* Header and Navigation */
header {
    background-color: var(--primary-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    left: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.logo {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.language-switcher {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--pure-white);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 5px 8px;
}

.lang-btn:hover, .lang-btn.active {
    color: var(--primary-gold);
}

.lang-btn.active {
    font-weight: 600;
}

.lang-separator {
    color: var(--primary-gold);
    margin: 0 5px;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--pure-white);
    margin: 5px 0;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--pure-white);
    padding-top: 60px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 19, 12, 0.75), rgba(17, 19, 12, 0.85));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 2rem;
}

.hero-logo {
    width: 600px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: var(--pure-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.exclusive-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold), #D4AF37);
    color: var(--primary-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(163, 138, 71, 0.3);
}

/* PREMIUM BUTTON STYLES - RESTORED & OPTIMIZED */
.cta-button, .standard-cta-button, .submit-btn, .premium-submit-btn {
    /* Premium animated gradient */
    background: linear-gradient(135deg, 
        var(--primary-gold) 0%, #D4AF37 25%, var(--primary-gold) 50%, 
        #F4D03F 75%, var(--primary-gold) 100%);
    background-size: 300% 300%;
    animation: premiumGradientShift 4s ease-in-out infinite;
    
    /* Glass morphism effect */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    color: var(--primary-dark);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    
    /* Premium multi-layer shadows */
    box-shadow: 
        0 8px 32px rgba(163, 138, 71, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
        
    /* Smooth luxury transitions */
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Enhanced typography */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Luxury shine effect */
.cta-button::before, .standard-cta-button::before, 
.submit-btn::before, .premium-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

/* Floating glow effect */
.cta-button::after, .standard-cta-button::after, 
.submit-btn::after, .premium-submit-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.6), rgba(255, 223, 0, 0.3));
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.4s ease;
}

.cta-button:hover, .standard-cta-button:hover, 
.submit-btn:hover, .premium-submit-btn:hover {
    background: linear-gradient(135deg, #F4D03F 0%, var(--primary-gold) 50%, #F4D03F 100%);
    transform: translateY(-4px) scale(1.06);
    box-shadow: 
        0 12px 48px rgba(163, 138, 71, 0.6),
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    text-decoration: none;
    color: var(--primary-dark);
    animation-duration: 2s;
}

/* Shine effect trigger */
.cta-button:hover::before, .standard-cta-button:hover::before,
.submit-btn:hover::before, .premium-submit-btn:hover::before {
    left: 100%;
}

/* Glow effect on hover */
.cta-button:hover::after, .standard-cta-button:hover::after,
.submit-btn:hover::after, .premium-submit-btn:hover::after {
    opacity: 1;
}

/* Premium button icons with glow */
.cta-button i, .standard-cta-button i, .submit-btn i, .premium-submit-btn i {
    margin-right: 12px;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 8px rgba(255, 215, 0, 0.6);
    animation: premiumIconGlow 3s ease-in-out infinite alternate;
}

.cta-button:hover i, .standard-cta-button:hover i,
.submit-btn:hover i, .premium-submit-btn:hover i {
    transform: scale(1.15) rotate(5deg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 0 16px rgba(255, 215, 0, 1);
    animation: premiumIconPulse 0.6s ease-in-out;
}

/* Sections */
section {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

section.hero {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

/* Aircraft Section */
.aircraft {
    background-color: var(--primary-dark);
    padding: 5rem 5%;
}

.aircraft-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.aircraft-image {
    flex: 1;
    min-width: 300px;
}

.aircraft-image img {
    width: 100%;
    height: auto;
    border: 3px solid var(--primary-gold);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
}

.aircraft-details {
    flex: 1;
    min-width: 300px;
}

.aircraft-details h3 {
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
}

.aircraft-details h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--primary-gold);
    margin: 0.5rem auto 0;
}

.features-list {
    margin-bottom: 2rem;
}

.features-list li {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--primary-gold);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.features-list li:hover {
    background: rgba(163, 138, 71, 0.1);
    transform: translateX(5px);
}

.features-list i {
    color: var(--primary-gold);
    margin-right: 1rem;
    font-size: 1.2rem;
    min-width: 18px;
    text-align: center;
}

.aircraft .section-header {
    margin-bottom: 4rem;
}

.aircraft .section-header h2 {
    color: var(--primary-gold);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.aircraft-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    background: rgba(163, 138, 71, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(163, 138, 71, 0.3);
}

.aircraft-contact .contact-item:hover {
    background: rgba(163, 138, 71, 0.2);
    border-color: rgba(163, 138, 71, 0.5);
    transform: translateY(-2px);
}

.aircraft-contact .contact-item i {
    color: #25D366;
    font-size: 1.3rem;
}

.aircraft-contact .contact-item a {
    color: var(--accent-cream);
    font-weight: 500;
    text-decoration: none;
}

.aircraft-contact .contact-item a:hover {
    color: #25D366;
}

.cta-container {
    text-align: center;
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Experience Section */
.experience {
    background: linear-gradient(135deg, var(--accent-navy) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(163, 138, 71, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(163, 138, 71, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(163, 138, 71, 0.3);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(163, 138, 71, 0.1) 0%, 
        transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 60px rgba(163, 138, 71, 0.4),
                0 8px 20px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.benefit-card:hover .benefit-icon {
    color: var(--accent-cream);
    transform: scale(1.1);
    animation: premiumIconGlow 1s ease-in-out;
}

.benefit-card h3 {
    color: var(--primary-gold);
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.4s ease;
    position: relative;
    z-index: 2;
}

.benefit-card:hover h3 {
    color: var(--accent-cream);
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.4s ease;
    position: relative;
    z-index: 2;
}

.benefit-card:hover p {
    color: var(--pure-white);
}

/* Team Section */
.team {
    background-color: var(--primary-dark);
    padding: 5rem 5%;
}

.team-container {
    display: flex;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.team-member {
    background: linear-gradient(135deg, var(--accent-navy) 0%, var(--primary-dark) 100%);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid rgba(163, 138, 71, 0.2);
    height: 280px;
    position: relative;
    flex: 1;
    min-width: 200px;
    cursor: pointer;
    overflow: hidden;
}

.team-member:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(163, 138, 71, 0.4);
}

.team-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-gold);
}

.team-member:hover .team-image {
    border-color: var(--accent-cream);
    transform: scale(1.1);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-content h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.team-role {
    color: var(--accent-cream);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-description {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 30, 44, 0.92) 0%, rgba(48, 68, 89, 0.92) 100%);
    color: var(--pure-white);
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    opacity: 0;
    transform: translateY(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(163, 138, 71, 0.4);
}

.team-member:hover .team-description {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery Section */
.gallery {
    background-color: var(--primary-dark);
    padding: 4rem 2rem;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 250px;
    border: 3px solid var(--primary-gold);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(163, 138, 71, 0.3);
}

.gallery-item img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover img:first-child {
    transform: scale(1.05);
}

.members-only-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.7));
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .members-only-badge {
    transform: scale(1.1);
    animation: prestigeGlow 1s ease-in-out;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    opacity: 0;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.modal.open {
    display: block;
    opacity: 1;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 80%;
    border: 3px solid var(--primary-gold);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(163, 138, 71, 0.5);
    cursor: default;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--primary-gold);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.modal-close:hover {
    color: #fff;
}

/* Modal Members Only Badge */
.modal-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: auto;
    z-index: 1002;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.7));
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal:hover .modal-badge {
    transform: scale(1.1);
    animation: prestigeGlow 1s ease-in-out;
}

.modal-nav-btn {
    background: rgba(163, 138, 71, 0.8);
    color: white;
    border: none;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
}

.modal-nav-btn:hover {
    background: var(--primary-gold);
    transform: scale(1.1);
}

/* Testimonials Section */
.testimonials {
    background: var(--primary-dark);
    padding: 80px 20px;
    overflow: visible;
}

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

.testimonials-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 50px 40px 50px;
    scroll-behavior: smooth;
}

.testimonials-scroll::-webkit-scrollbar {
    height: 8px;
}

.testimonials-scroll::-webkit-scrollbar-track {
    background: rgba(163, 138, 71, 0.1);
    border-radius: 10px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 10px;
}

.testimonial-card {
    min-width: 350px;
    max-width: 350px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.03) 100%);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid rgba(163, 138, 71, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(163, 138, 71, 0.1) 0%, 
        transparent 50%, 
        rgba(163, 138, 71, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(163, 138, 71, 0.3);
}

.testimonial-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-gold);
    margin: 0 auto 20px;
    transition: all 0.8s ease;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(163, 138, 71, 0.5);
}

.testimonial-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-content h4 {
    animation: iconGlow 2s ease-in-out infinite alternate;
}

.testimonial-title {
    font-size: 0.95rem;
    color: var(--primary-gold);
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--accent-cream);
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-text::before {
    content: '"';
    color: var(--primary-gold);
    font-size: 1.2em;
    font-weight: bold;
}

.testimonial-text::after {
    content: '"';
    color: var(--primary-gold);
    font-size: 1.2em;
    font-weight: bold;
}

.testimonial-social .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), #c49a57);
    color: var(--pure-white);
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(163, 138, 71, 0.3);
}

.testimonial-card:hover .testimonial-social .social-link {
    transform: scale(1.2);
}

.testimonial-social .social-link:hover {
    transform: scale(1.4) !important;
    background: transparent !important;
    color: transparent !important;
    box-shadow: none !important;
}

.testimonial-social .social-link:hover i {
    background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Aircraft-Inspired Navigation Buttons */
.nav-btn {
    /* Aircraft instrument design */
    background: linear-gradient(135deg, 
        var(--primary-gold) 0%, 
        #D4AF37 15%, 
        var(--primary-gold) 30%, 
        #B8860B 45%, 
        var(--primary-gold) 60%, 
        #F4D03F 75%, 
        var(--primary-gold) 100%);
    background-size: 300% 300%;
    animation: premiumGradientShift 4s ease-in-out infinite;
    
    /* Aircraft control styling */
    color: var(--primary-dark);
    border: 3px solid rgba(255, 255, 255, 0.4);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    
    /* Premium aircraft-inspired effects */
    box-shadow: 
        0 6px 20px rgba(163, 138, 71, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    
    /* Smooth luxury transitions */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Aircraft control typography */
    font-family: 'Montserrat', sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.3),
        0 0 8px rgba(255, 215, 0, 0.4);
    
    /* Aircraft instrument bezel effect */
    position: relative;
    overflow: hidden;
}

/* Aircraft instrument inner ring */
.nav-btn::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

/* Aircraft control backlight effect */
.nav-btn::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.6), 
        rgba(255, 223, 0, 0.3));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.4s ease;
}

.nav-btn:hover {
    /* Enhanced aircraft control hover state */
    background: linear-gradient(135deg, 
        #F4D03F 0%, 
        var(--primary-gold) 15%, 
        #D4AF37 30%, 
        var(--primary-gold) 45%, 
        #F4D03F 60%, 
        var(--accent-cream) 75%, 
        #F4D03F 100%);
    
    color: var(--primary-dark);
    border-color: rgba(255, 255, 255, 0.6);
    
    /* Aircraft control active lighting */
    box-shadow: 
        0 8px 32px rgba(163, 138, 71, 0.7),
        0 4px 16px rgba(255, 215, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    
    /* Aircraft control movement */
    transform: scale(1.08) translateY(-2px);
    
    /* Enhanced text glow for aircraft readability */
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.4),
        0 0 12px rgba(255, 215, 0, 0.8),
        0 0 24px rgba(255, 215, 0, 0.4);
    
    /* Speed up animation on hover */
    animation-duration: 2s;
}

/* Aircraft control backlight activation */
.nav-btn:hover::after {
    opacity: 1;
}

/* Aircraft control pressed state */
.nav-btn:active {
    transform: scale(1.02) translateY(0px);
    box-shadow: 
        0 4px 16px rgba(163, 138, 71, 0.6),
        0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.1s ease;
}

/* Aircraft control focus state for accessibility */
.nav-btn:focus {
    outline: none;
    box-shadow: 
        0 8px 32px rgba(163, 138, 71, 0.7),
        0 4px 16px rgba(255, 215, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1),
        0 0 0 3px rgba(255, 215, 0, 0.3);
}

/* Aircraft directional indicators styling */
.nav-btn {
    /* Make arrows look like aircraft control symbols */
    line-height: 1;
    letter-spacing: 0;
}

/* Enhanced aircraft control styling for mobile */
@media (max-width: 768px) {
    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
        box-shadow: 
            0 4px 16px rgba(163, 138, 71, 0.5),
            0 2px 6px rgba(0, 0, 0, 0.2),
            inset 0 2px 0 rgba(255, 255, 255, 0.3),
            inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    }
    
    .nav-btn:hover {
        transform: scale(1.05) translateY(-1px);
    }
    
    .nav-btn:active {
        transform: scale(1.01) translateY(0px);
    }
}

/* Location Section */
.location {
    background-color: var(--accent-navy);
}

.location-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.location-details {
    flex: 1;
    min-width: 300px;
}

.location-details h3 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.location-details p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.location-features li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.location-features i {
    color: var(--primary-gold);
    margin-right: 1rem;
}

.location-map {
    flex: 1;
    min-width: 300px;
    height: 450px;
}

.location-map iframe {
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Contact Section - PREMIUM FORM WITH LUXURY EFFECTS */
.contact {
    background-color: var(--primary-dark);
}

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

.members-only-header {
    background: linear-gradient(135deg, var(--accent-navy) 0%, var(--primary-dark) 100%);
    border-radius: 20px 20px 0 0;
    padding: 3rem 2rem;
    border: 2px solid var(--primary-gold);
    border-bottom: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Luxury shimmer effect - RESTORED */
.members-only-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(163, 138, 71, 0.1) 50%, transparent 70%);
    animation: luxuryShimmer 4s ease-in-out infinite;
}

.members-only-badge-large {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
    animation: prestigeGlow 3s ease-in-out infinite;
}

.exclusive-text h3 {
    color: var(--primary-gold);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.exclusive-text p {
    color: var(--pure-white);
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.9;
}

.eligibility-form-card {
    background: linear-gradient(135deg, var(--accent-navy) 0%, var(--primary-dark) 100%);
    border: 2px solid var(--primary-gold);
    border-top: none;
    border-radius: 0 0 20px 20px;
    padding: 3rem 2rem;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-title i {
    color: var(--primary-gold);
    font-size: 1.8rem;
}

.form-title h3 {
    color: var(--primary-gold);
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

.premium-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-gold);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    color: var(--primary-gold);
    font-size: 1.1rem;
    z-index: 2;
}

.input-wrapper input, .select-wrapper select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(163, 138, 71, 0.3);
    border-radius: 12px;
    color: var(--pure-white);
    font-family: inherit;
    font-size: 1rem;
}

.input-wrapper input:focus, .select-wrapper select:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 20px rgba(163, 138, 71, 0.3);
}

.select-wrapper select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A38A47' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

/* Enhanced Checkbox with Animation Effects */
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 20px;
    padding: 25px 30px;
    background: rgba(163, 138, 71, 0.08);
    border: 2px solid rgba(163, 138, 71, 0.3);
    border-radius: 12px;
    margin-bottom: 20px;
    min-height: 70px;
    position: relative;
    overflow: hidden;
}

.checkbox-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(163, 138, 71, 0.1), transparent);
    transition: left 0.5s ease;
}

.checkbox-label:hover::before {
    left: 100%;
}

.checkbox-label:hover {
    background: rgba(163, 138, 71, 0.12);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(163, 138, 71, 0.2);
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 28px;
    height: 28px;
    border: 3px solid var(--primary-gold);
    border-radius: 8px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(163, 138, 71, 0.5);
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.checkbox-label span {
    margin-right: 0.5rem;
    font-size: 0.95rem;
    color: var(--pure-white);
    font-weight: 400;
}

/* Form Grid Layout */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
    margin-bottom: 2rem;
}

/* Form Declaration Styles */
.form-declaration {
    margin: 2.0rem 0;
    display: flex;
    justify-content: center;
}

.declaration-checkbox {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.0rem;
    cursor: pointer;
    padding: 1.25rem 1.25rem 1.25rem 1.25rem;
    padding-right: 0.1rem;
    border: 1px solid rgba(163, 138, 71, 0.25);
    border-radius: 12px;
    background: rgba(17, 19, 12, 0.4);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 580px;
    position: relative;
    overflow: hidden;
}

.declaration-checkbox::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(163, 138, 71, 0.1), transparent);
    transition: left 0.6s ease;
}

.declaration-checkbox:hover::before {
    left: 100%;
}

.declaration-checkbox:hover {
    border-color: rgba(163, 138, 71, 0.5);
    background: rgba(17, 19, 12, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(163, 138, 71, 0.1);
}

.declaration-checkbox:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.declaration-checkbox .checkmark {
    position: relative;
    height: 22px;
    width: 22px;
    background: linear-gradient(135deg, rgba(17, 19, 12, 0.8), rgba(29, 44, 67, 0.6));
    border: 2px solid var(--primary-gold);
    border-radius: 6px;
    margin-right: 1.5rem;
    margin-top: 2px;
    flex-shrink: 0;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.declaration-checkbox:hover .checkmark {
    border-color: #FFD700;
    background: linear-gradient(135deg, rgba(163, 138, 71, 0.2), rgba(244, 208, 63, 0.1));
    box-shadow: 
        inset 0 1px 3px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 215, 0, 0.2),
        0 2px 8px rgba(163, 138, 71, 0.15);
}

.declaration-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.declaration-checkbox input[type="checkbox"]:checked ~ .checkmark {
    background: linear-gradient(135deg, var(--primary-gold), #FFD700);
    border-color: #FFD700;
    box-shadow: 
        inset 0 1px 3px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(255, 215, 0, 0.3),
        0 4px 12px rgba(163, 138, 71, 0.4);
    transform: scale(1.05);
}

.declaration-checkbox input[type="checkbox"]:checked ~ .checkmark::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid var(--primary-dark);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    opacity: 0;
    animation: checkmarkAppear 0.3s ease forwards;
}

@keyframes checkmarkAppear {
    0% {
        opacity: 0;
        transform: rotate(45deg) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: rotate(45deg) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: rotate(45deg) scale(1);
    }
}

.declaration-text {
    font-size: 1.05rem;
    color: var(--primary-gold);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.02rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .declaration-checkbox {
        padding: 1rem 1.25rem;
        flex-direction: row;
        align-items: flex-start;
        max-width: 100%;
    }
    
    .declaration-checkbox .checkmark {
        margin-right: 1.25rem;
        margin-top: 1px;
    }
    
    .declaration-text {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}

/* Select wrapper styling fix */
.select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.select-wrapper i {
    position: absolute;
    left: 15px;
    color: var(--primary-gold);
    z-index: 2;
    pointer-events: none;
}

.select-wrapper select {
    padding-left: 45px !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .declaration-checkbox {
        padding: 0.8rem 1rem;
        text-align: center;
    }
    
    .declaration-text {
        font-size: 0.9rem;
    }
}

.form-submit {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(163, 138, 71, 0.3);
}

/* Enhanced Form Input States */
.form-group input[type="number"]:disabled {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(163, 138, 71, 0.15);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    opacity: 0.6;
    transform: scale(0.98);
}

.form-group input[type="number"]:enabled {
    background: rgba(163, 138, 71, 0.1);
    border-color: var(--primary-gold);
    color: white;
    transform: scale(1);
    box-shadow: 0 0 10px rgba(163, 138, 71, 0.2);
}

.form-group input[type="number"]:enabled:focus {
    background: rgba(163, 138, 71, 0.15);
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(163, 138, 71, 0.3);
    transform: scale(1.02);
}

/* Enhanced Form Transitions */
.form-group input, .form-group select {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Membership Section */
.membership {
    padding: 80px 0 0 0;
}

.membership-background {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-navy) 100%);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.membership-container {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.membership-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.membership-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--primary-gold);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.membership-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.membership .section-header h2 {
    color: var(--primary-gold);
}

.membership .divider {
    background: var(--primary-gold);
}

.step-number {
    background: var(--primary-gold);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    margin: 0 0 10px 0;
    color: var(--primary-gold);
    font-size: 1.3em;
    font-weight: 600;
}

.step-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Section Spacing Optimization */
.aircraft {
    padding-bottom: 40px;
}

.team {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: var(--pure-white);
    padding: 3rem 5% 1rem;
    border-top: 1px solid rgba(163, 138, 71, 0.3);
}

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

.footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin: 0 auto 1.5rem;
    display: block;
}

.footer-section h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    background-color: var(--primary-gold);
    color: var(--primary-dark);
    transform: scale(1.1);
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(163, 138, 71, 0.2);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Consolidated Responsive Design */
@media (max-width: 992px) {
    .hero-logo { 
        width: 450px; 
    }
    .hero p { font-size: 1.4rem; }
    .exclusive-badge { 
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
    .section-header h2 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        width: 100%;
        left: 0;
        top: 100%;
        transform: none;
        padding: 1rem 0;
        background-color: var(--primary-dark);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }
    
    .nav-links.mobile-open { display: flex; }
    .nav-links li { width: 100%; padding: 0.5rem 2rem; }
    .mobile-menu-btn { display: block; }
    .language-switcher { right: 70px; }
    
    .hero-logo { 
        width: 320px; 
    }
    .hero p { font-size: 1.1rem; }
    .exclusive-badge { 
        font-size: 0.75rem;
        padding: 0.35rem 1rem;
    }
    .section-header h2 { font-size: 1.8rem; }
    section { padding: 3rem 5%; }
    
    .aircraft-container, .location-container { flex-direction: column; }
    
    .team-container { flex-direction: column; gap: 2rem; }
    .team-member { height: auto; padding: 2rem; }
    .team-description {
        position: static;
        background: none;
        padding: 1rem 0;
        margin-top: 1rem;
        opacity: 1;
        transform: none;
        border: none;
    }
    
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    
    .testimonial-card { min-width: 280px; max-width: 280px; }
    .form-row { flex-direction: column; }
    .nav-btn { width: 50px; height: 50px; font-size: 2rem; }
    
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }
    
    /* Membership Mobile Responsive */
    .membership-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step-number {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .hero-logo { 
        width: 280px; 
    }
    .hero p { font-size: 1rem; }
    .exclusive-badge { 
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
    .section-header h2 { font-size: 1.5rem; }
    section { padding: 2.5rem 3%; }
    
    .gallery-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
    }
    
    .testimonial-card { min-width: 250px; max-width: 250px; }
    .nav-btn { width: 45px; height: 45px; font-size: 1.8rem; }
}

/* RTL Specific Adjustments - Consolidated */
html[dir="rtl"] { text-align: right; }
html[dir="rtl"] .nav-links a { font-size: 1.05rem; font-weight: 400; }
html[dir="rtl"] .nav-links a::after { left: auto; right: 0; }
html[dir="rtl"] .features-list i, html[dir="rtl"] .location-features i { margin-right: 0; margin-left: 0.8rem; }
html[dir="rtl"] .cta-button i, html[dir="rtl"] .standard-cta-button i, 
html[dir="rtl"] .submit-btn i, html[dir="rtl"] .premium-submit-btn i { margin-right: 0; margin-left: 12px; }
html[dir="rtl"] .section-header { text-align: center; }
html[dir="rtl"] .hero-logo { width: 600px; }
html[dir="rtl"] .hero p { font-size: 1.4rem; line-height: 1.5; }

/* RTL Mobile Responsive - Consolidated */
@media (max-width: 768px) {
    html[dir="rtl"] .hero-logo { width: 320px; }
    html[dir="rtl"] .hero p { font-size: 0.95rem; }
    html[dir="rtl"] .language-switcher { left: auto; right: 70px; }
    html[dir="rtl"] .nav-links { align-items: flex-end; }
}

@media (max-width: 480px) {
    html[dir="rtl"] .hero-logo { width: 280px; }
    html[dir="rtl"] .hero p { font-size: 0.85rem; }
}

/* Contact Info Premium Section */
.contact-info-premium {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(163, 138, 71, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-section h4 {
    color: var(--primary-gold);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-details-premium {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-details-premium .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pure-white);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-details-premium .contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.contact-details-premium .contact-item i {
    color: var(--primary-gold);
    font-size: 1rem;
}

.contact-details-premium .contact-item a {
    color: var(--pure-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details-premium .contact-item a:hover {
    color: var(--primary-gold);
}

@media (max-width: 768px) {
    .contact-details-premium {
        flex-direction: column;
        gap: 1rem;
    }
} 