:root {
    /* Color Palette */
    --primary: #0c2461;           /* Primary Dark Blue */
    --secondary: #1a3a8f;         /* Secondary Blue */
    --accent: #D4AF37;            /* Luxury Gold */
    --accent-light: #E6C158;      /* Light Gold */
    --light-accent: #FFE992;      /* Very Light Gold */
    
    /* Neutral Background Colors */
    --light-bg: #F8FAFC;          /* Light Background */
    --white-bg: #FFFFFF;          /* White Background */
    --section-bg: #F0F4F8;        /* Section Background */
    --card-bg: #FFFFFF;           /* Card Background */
    
    /* Text Colors */
    --text-dark: #1A237E;         /* Dark Text */
    --text-gray: #546E7A;         /* Gray Text */
    --text-light: #90A4AE;        /* Light Text */
    --white-text: #FFFFFF;        /* White Text */
    
    /* Special Section Backgrounds */
    --network-bg: #F5F7FF;        /* Network Section - Light Blue */
    --services-bg: #F8F9FA;       /* Services Section - Off White */
    --stats-bg: linear-gradient(135deg, #0c2461 0%, #1a3a8f 100%);
    --contact-bg: linear-gradient(135deg, #0c2461 0%, #1a3a8f 100%);
    
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(12, 36, 97, 0.08);
    --shadow-lg: 0 20px 50px rgba(12, 36, 97, 0.12);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--light-bg);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========== MOBILE GOLDEN FRAME ========== */
.mobile-golden-frame {
    display: none;
    position: fixed;
    top: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), var(--accent-light), var(--accent));
    z-index: 9999;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    animation: frameGlow 2s ease-in-out infinite;
}

.left-frame {
    left: 0;
}

.right-frame {
    right: 0;
}

@keyframes frameGlow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* ========== FIX FOR PHONE LINKS ========== */
a[href^="tel:"],
a[href^="mailto:"] {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.contact-detail-value a,
.contact-card a,
.footer-contact-item a,
.header-contact a,
.contact-item {
    color: inherit;
    text-decoration: none;
}

/* ========== SECTION HEADER WITH LOGO ========== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    flex-wrap: wrap;
}

.section-logo {
    width: 50px;
    height: 50px;
    opacity: 0.9;
    filter: drop-shadow(0 5px 15px rgba(12, 36, 97, 0.3));
    transition: var(--transition);
    animation: logoFloat 3s ease-in-out infinite;
}

.section-logo:hover {
    transform: scale(1.1) rotate(5deg);
    opacity: 1;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary);
    line-height: 1.2;
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
    margin: 0;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title span {
    color: var(--accent);
}

/* For dark sections */
.stats-section .section-title,
.contact-section .section-title {
    color: var(--white-text);
}

.stats-section .section-logo,
.contact-section .section-logo {
    filter: brightness(0) invert(1) drop-shadow(0 5px 15px rgba(255, 255, 255, 0.3));
}

/* ========== HEADER ========== */
.luxury-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(12, 36, 97, 0.1);
}

.luxury-header.scrolled {
    padding: 0.8rem 0;
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 2px solid var(--accent);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-identity {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-icon {
    height: 60px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 5px 15px rgba(12, 36, 97, 0.2));
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 3px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 2rem;
    margin-left: 3rem;
}

.nav-item {
    position: relative;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-item:hover {
    color: var(--accent);
}

.nav-item:hover::after {
    width: 100%;
}

/* Header Contact */
.header-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(12, 36, 97, 0.05);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    transition: var(--transition);
    border: 1px solid rgba(12, 36, 97, 0.08);
}

.contact-item:hover {
    background: rgba(12, 36, 97, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-text);
    font-size: 0.9rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.7rem;
    color: var(--text-gray);
    font-weight: 500;
}

.contact-number {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* Luxury Button */
.luxury-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--text-dark);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-gold);
}

.luxury-btn:hover {
    background: linear-gradient(135deg, var(--accent-light), var(--light-accent));
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
}

.light-btn {
    background: var(--white-text) !important;
    color: var(--primary) !important;
}

.light-btn:hover {
    background: var(--light-accent) !important;
    color: var(--text-dark) !important;
}

