/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #FCF9F5;
    color: #1E2A32;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes goldPulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
        border-color: rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
        border-color: rgba(212, 175, 55, 0.8);
    }
}

@keyframes softFlicker {
    0%, 100% { opacity: 0.6; transform: translateX(0px);}
    50% { opacity: 1; transform: translateX(5px); text-shadow: 0 0 5px rgba(212, 175, 55, 0.8);}
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ========== CONTACT RIBBON ========== */
.contact-ribbon {
    background: linear-gradient(135deg, #0A1C2A 0%, #0F2A3E 100%);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1100;
    border-bottom: 2px solid #D4AF37;
    animation: goldPulse 3s infinite;
}

.ribbon-container {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.ribbon-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 28px;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.call-btn {
    background: #1E5631;
    color: white;
}

.whatsapp-btn {
    background: #075E54;
    color: white;
}

.flicker-arrow {
    animation: softFlicker 1.2s infinite ease;
}

.ribbon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.ribbon-btn:hover::before {
    left: 100%;
}

.ribbon-btn:hover {
    transform: translateY(-2px);
    background: #D4AF37;
    color: #0A1C2A;
}

/* ========== HEADER ========== */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: rgba(10, 28, 42, 0.95);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 60px;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s;
}

.site-logo {
    max-height: 50px;
    width: auto;
    transition: transform 0.3s;
}

.site-logo:hover {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-menu li a {
    text-decoration: none;
    color: #F5EADB;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
    font-size: 0.9rem;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #F5E6B8);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li a:hover {
    color: #D4AF37;
}

.mobile-menu-icon {
    display: none;
    font-size: 1.8rem;
    color: #D4AF37;
    cursor: pointer;
    transition: transform 0.3s;
}

.mobile-menu-icon:hover {
    transform: scale(1.1);
}

/* ========== HERO SECTION WITH PARALLAX ========== */
.hero {
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('../images/hero/hero-background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transition: transform 0.1s ease-out;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 40%, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.gold-text {
    color: #D4AF37;
}

.hero-sub {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 32px 0;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.hero-stats span i {
    color: #D4AF37;
}

.cta-button {
    background: #D4AF37;
    color: #0A1C2A;
    padding: 14px 42px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-size: 1rem;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
    letter-spacing: 1.5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
}

.scroll-indicator i {
    display: block;
    margin-top: 8px;
    font-size: 1rem;
}

/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #B68B40;
    margin-bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.section-title {
    font-size: 3rem;
    font-family: 'Cormorant Garamond', serif;
    color: #1E2A32;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #F5E6B8);
}

.section-subtitle {
    color: #6B7A8A;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}

/* ========== FLEET SECTION ========== */
.fleet {
    padding: 100px 0;
    background: white;
}

.fleet-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.aircraft-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 45px -12px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    width: 550px;
    max-width: 100%;
    opacity: 0;
    transform: translateY(30px);
}

.aircraft-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.aircraft-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 55px -15px rgba(0,0,0,0.2);
}

.gallery-container {
    width: 100%;
}

.main-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.aircraft-card:hover .main-image img {
    transform: scale(1.05);
}

.thumbnail-strip {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(135deg, #F8F6F0 0%, #F0ECE3 100%);
    flex-wrap: wrap;
    justify-content: center;
}

.thumbnail-strip img {
    width: 75px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-strip img:hover {
    transform: scale(1.08);
    border-color: #D4AF37;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.aircraft-card h3 {
    font-size: 1.8rem;
    padding: 20px 20px 10px;
    font-family: 'Cormorant Garamond', serif;
}

.jet-label {
    font-size: 0.9rem;
    color: #B68B40;
    font-weight: normal;
}

.specs-grid {
    display: flex;
    gap: 20px;
    padding: 5px 20px;
    flex-wrap: wrap;
}

.spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #5B6C7A;
}

.spec i {
    color: #D4AF37;
    width: 20px;
}

.card-desc {
    padding: 10px 20px 25px;
    color: #6B7A8A;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========== PRICING SECTION ========== */
.pricing {
    background: #F3EFE6;
    padding: 100px 0;
}

.aircraft-pricing-group {
    margin-bottom: 60px;
}

.group-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.group-title i {
    font-size: 2rem;
    color: #D4AF37;
}

.group-title h3 {
    font-size: 1.8rem;
    font-family: 'Cormorant Garamond', serif;
}

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

.price-card {
    background: white;
    border-radius: 28px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
}

.price-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: #D4AF37;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
}

.price-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.route-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: #6B7A8A;
}

.route-details i {
    margin-right: 5px;
    color: #D4AF37;
}

.price-per-head {
    font-size: 2.2rem;
    font-weight: 800;
    color: #B68B40;
    margin: 20px 0;
}

.price-per-head span {
    font-size: 0.9rem;
    font-weight: normal;
}

.total-estimate {
    font-size: 0.85rem;
    color: #5B6C7A;
    margin-bottom: 25px;
}

.price-cta {
    background: #1E2A32;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.price-cta:hover {
    background: #D4AF37;
    color: #0A1C2A;
    transform: scale(1.05);
}

.pricing-footnote {
    text-align: center;
    font-size: 0.85rem;
    color: #6B7A8A;
    margin-top: 40px;
    padding: 15px;
    background: rgba(255,255,255,0.6);
    border-radius: 60px;
}

/* ========== SERVICES SECTION ========== */
.services {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    margin-top: 20px;
}

.service-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 28px;
    background: #FCF9F5;
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.95);
}

.service-item.visible {
    opacity: 1;
    transform: scale(1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px -12px rgba(0,0,0,0.1);
    background: white;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.service-item:hover .service-icon {
    background: #D4AF37;
}

.service-icon i {
    font-size: 2.5rem;
    color: #D4AF37;
    transition: all 0.3s;
}

.service-item:hover .service-icon i {
    color: white;
    transform: scale(1.1);
}

.service-item h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.service-item p {
    color: #6B7A8A;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========== GALLERY SECTION - FIXED IMAGE SIZING ========== */
.gallery-section {
    padding: 100px 0;
    background: #F8F6F0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    opacity: 0;
    transform: translateY(20px);
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(0,0,0,0.8));
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: #D4AF37;
}

.gallery-overlay span {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* ========== CONTACT SECTION ========== */
.contact {
    padding: 100px 0;
    background: #E8E2D4;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    transition: transform 0.4s;
}

.contact-wrapper:hover {
    transform: translateY(-5px);
}

.contact-info {
    padding: 50px;
    background: linear-gradient(135deg, #0A1C2A 0%, #0F2A3E 100%);
    color: white;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-family: 'Cormorant Garamond', serif;
}

.contact-details p {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-details i {
    width: 30px;
    color: #D4AF37;
    font-size: 1.1rem;
}

.contact-details a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: #D4AF37;
}

.hours-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    margin-top: 30px;
    font-size: 0.85rem;
}

.contact-form {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px 20px;
    border-radius: 14px;
    border: 1px solid #E8E2D4;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    font-weight: 700;
    padding: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    gap: 16px;
    letter-spacing: 0.5px;
}

/* ========== FOOTER ========== */
.main-footer {
    background: #0A1C2A;
    color: #E8E2D4;
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: #B8A99A;
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 1rem;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.footer-links h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #D4AF37;
}

.footer-links a {
    display: block;
    color: #E8E2D4;
    text-decoration: none;
    margin: 12px 0;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #D4AF37;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E8E2D4;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: #D4AF37;
    color: #0A1C2A;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    font-size: 0.75rem;
    color: #8A9BAE;
}

.seo-tag {
    margin-top: 8px;
    font-size: 0.7rem;
}

/* ========== SCROLL TO TOP BUTTON ========== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #D4AF37;
    color: #0A1C2A;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    background: white;
}

.scroll-top-btn.show {
    display: flex;
    animation: scaleIn 0.3s ease;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 900px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 28, 42, 0.98);
        flex-direction: column;
        padding: 25px;
        text-align: center;
        gap: 20px;
        backdrop-filter: blur(12px);
    }
    
    .nav-menu.show-mobile {
        display: flex;
    }
    
    .mobile-menu-icon {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .main-header {
        padding: 15px 20px;
    }
    
    .contact-info, .contact-form {
        padding: 35px;
    }
}

@media (max-width: 550px) {
    .ribbon-btn {
        padding: 6px 15px;
        font-size: 0.75rem;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .price-per-head {
        font-size: 1.8rem;
    }
    
    .thumbnail-strip img {
        width: 55px;
        height: 45px;
    }
    
    .main-image {
        height: 250px;
    }
    
    .gallery-item {
        aspect-ratio: 1 / 1;
    }
    
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}