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

body {
    font-family: 'Urbanist', sans-serif;
    background: #1a1a1a;
    color: #fff;
    overflow-x: hidden;
}

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


a {
    text-decoration: none;
}



.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;
}


/* Navigation */

.main-header8 {
    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;
    gap: 20px;
}

.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%;
}



/* Hero Section */
.hero8 {
    height: 500px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('Images/empty_leg_header.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;
    color: #ffffff;
}

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

/*Excellence Section */
.excellence3 {
    padding: 80px 40px;
    background: #181818;
}

.excellence3 h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 200;
    margin-bottom: 15px;
    letter-spacing: 3px;
    font-family: 'Tenor Sans', sans-serif;
}

.excellence-content3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.excellence-text3 h2 {
    text-align: start;
}

.excellence-text3 p {
    margin-bottom: 20px;
    color: #BDBDBD;
    line-height: 1.6;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Urbanist', sans-serif;
}

.tick-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 25px;
}

.tick_icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

.tick_text {
    color: #BDBDBD;
    line-height: 1.4;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Urbanist', sans-serif;
}

.excellence-image3 img {
    width: 100%;
    height: auto;
    display: block;
}

/* Available Flights Section */
.available-flights {
    padding: 80px 0;
    background: #181818;
}

.available-flights h2 {
    text-align: center;
    font-family: 'Tenor Sans', sans-serif;
    letter-spacing: 3px;
    font-weight: 400;
    margin-bottom: 10px;
    font-size: 28px;
}

.subtitle {
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 50px;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
}

.flights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Flight Card */
.flight-card {
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
}

.image-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.beige_location {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
}

.route {
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-family: 'Urbanist', sans-serif;
}

.tag-text {
    background: #c9a86a;
    color: #000;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
}

.meta {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: #bdbdbd;
    font-family: 'Urbanist', sans-serif;
    margin-bottom: 12px;
}

.meta .value {
    color: #c9a86a;
    font-family: 'Urbanist', sans-serif;
}

.meta.split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 30px;
}

.label {
    font-size: 14px;
    color: #9a9a9a;
}

.code {
    font-size: 15px;
    font-weight: 300;
    color: #c9a86a;
    font-family: 'Urbanist', sans-serif;
    letter-spacing: 1px;
}

.price-box {
    font-size: 15px;
    color: #aaa;
    margin-bottom: 20px;
    margin-top: 15px;
    font-family: 'Urbanist', sans-serif;
    border: 1px solid #C9A86A;
    padding: 12px 15px;
}

.price-box>div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.price-box>div:last-child {
    margin-bottom: 0;
}

.price-box .highlight {
    color: #c9a86a;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.book-btn {
    margin-top: auto;
    background: #c9a86a;
    color: #000;
    border: none;
    padding: 14px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
}

.book-btn:hover {
    background: #b89658;
}

/*Discuss Section */
.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;
}

.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-message {
    margin-top: 10px;
    color: #7cb342 !important;
    font-weight: 500;
    display: none;
}

.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 */

/* Desktop (1200px and below) */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .nav-container {
        padding: 0 30px;
    }

    .nav-left,
    .nav-right {
        gap: 40px;
    }
}

/* Tablet Large (1024px and below) */
@media (max-width: 1024px) {

    .nav-left,
    .nav-right {
        gap: 30px;
    }

    .nav-link {
        font-size: 15px;
    }

    .excellence-content3 {
        gap: 40px;
    }

    .flights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .meta-item {
        gap: 20px;
    }
}