.secondary-btn {
    background: rgba(255,255,255,0.1);
    color: white;
    margin-left: 1rem;
}

.secondary-btn:hover {
    background: rgba(255,255,255,0.2);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

/* ========== MOBILE MENU ========== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: var(--white-bg);
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(12, 36, 97, 0.1);
    background: var(--primary);
}

.mobile-menu-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-brand-icon {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.mobile-brand-text {
    display: flex;
    flex-direction: column;
}

.mobile-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white-text);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--white-text);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu-links {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 10px;
    transition: var(--transition);
    font-weight: 500;
}

.mobile-nav-item:hover {
    background: rgba(12, 36, 97, 0.05);
    color: var(--accent);
}

.mobile-nav-item i {
    width: 24px;
    color: var(--accent);
}

.mobile-menu-contact {
    padding: 1.5rem;
    border-top: 1px solid rgba(12, 36, 97, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-dark);
    padding: 0.5rem;
    border-radius: 10px;
    transition: var(--transition);
}

.mobile-contact-item:hover {
    background: rgba(12, 36, 97, 0.05);
}

.mobile-contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.mobile-contact-details {
    display: flex;
    flex-direction: column;
}

.mobile-contact-label {
    font-size: 0.7rem;
    color: var(--text-gray);
    font-weight: 500;
}

.mobile-contact-number {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

/* ========== SECTION STYLES ========== */
section {
    position: relative;
    padding: 8rem 2rem;
    overflow: hidden;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section-tag {
    display: inline-block;
    background: rgba(12, 36, 97, 0.08);
    color: var(--primary);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(12, 36, 97, 0.1);
    transition: var(--transition);
}

.light-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-tag:hover {
    background: rgba(12, 36, 97, 0.12);
    transform: translateY(-2px);
}

.light-tag:hover {
    background: rgba(255, 255, 255, 0.15);
}

.light-title {
    color: var(--white-text);
}

.section-subtitle {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.light-description {
    color: rgba(255, 255, 255, 0.9);
}

.left-align {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

/* ========== HERO SECTION ========== */
.luxury-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.fadelairways.com/image/FadelAirways-p2.jpeg') center/cover no-repeat;
    opacity: 0.15;
    filter: brightness(0.4) contrast(1.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    color: var(--white-text);
}

.luxury-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white-text);
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.6); }
}

.luxury-badge i {
    color: var(--accent);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white-text);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    opacity: 0.5;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 140px;
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

/* Logo Display */
.luxury-logo-display {
    position: relative;
    height: 500px;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.main-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    25% { transform: translate(-50%, -53%) rotate(2deg) scale(1.05); }
    75% { transform: translate(-50%, -47%) rotate(-2deg) scale(0.95); }
}

/* ========== ABOUT US SECTION ========== */
.about-section {
    background: var(--white-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: 24px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: var(--shadow-lg);
}

.about-info h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-info h3 i {
    color: var(--accent);
}

.about-list {
    list-style: none;
    margin: 1.5rem 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.about-list li i {
    color: var(--accent);
    margin-top: 0.25rem;
}

.commitment-box {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(12, 36, 97, 0.05);
    border-radius: 16px;
    border-left: 4px solid var(--accent);
}

.commitment-box h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.commitment-box h4 i {
    color: var(--accent);
}

.commitment-box p {
    color: var(--text-gray);
}

/* ========== VISION & MISSION SECTION ========== */
.vision-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.vision-card {
    background: var(--white-bg);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition);
    border: 2px solid rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow);
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), 0 20px 50px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.vision-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    background: rgba(12, 36, 97, 0.03);
    padding: 1.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--accent);
    transition: var(--transition);
}

.value-item:hover {
    background: rgba(12, 36, 97, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1);
}

.value-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.value-item h4 i {
    color: var(--accent);
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* ========== FUTURE FLEET SECTION ========== */
.future-fleet-section {
    background: var(--white-bg);
}

.fleet-timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
    padding-left: 50px;
}

.fleet-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--accent), var(--accent-light));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--white-bg);
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.timeline-item:nth-child(even)::before {
    background: var(--accent-light);
}

