/* Aircraft Page Styles - Elegant Design */

/* Aircraft Hero */
.aircraft-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(135deg, #000 0%, #1a1a2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.aircraft-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fwallpapercat.com%2Fw%2Ffull%2F6%2Fc%2F4%2F2213899-2400x1798-desktop-hd-gulfstream-g550-background.jpg&f=1&nofb=1&ipt=c4eb96015f439f3af82c0b065d0957648ba347dcdd8aa117db1a24a7c8d2f245');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 1;
}

.aircraft-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 2;
}

.aircraft-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Hide mobile hero button on desktop */
.mobile-hero-btn {
    display: none;
}

.aircraft-hero-title {
    font-size: 4.5rem;
    font-weight: 200;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
}

.aircraft-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: 0.02em;
}

/* Aircraft Categories Section */
.aircraft-categories-section {
    background: #fff;
    padding: 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 70px;
    z-index: 100;
}

.categories-container {
    max-width: 1400px;
    margin: 0 auto;
}

.category-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-nav::-webkit-scrollbar {
    display: none;
}

.category-btn {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 1.5rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-btn:hover {
    color: #000;
    background: #f8f9fa;
}

.category-btn.active {
    color: #000;
    border-bottom-color: #000;
    font-weight: 600;
}

/* Aircraft Details Section */
.aircraft-details-section {
    background: #fff;
    padding: 4rem 2rem 5rem;
    min-height: 600px;
    scroll-margin-top: 120px;
}

.details-container {
    max-width: 1400px;
    margin: 0 auto;
}

.aircraft-content {
    display: none;
    animation: fadeIn 0.6s ease;
    padding-top: 0;
}

.aircraft-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Aircraft Detail Grid */
.aircraft-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.aircraft-image-large {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aircraft-image-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.aircraft-image-large:hover img {
    transform: none;
}

/* Aircraft Info Panel */
.aircraft-info-panel {
    padding: 2rem 0;
}

.category-name {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #000;
    margin-bottom: 1rem;
}

.category-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 3rem;
}

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.spec-item {
    text-align: center;
}

.spec-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: #000;
    margin-bottom: 0.5rem;
}

.spec-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Aircraft Models */
.aircraft-models h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.model-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.model-item {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 4px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.model-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

/* CTA Section */
.aircraft-cta-section {
    background: #000;
    padding: 6rem 2rem;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 200;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 1.1rem 3rem;
    border: none;
    border-radius: 2px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-primary {
    background: #000;
    color: #fff;
}

.btn-cta-primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: #000;
    border-color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .aircraft-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .aircraft-image-large {
        height: 400px;
    }

    .category-nav {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .category-btn {
        flex: 0 1 auto;
    }
}

@media (max-width: 768px) {
    .aircraft-hero {
        height: 60vh;
        min-height: 500px;
        padding: 1rem;
        background-size: cover !important;
        background-position: center !important;
    }

    .aircraft-hero::before {
        opacity: 0.35;
    }

    .aircraft-hero-overlay {
        background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    }

    .aircraft-hero-content {
        z-index: 10;
        padding: 2rem 1.5rem;
    }

    .aircraft-hero-title {
        font-size: 2.5rem;
        white-space: normal;
        line-height: 1.2;
        color: white;
        margin-bottom: 1rem;
    }

    .aircraft-hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        color: white;
        opacity: 0.95;
        margin-bottom: 1.5rem;
    }

    /* Show mobile hero button on mobile */
    .mobile-hero-btn {
        display: inline-flex;
        max-width: 300px;
        width: 100%;
        padding: 1.125rem 2rem;
        font-size: 1rem;
        text-align: center;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .aircraft-categories-section {
        padding: 1.5rem 1rem;
    }

    .category-nav {
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: center;
    }

    .category-btn {
        padding: 1rem 1.25rem;
        font-size: 0.8rem;
        white-space: nowrap;
        flex: 0 1 auto;
        min-width: auto;
    }

    .aircraft-details-section {
        padding: 3rem 1.5rem;
    }

    .details-container {
        max-width: 100%;
    }

    .aircraft-image-large {
        height: 280px;
    }

    .aircraft-info-panel {
        padding: 1.5rem 0;
    }

    .category-name {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .category-desc {
        font-size: 0.95rem;
        line-height: 1.6;
    }

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

    .spec-item {
        padding: 1.25rem;
    }

    .spec-number {
        font-size: 1.75rem;
    }

    .spec-label {
        font-size: 0.85rem;
    }

    .aircraft-models h3 {
        font-size: 1.25rem;
    }

    .model-item {
        font-size: 0.9rem;
        padding: 0.75rem 0;
    }

    .aircraft-cta-section {
        padding: 4rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .aircraft-hero {
        height: 55vh;
        min-height: 450px;
        padding: 0.75rem;
    }

    .aircraft-hero-content {
        padding: 2rem 1rem;
    }

    .aircraft-hero-title {
        font-size: 1.75rem;
        letter-spacing: 0.05em;
        white-space: normal;
        line-height: 1.2;
        color: white;
        margin-bottom: 1rem;
    }

    .aircraft-hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
        color: white;
        margin-bottom: 1.5rem;
    }

    /* Adjust mobile hero button for small screens */
    .mobile-hero-btn {
        display: inline-flex;
        max-width: 280px;
        width: 100%;
        padding: 1rem 1.75rem;
        font-size: 0.9rem;
        text-align: center;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .aircraft-categories-section {
        padding: 1rem 0.5rem;
    }

    .category-nav {
        gap: 0.5rem;
    }

    .category-btn {
        padding: 0.875rem 1rem;
        font-size: 0.7rem;
        letter-spacing: 0.03em;
    }

    .aircraft-details-section {
        padding: 2rem 1rem;
    }

    .aircraft-image-large {
        height: 240px;
        border-radius: 6px;
    }

    .aircraft-info-panel {
        padding: 1rem 0;
    }

    .category-name {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .category-desc {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

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

    .spec-item {
        padding: 1rem;
    }

    .spec-number {
        font-size: 1.5rem;
    }

    .spec-label {
        font-size: 0.8rem;
    }

    .aircraft-models h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .model-item {
        font-size: 0.85rem;
        padding: 0.625rem 0;
    }

    .btn-cta-primary {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }

    .aircraft-cta-section {
        padding: 3rem 1rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .cta-content p {
        font-size: 0.875rem;
        margin-bottom: 2rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }
}

