* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #181818;
    color: #ffffff;
    line-height: 1.6;
}

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


a {
    text-decoration: none;
}


/* Navigation */
.main-header4 {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.navbar {
    width: 100%;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 75px;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link {
    position: relative;
    text-decoration: none;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav-link.active::after {
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 40px;
    max-width: 100%;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 2000;
    position: relative;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* Sidebar */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background: #1a1a1a;
    z-index: 2000;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    padding: 25px 20px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-logo img {
    height: 30px;
    max-width: 180px;
}

.sidebar-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.sidebar-close:hover {
    transform: rotate(90deg);
}

.sidebar-nav {
    padding: 20px 0;
}

.sidebar-nav a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.sidebar-nav a:hover {
    background: rgba(201, 168, 106, 0.1);
    border-left-color: #C9A86A;
    color: #C9A86A;
}

/* Hero Section */
.hero4 {
    height: 500px;
    min-height: 400px;
    background: url('Images/fleet_listing.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    margin-top: 80px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 48px;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

/* Fleet Section */
.fleet-section {
    padding: 80px 40px;
    background: #181818;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 12px 28px;
    background: transparent;
    color: #C9A86A;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.filter-btn.active {
    background: #C9A86A;
    color: #0a0a0a;
    border-color: #C9A86A;
    font-weight: 500;
}


.aircraft-grid {
    display: grid;
    margin-top: 30px;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.aircraft-card {
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.4s ease;
}


.aircraft-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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


.aircraft-category {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    color: #C9A86A;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin: 0 0 8px 0;
}


.aircraft-info h4 {
    color: #C9A86A;
    font-size: 15px;
    font-weight: 500;
}

.aircraft-info {
    padding: 30px 25px;
}

.aircraft-name {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin-bottom: 25px;
}

.aircraft-name2 {
    font-family: 'Urbanist', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin-bottom: 25px;
}


.fleet-section .spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #bdbdbd;
}

.aircraft-specs {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 10px;
    padding-bottom: 25px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.spec-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bdbdbd;
}

.spec-icon {
    width: 20px;
    height: 20px;
}

.spec-label {
    font-size: 13px;
    font-weight: 400;
}

.spec-value {
    font-size: 15px;
    font-weight: 600;
    color: #BDBDBD;
}

/* View Details Link */
.fleet-section .view-details {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #C9A86A;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 0;
    border: none;
    transition: all 0.3s ease;
}

.fleet-section .view-details:hover {
    gap: 12px;
    color: #C9A86A;
}

.arrow-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.fleet-section .view-details:hover .arrow-icon {
    transform: translateX(4px);
}


.passenger_icon,
.nm_icon {
    width: 20px !important;
    height: 20px !important;

}

.discuss {
    background: #161616;
    padding: 60px 40px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.discuss h3 {
    color: white;
    font-size: 25px;
    font-family: 'Tenor Sans', sans-serif;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.discuss p {
    color: white;
    margin-top: 5px;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: 'Urbanist', sans-serif;
}

.discuss .btn-contact {
    color: white;
    background-color: #161616;
    border: white 1px solid;
    margin-top: 25px;
    font-size: 16px;
    padding: 12px 28px;
    transition: color 0.4s ease;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.discuss .btn-contact::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: bottom 0.4s ease;
    z-index: 0;
}

.discuss .btn-contact span {
    position: relative;
    z-index: 1;
}

.discuss .btn-contact:hover {
    color: #2B4195;
}

.discuss .btn-contact:hover::before {
    bottom: 0;
}

.spec-label,
.spec-value {
    font-family: 'Urbanist', sans-serif;
    font-size: medium;
}

.view-all-button {
    background-color: transparent;
    color: #C9A86A;
    border: 1px solid #C9A86A;
    padding: 14px 32px;
    font-size: 15px;
    cursor: pointer;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    transition: all 0.3s;
}

.view-all-button:hover {
    background-color: #C9A86A;
    color: #000;
}


/* Footer Section*/
.footer {
    background: #161616;
    padding: 80px 40px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand img {
    height: 40px;
    max-width: 100%;
    object-fit: contain;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-family: 'Tenor Sans', sans-serif;
}

.footer-column a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #C9A86A;
}

.subscribe-field {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.subscribe-field input {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    font-size: 14px;
    font-family: 'Urbanist', sans-serif;
}

.subscribe-button {
    padding: 12px 30px;
    background: #fff;
    color: #000;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Urbanist', sans-serif;
    transition: background 0.3s;
    white-space: nowrap;
}

.subscribe-button:hover {
    background: #C4A962;
}

.social-icons {
    display: flex;
    gap: 25px;
    margin-top: 20px;
}

.social-icons a img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.social-icons a:hover img {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: white;
    font-size: 14px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Responsiveness */
@media (max-width: 1200px) {
    .aircraft-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hero4 {
        height: 400px;
    }

    .hero3 .hero-content h1 {
        font-size: 32px;
    }

    .hero3 .hero-content p {
        font-size: 16px;
    }

    .fleet-section {
        padding: 60px 20px;
    }

    .filter-tabs {
        gap: 8px;
        margin-bottom: 40px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .aircraft-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .aircraft-image {
        height: 240px;
    }

    .aircraft-name {
        font-size: 18px;
    }

    .fleet-section .aircraft-specs {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero3 {
        height: 350px;
    }

    .hero3 .hero-content h1 {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .hero3 .hero-content p {
        font-size: 14px;
    }

    .fleet-section {
        padding: 40px 15px;
    }

    .filter-tabs {
        gap: 6px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .aircraft-image {
        height: 200px;
    }

    .aircraft-info {
        padding: 25px 20px;
    }

    .aircraft-name {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .aircraft-category {
        font-size: 10px;
        padding: 5px 12px;
    }

    .spec-label {
        font-size: 12px;
    }

    .spec-value {
        font-size: 14px;
    }
}