.timeline-item h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.timeline-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.spec {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

.spec-value {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.timeline-item p {
    color: var(--text-gray);
}

.acquisition-model {
    background: rgba(12, 36, 97, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    margin-top: 3rem;
}

.model-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.model-feature {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.model-feature h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.model-feature p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.fleet-commitment {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.fleet-commitment p {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fleet-commitment p i {
    color: var(--accent);
}

/* ========== AIRCRAFT SHOWCASE SECTION ========== */
.aircraft-showcase-section {
    background: var(--services-bg);
}

.aircraft-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.aircraft-gallery-item {
    background: var(--white-bg);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.aircraft-gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), 0 20px 50px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.aircraft-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.aircraft-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}

.aircraft-gallery-item:hover .aircraft-photo {
    transform: scale(1.1);
}

.aircraft-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(12, 36, 97, 0.9), transparent);
    color: var(--white-text);
}

.aircraft-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.aircraft-info p {
    font-size: 1rem;
    opacity: 0.9;
}

.aircraft-description {
    padding: 2.5rem;
}

.aircraft-description h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.aircraft-description h3 i {
    color: var(--accent);
}

.aircraft-description p {
    color: var(--text-gray);
    line-height: 1.7;
}

.aircraft-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.aircraft-feature {
    text-align: center;
    padding: 2rem;
    background: var(--white-bg);
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.aircraft-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-gold);
}

.aircraft-feature h4 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.aircraft-feature p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========== WHY CHOOSE US SECTION ========== */
.why-choose-section {
    background: var(--white-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), var(--accent-light));
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), 0 10px 30px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-gold);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========== GLOBAL NETWORK SECTION ========== */
.global-network-section {
    background: var(--network-bg);
}

.network-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.network-content {
    padding-right: 2rem;
}

.network-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.network-highlight {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.highlight-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.highlight-subtitle {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.interactive-map {
    position: relative;
    height: 600px;
    background: var(--white-bg);
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-lg);
}

.map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 36, 97, 0.03), rgba(30, 55, 153, 0.05));
}

.route-line {
    position: absolute;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
    transform-origin: left center;
    opacity: 0.8;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    z-index: 2;
    border-radius: 2px;
    animation: routeFlow 3s linear infinite;
}

.route-china-dubai {
    top: 25%;
    left: 17%;
    width: 25%;
    transform: rotate(15deg);
}

.route-dubai-middle-east {
    top: 40%;
    left: 43%;
    width: 22%;
    transform: rotate(5deg);
    animation-delay: 0.5s;
}

.route-dubai-africa {
    top: 52%;
    left: 42%;
    width: 20%;
    transform: rotate(-25deg);
    animation-delay: 1s;
}

.route-dubai-europe {
    top: 20%;
    left: 30%;
    width: 18%;
    transform: rotate(45deg);
    animation-delay: 1.5s;
}

@keyframes routeFlow {
    0% { 
        background: linear-gradient(90deg, var(--accent), var(--accent-light));
        opacity: 0.7; 
    }
    50% { 
        background: linear-gradient(90deg, var(--accent-light), var(--light-accent));
        opacity: 1; 
    }
    100% { 
        background: linear-gradient(90deg, var(--accent), var(--accent-light));
        opacity: 0.7; 
    }
}

.destination-marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 10;
    transition: var(--transition);
    cursor: pointer;
}

.destination-marker:hover {
    transform: scale(1.15);
    z-index: 20;
}

.destination-marker:hover .marker-pin {
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
    transform: rotateY(180deg);
}

.marker-pin {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--white-bg), #f8f9fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
    border: 3px solid var(--accent);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.marker-label {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: var(--shadow);
    border: 1px solid rgba(12, 36, 97, 0.1);
    min-width: 110px;
    text-align: center;
    transition: var(--transition);
}