/* Tablet Medium (900px and below) */
@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .nav-container {
        justify-content: space-between;
    }

    .logo {
        order: 2;
    }

    .menu-toggle {
        order: 1;
    }

    .excellence3 {
        padding: 60px 30px;
    }

    .excellence-content3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .excellence-text3 h2 {
        text-align: center;
    }

    .excellence-text3 p {
        text-align: center;
    }


    .available-flights {
        padding: 60px 30px;
    }

    .flights-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .footer {
        padding: 60px 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Tablet (768px and below) */
@media (max-width: 768px) {

    .container,
    .nav-container {
        padding: 0 20px;
    }

    .logo img {
        height: 50px;
        max-width: 220px;
    }

    .hero2 {
        height: 450px;
    }

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

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


    .excellence3 {
        padding: 50px 20px;
    }

    .excellence3 h2,
    .available-flights h2 {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .excellence-text3 p {
        font-size: 16px;
        line-height: 1.5;
    }

    .tick_text {
        font-size: 16px;
    }

    .available-flights {
        padding: 50px 20px;
    }

    .subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .card-body {
        padding: 18px;
    }

    .discuss {
        padding: 50px 20px;
    }

    .discuss h3 {
        font-size: 22px;
    }

    .discuss p {
        font-size: 15px;
    }

    .footer {
        padding: 60px 20px 20px;
    }

    .footer-brand img {
        height: 35px;
        max-width: 220px;
    }

    .subscribe-field {
        flex-direction: column;
    }

    .subscribe-field input {
        width: 100%;
    }

    .subscribe-button {
        width: 100%;
    }
}

/* Mobile Large (640px and below) */
@media (max-width: 640px) {


    .hero8 {
        height: 350px;
    }

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

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

    .excellence3 h2,
    .available-flights h2 {
        font-size: 22px;
    }

    .route {
        font-size: 14px;
    }

    .meta {
        font-size: 14px;
    }

    .price-box {
        font-size: 14px;
        padding: 10px 12px;
    }

    .discuss h3 {
        font-size: 20px;
    }
}

/* Mobile Medium (480px and below) */
@media (max-width: 480px) {

    .container,
    .nav-container {
        padding: 0 15px;
    }

    .logo img {
        height: 25px;

    }

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

    .hero8 {
        height: 350px;
    }

    .hero-content h1 {
        font-size: 26px;
        letter-spacing: 1px;
    }

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


    .excellence3 {
        padding: 40px 15px;
    }

    .excellence3 h2,
    .available-flights h2 {
        font-size: 20px;
    }

    .excellence-text3 p {
        font-size: 15px;
    }

    .tick_text {
        font-size: 15px;
    }

    .tick_icon {
        width: 18px;
        height: 18px;
    }

    .available-flights {
        padding: 40px 15px;
    }

    .subtitle {
        font-size: 14px;
        padding: 0 10px;
    }

    .card-body {
        padding: 15px;
    }

    .route {
        font-size: 13px;
    }

    .meta {
        font-size: 13px;
    }

    .meta-item {
        gap: 15px;
    }

    .label,
    .code {
        font-size: 13px;
    }

    .price-box {
        font-size: 13px;
    }

    .book-btn {
        font-size: 14px;
        padding: 12px;
    }

    .discuss {
        padding: 40px 15px;
    }

    .discuss h3 {
        font-size: 18px;
    }

    .discuss p {
        font-size: 14px;
    }

    .view-all-button {
        padding: 12px 28px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }

    .footer {
        padding: 60px 20px 20px;
    }

    .footer-brand img {
        height: 50px;
        max-width: 300px;
    }

    .sidebar {
        width: 260px;
    }
}

/* Mobile Small (360px and below) */
@media (max-width: 360px) {
    .hero8 {
        height: 320px;
    }

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

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

    .excellence3 h2,
    .available-flights h2 {
        font-size: 18px;
    }

    .excellence-text3 p {
        font-size: 14px;
    }

    .tick_text {
        font-size: 14px;
    }

    .route {
        font-size: 12px;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .tag-text {
        align-self: flex-end;
    }

    .meta-item {
        gap: 10px;
    }

    .footer-brand img {
        height: 28px;
        max-width: 180px;
    }

    .sidebar {
        width: 240px;
    }
}