.destination-marker:hover .marker-label {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.china-marker { top: 20%; left: 12%; }
.dubai-marker { top: 42%; left: 40%; }
.middle-east-marker { top: 35%; left: 65%; }
.africa-marker { top: 62%; left: 32%; }
.europe-marker { top: 15%; left: 28%; }
.pakistan-marker { top: 48%; left: 55%; }
.malaysia-marker { top: 68%; left: 70%; }

.map-info-box {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(12, 36, 97, 0.1);
    z-index: 5;
    max-width: 300px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
}

.info-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.info-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ========== SERVICES SECTION ========== */
.services-section {
    background: var(--services-bg);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), 0 15px 40px rgba(212, 175, 55, 0.1);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-gold);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--accent);
    font-size: 0.9rem;
}

/* ========== STATS SECTION ========== */
.stats-section {
    background: var(--stats-bg);
    color: var(--white-text);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.stat-number-large {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.stat-label-large {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    background: var(--contact-bg);
    color: var(--white-text);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: var(--accent);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.5rem;
    box-shadow: var(--shadow-gold);
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white-text);
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.contact-detail-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white-text);
}

.address-detail {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    border-left: 3px solid var(--accent);
}

.contact-action {
    margin-top: 1.5rem;
}

/* ========== FOOTER ========== */
.luxury-footer {
    background: #0A1636;
    color: var(--white-text);
    padding: 4rem 2rem 2rem;
    border-top: 3px solid var(--accent);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.footer-brand {
    max-width: 500px;
}

.footer-logo {
    width: 200px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer-contact-summary {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-icon {
    color: var(--accent);
    font-size: 1.2rem;
    min-width: 24px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ========== SCROLL TO TOP ========== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

/* ========== ANIMATION CLASSES ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger-delay-1 { transition-delay: 0.1s; }
.stagger-delay-2 { transition-delay: 0.2s; }
.stagger-delay-3 { transition-delay: 0.3s; }
.stagger-delay-4 { transition-delay: 0.4s; }

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .luxury-logo-display {
        order: -1;
        height: 400px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .network-container,
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .network-content {
        padding-right: 0;
        text-align: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header-contact {
        display: none;
    }
    
    .section-logo {
        width: 45px;
        height: 45px;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .interactive-map {
        height: 500px;
    }
    
    .marker-pin {
        width: 55px;
        height: 55px;
        font-size: 1rem;
    }
    
    .marker-label {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
        min-width: 100px;
    }
    
    .map-info-box {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-grid,
    .fleet-grid,
    .vision-grid,
    .features-grid,
    .aircraft-gallery {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 6rem 1.5rem;
    }
    
    .about-image {
        height: 400px;
    }
    
    .section-logo {
        width: 40px;
        height: 40px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 200px;
    }
    
    .section-title-container {
        gap: 1rem;
    }
    
    .luxury-logo-display {
        height: 300px;
    }
    
    .main-logo {
        width: 250px;
    }
    
    .logo-glow {
        width: 280px;
        height: 280px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cargo-services,
    .model-features,
    .aircraft-features {
        grid-template-columns: 1fr;
    }
    
    .brand-name {
        font-size: 1.6rem;
    }
    
    .brand-icon {
        height: 50px;
    }
    
    .fleet-timeline {
        padding-left: 30px;
    }
    
    .fleet-timeline::before {
        left: 15px;
    }
    
    .timeline-item::before {
        left: -25px;
    }
    
    .mobile-menu {
        width: 280px;
    }
    
    .section-logo {
        width: 35px;
        height: 35px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .aircraft-image {
        height: 300px;
    }
    
    /* Show mobile golden frame */
    .mobile-golden-frame {
        display: block;
    }
}

@media (max-width: 576px) {
    .header-container {
        padding: 0 1rem;
    }
    
    section {
        padding: 4rem 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title-container {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .section-logo {
        width: 30px;
        height: 30px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .destination-marker {
        transform: scale(0.8);
    }
    
    .stats-container,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .china-marker { top: 15%; left: 8%; }
    .dubai-marker { top: 35%; left: 35%; }
    .middle-east-marker { top: 30%; left: 60%; }
    .africa-marker { top: 55%; left: 25%; }
    .europe-marker { top: 10%; left: 20%; }
    .pakistan-marker { top: 42%; left: 50%; }
    .malaysia-marker { top: 63%; left: 65%; }
    
    .route-china-dubai,
    .route-dubai-middle-east,
    .route-dubai-africa,
    .route-dubai-europe {
        display: none;
    }
    
    .mobile-menu {
        width: 100%;
    }
    
    .mobile-golden-frame {
        width: 6px;
    }
}

/* ========== ABOUT US SECTION WITH AIRCRAFT IMAGE ========== */
.about-section {
    background: var(--white-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: 24px;
    height: 500px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), 0 20px 40px rgba(12, 36, 97, 0.15);
}

.aircraft-showcase {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
}

.about-aircraft-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.aircraft-showcase:hover .about-aircraft-img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(12, 36, 97, 0.85) 0%, 
        rgba(12, 36, 97, 0.7) 50%, 
        rgba(26, 58, 143, 0.6) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.showcase-content {
    text-align: center;
    color: white;
    max-width: 300px;
}

.aircraft-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    border: 3px solid var(--accent);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.5s ease;
}

.aircraft-showcase:hover .aircraft-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.aircraft-icon i {
    font-size: 2.8rem;
    color: var(--accent);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.showcase-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--white-text);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.showcase-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    color: var(--light-accent);
    font-weight: 500;
    letter-spacing: 1px;
}

.about-info h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-info h3 i {
    color: var(--accent);
}

.about-list {
    list-style: none;
    margin: 1.5rem 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.about-list li i {
    color: var(--accent);
    margin-top: 0.25rem;
}

.commitment-box {
    margin-top: 2.5rem;
    padding: 1.8rem;
    background: linear-gradient(135deg, rgba(12, 36, 97, 0.05), rgba(12, 36, 97, 0.08));
    border-radius: 18px;
    border-left: 4px solid var(--accent);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.commitment-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(12, 36, 97, 0.1);
}

.commitment-box h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
}

.commitment-box h4 i {
    color: var(--accent);
}

.commitment-box p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Responsive Design for About Section */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        height: 400px;
        order: -1;
    }
    
    .aircraft-icon {
        width: 80px;
        height: 80px;
    }
    
    .aircraft-icon i {
        font-size: 2.5rem;
    }
    
    .showcase-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-image {
        height: 350px;
    }
    
    .aircraft-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .aircraft-icon i {
        font-size: 2.2rem;
    }
    
    .showcase-content h3 {
        font-size: 1.8rem;
    }
    
    .showcase-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-image {
        height: 300px;
    }
    
    .aircraft-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.2rem;
    }
    
    .aircraft-icon i {
        font-size: 1.8rem;
    }
    
    .showcase-content h3 {
        font-size: 1.6rem;
    }
    
    .showcase-content p {
        font-size: 0.9rem;
    }
    
    .commitment-box {
        padding: 1.5rem;
    }
}

/* ========== COMPANY IMAGES SECTION ========== */
.company-images-section {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.company-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.company-image-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px; 
    transition: var(--transition);
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.2);
}

.company-image-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.4);
}

.company-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; 
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.company-image-item:hover .company-photo {
    transform: scale(1.05);
}

/* ========== FOUNDER SECTION ========== */
.founder-section {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border-left: 4px solid var(--accent);
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.founder-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.founder-info h4 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.founder-title {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.founder-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design for Company Images */
@media (max-width: 1200px) {
    .company-images-grid {
        gap: 2rem;
    }
    
    .company-image-item {
        height: 380px;
    }
}

@media (max-width: 992px) {
    .company-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .company-image-item {
        height: 350px;
    }
    
    .founder-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .company-images-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .company-image-item {
        height: 500px; 
    }
    
    .company-photo {
        object-fit: contain;
        object-position: center center;
        background: rgba(0, 0, 0, 0.3);
    }
    
    .founder-photo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .company-images-grid {
        gap: 2rem;
    }
    
    .company-image-item {
        height: 450px;
    }
    
    .founder-section {
        padding: 1rem;
    }
}

@media (max-width: 400px) {
    .company-image-item {
        height: 400px;
    }
}

@media (max-width: 768px) and (orientation: portrait) {
    .company-image-item {
        height: 550px; /* ارتفاع بیشتر در حالت عمودی موبایل */
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .company-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .company-image-item {
        height: 300px;
    }
    
    .company-photo {
        object-fit: cover;
        object-position: center top;
    }
}