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

body {
    font-family: "Urbanist", sans-serif;
    background-color: #0c0c0c;
    color: #fff;
    line-height: 1.6;
}

/* Make entire date input clickable for the picker */
input[type="date"] {
    position: relative;
    cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    z-index: 10;
}

/* Ensure the text is still visible and behind the transparent indicator */
input[type="date"] {
    color-scheme: dark;
    /* Helps with visibility in dark mode */
}

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

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Hanburger 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;
}

/* RTL Sidebar Mirroring */
html[dir="rtl"] .sidebar {
    left: auto !important;
    right: -300px !important;
    transition: right 0.3s ease !important;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5) !important;
}
html[dir="rtl"] .sidebar.active {
    left: auto !important;
    right: 0 !important;
}

.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 */
* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

/* Top Bar for Translator */
.top-bar {
    background: #000;
    padding: 5px 0;
    border-bottom: 1px solid rgba(201, 168, 106, 0.15);
    position: relative;
    z-index: 1001;
    min-height: 50px;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

#google_translate_element {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

/* Google Translate Styling */
.goog-te-gadget-simple {
    background-color: #c9a86a !important;
    border: none !important;
    padding: 18px 24px !important;
    border-radius: 10px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    text-decoration: none !important;
    height: auto !important;
    min-width: 160px !important;
    transition: all 0.3s ease !important;
}

.goog-te-gadget-simple:hover {
    background-color: #d4b97a !important;
}

.goog-te-gadget-simple .goog-te-menu-value {
    color: #1a1a1a !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    font-family: "Urbanist", sans-serif !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
}

/* Add the arrow suffix to match the 'Request a Flight →' button */
.goog-te-gadget-simple .goog-te-menu-value::after {
    content: " →" !important;
    margin-left: 10px !important;
    font-size: 18px !important;
    font-weight: 300 !important;
}

.goog-te-gadget-simple .goog-te-menu-value span {
    color: #1a1a1a !important;
}

/* Hide all Google branding/icons */
.goog-te-gadget span,
.goog-te-gadget img,
.goog-te-gadget-icon,
.goog-te-banner-frame,
.goog-te-menu-value span:nth-child(3),
.goog-te-menu-value span:nth-child(5) {
    display: none !important;
}

/* Ensure the text is visible and clean */
.goog-te-gadget-simple .goog-te-menu-value span:first-child {
    display: inline-block !important;
    border: none !important;
}

.goog-te-gadget .goog-te-combo {
    background: #111 !important;
    color: #c9a86a !important;
    border: 1px solid rgba(201, 168, 106, 0.3) !important;
    padding: 4px 10px !important;
    font-size: 13px !important;
    font-family: "Urbanist", sans-serif !important;
    border-radius: 4px !important;
    outline: none !important;
}

.goog-te-menu-value span {
    color: #fff !important;
    font-size: 13px !important;
    font-family: "Urbanist", sans-serif !important;
}

/* Style the actual dropdown menu iframe */
iframe.goog-te-menu-frame {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5) !important;
    border: 1px solid #c9a86a !important;
    border-radius: 4px !important;
    overflow: hidden !important;
}

.main-header,
.main-header2,
.main-header4 {
    position: absolute;
    width: 100%;
    max-width: 100vw;
    top: 40px;
    z-index: 1000;
    padding: 20px 0;
}

.nav-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}
.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    gap: 3vw;
}

.nav-link,
.nav-right a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: "Urbanist", sans-serif;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link {
    position: relative;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-link::after {
    content: "" !important;
    position: absolute !important;
    left: 5% !important;
    bottom: -10px !important;
    /* Position it like in the mockup */
    width: 0 !important;
    height: 2px !important;
    background: #c9a86a !important;
    transition: width 0.3s ease !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.nav-link.active::after {
    width: 90% !important;
    /* Slightly centered like in many luxury designs */
}

.nav-link:hover::after {
    width: 90% !important;
}

.nav-link:hover {
    color: #c9a86a;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 40px;
}

.logo img {
    height: 34px;
    width: auto;
    object-fit: contain;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Services Dropdown */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown .nav-link {
    display: inline-flex;
    align-items: center;
}

.dropdown-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(20px);
    background: rgba(18, 18, 18, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    min-width: 220px;
    z-index: 1500;
    margin-top: 15px;
    padding: 10px 0;
    border: 1px solid rgba(201, 168, 106, 0.15) !important;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-height: 200px;
    overflow: auto;
}

.dropdown-content::-webkit-scrollbar {
    width: 5px;
}

.dropdown-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.dropdown-content a {
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: "Urbanist", sans-serif;
    transition:
        color 0.3s,
        background-color 0.3s;
    border-bottom: 1px solid #4f483b;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    color: #c9a86a;
    background: rgba(255, 255, 255, 0.03);
}

.nav-dropdown:hover .dropdown-content,
.nav-dropdown.active .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/*Hero Section*/
.hero {
    height: 100vh;
    background: url("../Images/mainheader.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero4 {
    height: 500px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        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;
    max-width: 1400px;
}

.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;
    font-family: "Urbanist", sans-serif;
}

.cta-button {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 16px;
    cursor: pointer;
    font-family: "Urbanist", sans-serif;
    transition: all 0.3s;
    margin-top: 20px;
    font-weight: 600;
}

.cta-button:hover {
    background: #c9a86a;
    border-color: #c9a86a;
    color: #000;
}

/* BUTTONS */
.button-group {
    display: flex;
    gap: 18px;
    text-align: center;
    margin-top: 25px;
    justify-content: center;
}

.btn {
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 2px;
    letter-spacing: 0.3px;
}

.btn-primary {
    background-color: #c9a86a;
    color: #000;
    border: none;
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 1.5px solid #fff;
}

.btn-primary:hover {
    background-color: #c9a45d;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.explore-button {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    margin-top: 20px;
    cursor: pointer;
    justify-content: left !important;
    justify-self: left !important;
    font-size: medium;
    display: block;
    font-weight: 600;
    font-family: "Urbanist", sans-serif;
    transition: all 0.3s;
}

.view-all-button,
.explore-fleet-button,
.available-routes-button,
.view-articles-button,
.benefits-button {
    background: transparent;
    border: 2px solid white !important;
    color: white !important;
    padding: 12px 30px;
    margin-top: 20px;
    cursor: pointer;
    justify-content: center !important;
    justify-self: center !important;
    font-size: medium;
    display: block;
    font-weight: 600;
    font-family: "Urbanist", sans-serif;
    transition: all 0.3s;
}

.explore-button:hover,
.view-all-button:hover,
.explore-fleet-button:hover,
.available-routes-button:hover,
.view-articles-button:hover,
.benefits-button:hover {
    background: #c9a86a !important;
    border: 2px solid #c9a86a !important;
    color: #000 !important;
}

.join-button,
.submit-button {
    position: relative;
    overflow: hidden;
    background: #c9a86a;
    color: #000;
    padding: 12px 30px;
    margin-top: 20px;
    cursor: pointer;
    border: none;
    font-weight: 600;
    justify-content: center !important;
    justify-self: center !important;
    font-size: 15.5px;
    display: block;
    font-family: "Urbanist", sans-serif;
    transition: all 0.3s;
}

.join-button::after,
.submit-button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.join-button:hover::after,
.submit-button:hover::after {
    opacity: 1;
}

.view-all-button {
    display: block;
    margin: 20px auto 0;
}

.arrow_icon {
    width: 15px;
    height: 15px;
    margin-left: 5px;
}

/*Excellence Section */
.excellence {
    padding: 100px 40px;
    background: #181818;
    margin-top: -40px;
}

.excellence h2 {
    width: fit-content;
    margin: 0 auto 60px auto;
    text-align: center;
    font-size: 28px;
    font-weight: 200;
    letter-spacing: 3px;
    font-family: "Tenor Sans", sans-serif;
    position: relative;
}

.excellence h2:after {
    content: "";
    position: absolute;
    bottom: -4px;
    inset-inline-end: 0;
    width: 50%;
    height: 2.5px;
    background-image: repeating-linear-gradient(
        to right,
        #ffffff 0,
        #ffffff 20px,
        transparent 20px,
        transparent 40px
    );
}

html[dir="rtl"] .excellence h2:after,
html:lang(ar) .excellence h2:after,
html.translated-rtl .excellence h2:after {
    right: auto;
    left: 0;
}

.beige_text,
.beige-text {
    color: #c9a86a !important;
}

.excellence-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.excellence-text p {
    margin-bottom: 20px;
    color: #bdbdbd;
    line-height: 1.8;
    font-size: 17px;
    font-weight: 500;
    font-family: "Urbanist", sans-serif;
}

.excellence-image img {
    width: 100%;
}

/*About Section*/
.about {
    padding: 80px 0;
    background: #181818;
}

.about h2 {
    font-size: 28px;
    font-weight: 200;
    margin-bottom: 50px;
    color: white;
    letter-spacing: 3px;
    font-family: "Tenor Sans", sans-serif;
}

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

.about-text p {
    margin-bottom: 20px;
    color: #bdbdbd;
    line-height: 1.8;
    font-size: 17px;
    font-weight: 400;
}

/*Why Choose Section */
.why-choose {
    padding: 2px 40px 100px;
    background:
        linear-gradient(rgba(42, 38, 32, 0.9), rgba(42, 38, 32, 0.9)),
        url("../Images/cloud.png");
    background-size: cover;
}

.why-choose h2 {
    width: fit-content;
    margin: 50px auto 20px auto;
    text-align: center;
    font-size: 28px;
    font-weight: 200;
    letter-spacing: 3px;
    font-family: "Tenor Sans", sans-serif;
    position: relative;
    color: #ffffff;
}

.why-choose h2:after {
    content: "";
    position: absolute;
    bottom: -4px;
    inset-inline-end: 20px;
    width: 50%;
    height: 2.5px;
    background-image: repeating-linear-gradient(
        to right,
        #ffffff 0,
        #ffffff 20px,
        transparent 20px,
        transparent 40px
    );
}

html[dir="rtl"] .why-choose h2:after,
html:lang(ar) .why-choose h2:after,
html.translated-rtl .why-choose h2:after {
    right: auto;
    left: 0;
}

.why-choose .services-head {
    width: fit-content;
    margin: 100px auto 60px auto;
    text-align: center;
    font-size: 28px;
    font-weight: 200;
    letter-spacing: 3px;
    font-family: "Tenor Sans", sans-serif;
    position: relative;
    color: #ffffff;
}

.why-choose .services-head:after {
    content: "";
    position: absolute;
    bottom: -4px;
    inset-inline-end: 0;
    width: 50%;
    height: 2.5px;
    background-image: repeating-linear-gradient(
        to right,
        #ffffff 0,
        #ffffff 20px,
        transparent 20px,
        transparent 40px
    );
}

html[dir="rtl"] .why-choose .services-head:after,
html:lang(ar) .why-choose .services-head:after,
html.translated-rtl .why-choose .services-head:after {
    right: auto;
    left: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 70px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    display: flex;
    align-items: stretch;
    width: 100%;
    border-top: 1px solid rgba(189, 189, 189, 0.3);
}

.feature-content {
    flex: 1;
    padding: 10px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #c9a86a;
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
}

.feature-content p {
    color: #bdbdbd;
    font-family: "Urbanist", sans-serif;
    font-size: 17px;
    line-height: 1.6;
}

.choose_icon {
    width: 50px;
    height: 50px;
}

.feature-icon {
    flex-shrink: 0;
    border: 1px solid rgba(189, 189, 189, 0.3);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
}

.exclusive-fleet h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 200;
    margin-bottom: 20px;
    margin-top: 13px;
    letter-spacing: 3px;
    font-family: "Tenor Sans", sans-serif;
    position: relative;
    color: #ffffff;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.exclusive-fleet h2:after {
    content: "";
    position: absolute;
    bottom: -4px;
    inset-inline-end: 0;
    width: 50%;
    height: 2.5px;
    background-image: repeating-linear-gradient(
        to right,
        #ffffff 0,
        #ffffff 20px,
        transparent 20px,
        transparent 40px
    );
}

/* Our Values Section */
.choose {
    padding: 80px 40px;
    background: #181818;
}

.choose h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 200;
    margin-bottom: 10px;
    color: white;
    letter-spacing: 3px;
    font-family: "Tenor Sans", sans-serif;
}

.choose-intro {
    color: #878c9e;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    padding: 20px;
    text-align: center;
    max-width: 600px;
}

/* Global Rich Text Resilience - THE ULTIMATE OVERRIDE */
.rich-text ul,
.rich-text ol {
    display: block !important;
    padding-left: 2rem !important;
    margin-bottom: 1.5rem !important;
    list-style-position: outside !important;
}

.rich-text ul {
    list-style-type: disc !important;
}

.rich-text ol {
    list-style-type: decimal !important;
}

.rich-text li {
    display: list-item !important;
    margin-bottom: 0.8rem !important;
    color: #fff !important;
    padding-left: 0.5rem !important;
}

.rich-text h1,
.rich-text h2,
.rich-text h3 {
    color: #c9a86a !important;
    margin-top: 2rem !important;
    margin-bottom: 1rem !important;
    font-weight: 600 !important;
}

.rich-text a {
    color: #c9a86a !important;
    text-decoration: underline !important;
}

.overlay-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 64px;
    padding: 40px 0;
    max-width: 1200px;
    justify-content: center;
    margin: 0 auto;
}

.overlay-card {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 10px;
    border-radius: 20px;
    min-height: 300px;
}

.overlay-icon {
    height: 130px;
    width: auto;
    margin-bottom: 20px;
}

.overlay-card h3 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 15px;
    font-family: "Urbanist", sans-serif;
}

.overlay-card p {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.8;
    font-family: "Urbanist", sans-serif;
}

/*Amenities Section*/
.amenities {
    padding: 80px 0;
    background: #181818;
}

.amenities h2 {
    font-size: 28px;
    font-weight: 200;
    margin-bottom: 50px;
    color: white;
    letter-spacing: 3px;
    font-family: "Tenor Sans", sans-serif;
}

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

.amenities-text p {
    margin-bottom: 20px;
    color: #bdbdbd;
    line-height: 1.8;
    font-size: 17px;
    font-weight: 400;
}

.box-perks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.benefits {
    background: transparent;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #bdbdbd;
    padding: 25px 20px;
    width: 100%;
    text-align: center;
    border-radius: 8px;
}

.benefits img {
    margin-bottom: 15px;
}

.benefits h3 {
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: bold;
    margin-bottom: 8px;
}

.benefits p {
    font-weight: 450;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/*Services Section */
.services {
    padding: 30px 40px;
    background:
        linear-gradient(rgba(42, 38, 32, 0.9), rgba(42, 38, 32, 0.9)),
        url("../Images/cloud.png");
}

.services-subtitle {
    text-align: center;
    color: #bdbdbd;
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    margin-top: -30px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: #fff;

    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
    z-index: 2;
}

.service-card:hover .service-overlay {
    opacity: 1;
    visibility: visible;
}

.service-overlay h3 {
    color: #c9a86a;
    padding: 20px;
}

.service-overlay p {
    padding: 40px;
    margin-top: -30px;
}

.service-image-container {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.learn-more-container {
    padding: 20px 2px;
}

.learn-more {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: "Urbanist", sans-serif;
    display: inline-flex;
    align-items: start;
    gap: 8px;
    transition: all 0.3s ease;
    text-align: left;
}

.learn-more:hover {
    color: #c9a86a;
    gap: 12px;
}

.learn-more svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.learn-more:hover svg {
    transform: translateX(4px);
}

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

.fleet h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 200;
    margin-bottom: 40px;
    letter-spacing: 3px;
    font-family: "Tenor Sans", sans-serif;
    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.fleet h2:after {
    content: "";
    position: absolute;
    bottom: -4px;
    inset-inline-end: 0;
    width: 50%;
    height: 2.5px;
    background-image: repeating-linear-gradient(
        to right,
        #ffffff 0,
        #ffffff 20px,
        transparent 20px,
        transparent 40px
    );
}

.fleet-subtitle {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #bdbdbd;
    font-family: "Urbanist", sans-serif;
    margin-bottom: 30px;
}

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

.fleet-card {
    border: 1px solid #bdbdbd;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.fleet-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 5px;
    border-radius: 4px;
}

.fleet-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
}

.fleet_icon,
.passenger_icon {
    width: 20px !important;
    vertical-align: middle !important;
    height: 20px !important;
    margin-right: 10px !important;
}

.aircraft-type {
    color: #b0b0b0;
    margin-bottom: 15px;
    font-size: 16px;
}

.aircraft-specs {
    display: flex;
    gap: 100px;
    margin-bottom: 10px;
    color: #b0b0b0;
    font-size: 14px;
    justify-content: center;
}

.view-details {
    color: #c9a86a;
    border: 1px solid #bdbdbd;
    text-decoration: none;
    padding: 12px 145px;
    font-size: medium;
    font-family: "Urbanist", sans-serif;
    transition: color 0.3s;
    display: inline-block;
}

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

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

.aircraft-category {
    position: absolute;
    top: 20px;
    right: 0;
    padding: 3px 10px;
    background: #c9a86a;
    color: white;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* Comparison Section */
.comparison-section {
    background: #181818;
    padding: 70px 80px;
    color: #fff;
    font-family: "Urbanist", sans-serif;
}

.comparison-section h2 {
    font-size: 28px;
    font-weight: 200;
    margin-bottom: 30px;
    color: white;
    letter-spacing: 3px;
    font-family: "Tenor Sans", sans-serif;
}

.section-title {
    font-size: 22px;
    letter-spacing: 2px;
    font-family: "Urbanist", sans-serif;
    margin-bottom: 40px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 30px;
}

.jet-stats {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jet-stats li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-family: "Urbanist", sans-serif;
    font-size: 14px;
}

.stat-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-left p {
    margin: 0;
}

.stat-left img {
    width: 16px;
    height: 16px;
    display: block;
}

.stat-value {
    margin: 0;
    opacity: 0.9;
}

.jet-card {
    position: relative;
    height: 280px;
    border-radius: 14px;
    overflow: hidden;
    background: #181818;
}

.jet-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
}

.jet-content {
    position: relative;
    padding: 26px;
    z-index: 2;
}

.jet-content h3 {
    font-size: 18px;
    font-weight: 500;
    color: white;
    margin-bottom: 4px;
}

.jet-type {
    color: #c9a45d;
    font-size: 14px;
}

.divider {
    width: 60px;
    height: 2px;
    background: #c9a45d;
    margin: 16px 0;
}

.jet-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jet-content li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.compare-btn-wrap {
    text-align: center;
    margin-top: 45px;
}

.compare-btn {
    background: transparent;
    color: #fff;
    border: 1.5px solid #fff;
    padding: 14px 34px;
    font-size: 14px;
    cursor: pointer;
}

.compare-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

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

.discuss p {
    color: white;
    margin-top: 5px;
    font-size: 16px;
    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;
}

/*Membership Section*/

.membership {
    padding: 70px 40px;
    background:
        linear-gradient(rgba(42, 38, 32, 0.95), rgba(42, 38, 32, 0.95)),
        url("../Images/cloud.png");
}

.membership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.membership h2 {
    font-size: 28px;
    font-weight: 200;
    margin-bottom: 20px;
    letter-spacing: 3px;
    font-family: "Tenor Sans", sans-serif;
}

.membership-text p {
    color: #c9a86a;
    margin-bottom: 30px;
    font-family: "Urbanist", sans-serif;
    font-size: 17px;
}

.membership-buttons {
    display: flex;
    gap: 20px;
    justify-items: left;
}

.membership-card img {
    width: 100%;
    border-radius: 8px;
}

/*Empty Leg Section*/

.empty-leg {
    padding: 80px 20px;
    background: #181818;
}

.empty-leg h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 200;
    margin-bottom: 20px;
    margin-top: -20px;
    letter-spacing: 3px;
    font-family: "Tenor Sans", sans-serif;
    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.empty-leg h2:after {
    content: "";
    position: absolute;
    bottom: -4px;
    inset-inline-end: 0;
    width: 50%;
    height: 2.5px;
    background-image: repeating-linear-gradient(
        to right,
        #ffffff 0px,
        #ffffff 20px,
        transparent 20px,
        transparent 40px
    );
}

.empty-leg-subtitle {
    max-width: 1200px;

    text-align: center;
    color: #bdbdbd;
    font-family: "Urbanist", sans-serif;
    margin-bottom: 30px;
}

.empty-leg-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 0;
}

.journeys-container {
    display: grid;
    grid-template-columns: 190px 1.5fr 1.5fr;
    gap: 20px;
    align-items: left;
    padding: 20px 20px 20px 0px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.empty-leg-header {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 300px;
}

.empty-leg-header h3 {
    font-family: "Tenor Sans", sans-serif;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.empty-leg-header p {
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    color: #c9a86a;
    min-width: 180px;
    line-height: 1.6;
}

.journey-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
    padding: 20px;
    overflow: hidden;
    height: 325px;
}

.journey-card img {
    width: 100%;
    height: 92%;
    border-radius: 10px;
    object-fit: cover;
}

.journey-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.route {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
}

.route-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-icon {
    width: 14px;
    height: 14px;
    stroke: #c9a86a;
}

.city {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    display: flex;
    align-items: center;
    font-family: "Urbanist", sans-serif;
    gap: 8px;
}

.arrow {
    color: #c9a86a;
    font-size: 14px;
}

.badge {
    background: #c9a86a;
    color: #000000;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.flight-info {
    flex: 1;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}

.info-label {
    font-size: 13px;
    color: #888888;
    font-weight: 400;
    font-family: "Urbanist", sans-serif;
}

.info-value {
    font-size: 13px;
    color: #c9a86a;
    font-weight: 500;
}

.timing {
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
}

.timing span {
    font-size: 12px;
    color: #bdbdbd;
}

.pricing {
    border: 1px solid #c9a86a;
    border-radius: 10px;
    padding: 7px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 13px;
    color: #888888;
}

.price-original {
    font-size: 14px;
    color: #666666;
    text-decoration: line-through;
}

.price {
    font-size: 20px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    color: #c9a86a;
}

.book-button {
    background: #c9a86a;
    color: #000000;
    border: none;
    border-radius: 15px;
    padding: 14px 0;
    width: 80%;
    font-size: 14px;
    font-weight: 600;
    font-family: "Urbanist", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 15px auto 0;
    display: block;
}

.book-button:hover {
    background: #d4b972;
}

/* Updated Luxury Empty Leg Card Styles */
.spec-table {
    margin-top: 15px;
    margin-bottom: 20px;
    width: 100%;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-size: 13px;
    color: #888888;
    font-weight: 400;
    font-family: "Urbanist", sans-serif;
}

.spec-value {
    font-size: 13px;
    color: #c9a86a;
    font-weight: 500;
    text-align: right;
}

.spec-value.iata-code {
    font-weight: 400;
    letter-spacing: 1px;
}

.price-box-gold {
    border: 1px solid #c9a86a;
    border-radius: 2px;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    background: rgba(201, 168, 106, 0.05);
}

.price-box-gold .price-lbl {
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Urbanist", sans-serif;
}

.price-box-gold .price-val {
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
}

.book-btn-gold {
    width: 100%;
    padding: 14px;
    background: #c9a86a;
    color: #000;
    border: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-btn-gold:hover {
    background: #d4b972;
}

/*Network Section*/
.network {
    padding: 100px 40px;
    background:
        linear-gradient(rgba(42, 38, 32, 0.9), rgba(42, 38, 32, 0.9)),
        url("../Images/cloud2.png");
    margin: 0 auto;
}

.network h2 {
    text-align: left;
    font-size: 28px;
    font-weight: 200;
    margin-bottom: 40px;
    letter-spacing: 3px;
    font-family: "Tenor Sans", sans-serif;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid-unified {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid-unified .stat {
    padding: 35px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.stats-grid-unified .stat h3 {
    margin: 0;
    padding: 0;
    line-height: 1;
}

.stats-grid-unified .stat .stat-label {
    margin: 6px 0 0 0;
    padding: 0;
}

.stats-grid-unified .network-text {
    padding: 35px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: flex-start;
}

.stats-grid-unified .network-text .stat-description {
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.stats-grid-unified .stat:nth-last-child(2),
.stats-grid-unified .network-text:last-child {
    border-bottom: none;
}

.stat h3 {
    font-size: 32px;
    font-weight: 600;
    color: white;
    font-family: "Urbanist", sans-serif;
}

.stat-label {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
    color: white;
    font-family: "Urbanist", sans-serif;
}

.stat-description {
    color: white;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.6;
    font-family: "Urbanist", sans-serif;
}

/* Blog Section */
.blog {
    padding: 100px 40px;
    background: #181818;
}

.blog h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 200;
    margin-bottom: 40px;
    letter-spacing: 3px;
    font-family: "Tenor Sans", sans-serif;
    position: relative;
}

.blog h2:after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 53%;
    transform: translateX(-50%);
    width: 17%;
    max-width: 220px;
    height: 2.5px;
    background-image: repeating-linear-gradient(
        to right,
        #ffffff 0,
        #ffffff 20px,
        transparent 20px,
        transparent 40px
    );
}

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

.blog-card {
    background: #181818;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-tag {
    display: inline-block;
    background: #c9a86a;
    color: #000;
    padding: 5px 15px;
    font-size: 12px;
    margin: 20px 0 10px 20px;
}

.blog-card h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #c9a86a;
    font-family: "Urbanist", sans-serif;
}

.blog-card p {
    color: #bdbdbd;
    font-size: 14px;
    font-family: "Urbanist", sans-serif;
}

.beige_location {
    width: 15px !important;
    height: 17px !important;
    vertical-align: middle;
}

/* Contact Section */
.contact {
    padding: 100px 40px;
    backdrop-filter: blur(10px);
    background:
        linear-gradient(rgba(42, 38, 32, 0.8), rgba(42, 38, 32, 0.8)),
        url("../Images/contactus.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: left;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 901px) {
    .contact-grid .contact-info {
        margin-top: 135px !important; /* Aligns info exactly with the reduced input field */
        align-self: start !important; /* Prevents stretching and huge gaps */
    }
}

.contact-form h2 {
    font-size: 27px;
    color: #bdbdbd;
    margin-bottom: 10px;
    margin-top: 30px;
    font-family: "Tenor Sans", sans-serif;
    letter-spacing: 2px;
}

.contact-form p {
    color: #bdbdbd;
    font-family: "Urbanist", sans-serif;
    margin-bottom: 30px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 15px;
}

.form-field label {
    font-size: 14px;
    font-weight: 500;
    color: #bdbdbd;
}

.form-field input {
    padding: 10px 12px;
    font-size: 14px;
}

.form-field input[type="date"] {
    cursor: pointer;
    caret-color: transparent;
}

.form-field input[type="date"]:focus {
    outline: none;
    box-shadow: none;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
}

.contact-form input,
.contact-form textarea {
    width: 70% !important; /* Reduced width */
    background: transparent;
    border: 1px solid #bdbdbd;
    padding: 10px; /* Reduced height */
    color: #bdbdbd;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
}

.phone-flex-container {
    width: 70% !important;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #c9a86a;
}

.submit-button {
    width: 70% !important;
    margin-top: 15px;
    margin-inline-start: 0 !important;
    margin-inline-end: auto !important;
    padding: 12px 30px;
    margin-bottom: 30px;
    font-weight: bold;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px !important;
}

.office {
    padding: 15px;
}

.office h3 {
    color: #c4a962;
    margin-bottom: 15px;
    font-size: 18px;
    font-family: "Urbanist", sans-serif;
}

.office p {
    color: #bdbdbd;
    font-size: 16px;
    margin-bottom: 10px;
    font-family: "Urbanist", sans-serif;
}

.thank-you-message {
    margin-top: 12px;
    color: #7cb342 !important;
    font-weight: 500;
    display: none;
}

input[type="date"] {
    color: #ffffff;
}

input[type="date"]:focus {
    color: #ffffff;
}

/*Footer*/
.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: 1fr 1fr 2fr;
    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;
}

.sidebar-nav a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-dropdown-content {
    display: none;
    background: rgba(255, 255, 255, 0.05) !important;
    padding-left: 20px !important;
}

.sidebar-dropdown-content a {
    font-size: 14px !important;
    border-bottom: none !important;
}

.sidebar-dropdown.active .sidebar-dropdown-content {
    display: block !important;
}

.sidebar-dropdown.active .sidebar-dropdown-trigger img {
    transform: rotate(180deg) !important;
}

.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: 10px !important;
    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*/

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

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

    .overlay-grid {
        gap: 40px;
    }
}

/* Desktop (1200px and below) */
@media (max-width: 1200px) {
    .nav-left,
    .nav-right {
        gap: 35px;
    }

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

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

    .overlay-grid {
        gap: 30px;
    }

    .about-content,
    .amenities-content {
        gap: 40px;
    }

    .comparison-grid {
        gap: 20px;
    }

    .journeys-container {
        grid-template-columns: 1fr;
    }

    .empty-leg-header {
        min-height: auto;
        padding: 30px;
    }
}

/* Tablet Landscape (1024px and below) */
@media (max-width: 1024px) {
    .nav-left,
    .nav-right {
        gap: 25px;
    }

    .logo img {
        height: 35px;
    }

    .hero {
        min-height: 600px;
    }

    .hero-content h1 {
        font-size: 38px;
        letter-spacing: 3px;
    }

    .overlay-grid {
        grid-template-columns: 1fr 1fr 2fr;
        gap: 25px;
    }

    .overlay-card {
        min-height: 250px;
        padding: 15px 10px;
    }

    .overlay-icon {
        height: 100px;
    }

    .overlay-card h3 {
        font-size: 40px;
    }

    .overlay-card p {
        font-size: 18px;
    }

    .box-perks {
        grid-template-columns: 1fr 1fr 2fr;
    }

    .about-content,
    .amenities-content {
        gap: 30px;
    }

    .comparison-section {
        padding: 70px 40px;
    }

    .services-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

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

    .excellence,
    .why-choose,
    .services,
    .fleet,
    .empty-leg,
    .blog,
    .contact,
    .membership,
    .network {
        padding: 80px 30px;
    }

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

    .journey-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .journey-card img {
        height: 200px;
        width: 100%;
    }

    .journey-details {
        padding: 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;
        margin: 0 auto;
    }

    .menu-toggle {
        order: 1;
    }

    .excellence-content,
    .membership-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature {
        flex-direction: row;
        margin-top: 20px;
    }

    .feature-content {
        padding: 30px 25px;
    }

    .feature-icon {
        min-width: 140px;
        padding: 30px;
    }

    .membership-card img {
        margin-top: 40px;
    }

    .choose_icon {
        width: 50px;
        height: 50px;
    }

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

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

    .contact-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-top: 40px;
    }

    .excellence h2 {
        text-align: left;
    }

    .why-choose h2 {
        text-align: left;
    }

    .services-head h2 {
        text-align: left;
    }

    .fleet h2 {
        text-align: left;
    }

    .empty-leg h2 {
        text-align: left;
    }

    .network h2 {
        text-align: left;
    }

    .blog h2 {
        text-align: left;
    }

    .membership h2 {
        font-size: 14px !important;
    }
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .hero {
        height: auto;
        min-height: 500px;
        padding: 100px 20px 60px;
    }

    .hero4 {
        height: 400px;
    }

    .hero-content {
        margin-top: 40px;
    }

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

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

    .choose {
        padding: 60px 20px;
    }

    .overlay-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 0;
    }

    .overlay-card {
        min-height: 220px;
    }

    .box-perks {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .benefits {
        padding: 20px 15px;
    }

    .about {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about h2,
    .amenities h2,
    .comparison-section h2,
    .excellence h2,
    .why-choose h2,
    .fleet h2,
    .empty-leg h2,
    .blog h2,
    .network h2,
    .choose h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .about-text p,
    .amenities-text p,
    .excellence-text p {
        font-size: 16px;
    }

    .amenities {
        padding: 60px 0;
    }

    .amenities-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

    .jet-card {
        height: 260px;
    }

    .discuss {
        padding: 50px 20px;
    }

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

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

    .button-group {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .subscribe-field {
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto 20px;
    }

    .subscribe-button {
        width: 100%;
    }

    .services-grid,
    .fleet-slider,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .service-image-container {
        height: 280px;
    }

    .excellence,
    .why-choose,
    .services,
    .fleet,
    .empty-leg,
    .blog,
    .contact,
    .membership,
    .network {
        padding: 60px 20px;
    }

    .route {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .badge {
        align-self: flex-start;
    }

    .book-button {
        width: 100%;
    }

    .membership-buttons {
        flex-direction: column;
        width: 100%;
    }

    .membership-buttons .benefits-button {
        width: 50%;
    }

    .membership-card img {
        margin-top: 40px;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    .container,
    .nav-container {
        padding: 0 15px;
    }

    .logo img {
        height: 30px;
    }

    .hero {
        min-height: 450px;
        padding: 80px 15px 50px;
    }

    .hero4 {
        height: 350px;
    }

    .hero-content h1 {
        font-size: 28px;
        letter-spacing: 1.5px;
    }

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

    .choose {
        padding: 50px 15px;
    }

    .choose h2,
    .about h2,
    .amenities h2,
    .comparison-section h2,
    .excellence h2,
    .why-choose h2,
    .fleet h2,
    .empty-leg h2,
    .blog h2,
    .network h2 {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .overlay-card {
        min-height: 200px;
        padding: 15px;
    }

    .overlay-icon {
        height: 80px;
        margin-bottom: 15px;
    }

    .overlay-card h3 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .overlay-card p {
        font-size: 16px;
    }

    .box-perks {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .benefits h3 {
        font-size: 16px;
    }

    .about {
        padding: 50px 0;
    }

    .about-text p,
    .amenities-text p,
    .excellence-text p {
        font-size: 15px;
        line-height: 1.7;
    }

    .amenities {
        padding: 50px 0;
    }

    .comparison-section {
        padding: 50px 15px;
    }

    .jet-card {
        height: 240px;
    }

    .jet-content {
        padding: 20px;
    }

    .jet-content h3 {
        font-size: 16px;
    }

    .jet-type {
        font-size: 13px;
    }

    .jet-stats li {
        font-size: 13px;
    }

    .discuss {
        padding: 40px 15px;
    }

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

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

    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .excellence,
    .why-choose,
    .services,
    .fleet,
    .empty-leg,
    .blog,
    .contact,
    .membership,
    .network {
        padding: 50px 20px;
    }

    .service-image-container {
        height: 240px;
    }

    .fleet-card img {
        height: 150px;
    }

    .view-details {
        padding: 12px 60px;
    }

    .empty-leg-header h3 {
        font-size: 22px;
    }

    .city {
        font-size: 14px;
    }

    .price {
        font-size: 18px;
    }

    .stat-label {
        font-size: 16px;
    }

    .stat-description {
        font-size: 14px;
    }

    .cta-button,
    .explore-button,
    .view-all-button,
    .explore-fleet-button,
    .available-routes-button,
    .view-articles-button {
        padding: 12px 25px;
        font-size: 14px;
        width: 100%;
    }
}

/* Extra Small Mobile (400px and below) */
@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 24px;
    }

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

    .choose h2,
    .about h2,
    .amenities h2,
    .comparison-section h2,
    .excellence h2,
    .why-choose h2,
    .fleet h2,
    .empty-leg h2,
    .blog h2,
    .network h2 {
        font-size: 20px;
    }

    .overlay-card h3 {
        font-size: 32px;
    }

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

    .beige-text,
    .beige_text {
        display: block;
        margin-top: 5px;
    }

    .cta-button,
    .explore-button {
        font-size: 12px;
        padding: 10px 15px;
    }

    .aircraft-specs {
        gap: 30px;
    }

    .view-details {
        padding: 9px 85px;
    }

    .beige_text {
        display: inline;
    }

    .journeys-container {
        padding: 20px 20px 20px 20px;
    }
}

/* Overflow clip only on non-form sections to prevent breaking <select> dropdowns */
.hero,
.hero2,
.hero3,
.hero4,
.hero5,
.excellence,
.excellence3,
.why-choose,
.membership,
.journeys,
.services,
.our-services,
.fleet-preview,
.concierge-section,
.footer {
    overflow-x: hidden;
}

/* Width utility */
.section-width {
    width: 100%;
}

button,
.btn {
    font-family: "Urbanist", sans-serif;
}

/* View All Button */
.view-all-button {
    background-color: transparent;
    color: #c9a86a;
    border: 1px solid #c9a86a;
    padding: 14px 32px;
    font-size: 15px;
    cursor: pointer;
    justify-content: center;
    justify-self: center;
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    transition: all 0.3s;
    display: block;
    margin: 0 auto;
}

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

.contact {
    padding: 100px 40px;
    backdrop-filter: blur(10px);
    background:
        linear-gradient(rgba(42, 38, 32, 0.8), rgba(42, 38, 32, 0.8)),
        url("../Images/contactus.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: left;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.contact-form h2 {
    font-size: 27px;
    color: #bdbdbd;
    margin-bottom: 10px;
    margin-top: 30px;
    font-family: "Tenor Sans", sans-serif;
    letter-spacing: 2px;
}

.contact-form p {
    color: #bdbdbd;
    font-family: "Urbanist", sans-serif;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 15px;
}

.form-field label {
    font-size: 14px;
    font-weight: 500;
    color: #bdbdbd;
}

.form-field input {
    padding: 10px 12px;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: 1px solid #bdbdbd;
    padding: 15px;
    color: #bdbdbd;
    font-size: 14px;
    font-family: "Urbanist", sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #c9a86a;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    margin-top: 20px;
    padding: 15px 40px;
    margin-bottom: 30px;
    font-weight: bold;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 160px;
}

.office {
    padding: 20px;
    max-height: max-content !important;
    transition: all 0.3s ease;
    padding-bottom: -30px !important;
}

.office h3 {
    color: #c4a962;
    margin-bottom: 15px;
    font-size: 18px;
    font-family: "Urbanist", sans-serif;
    font-weight: 600;
}

.office p {
    color: #bdbdbd;
    font-size: 16px;
    margin-bottom: 8px;
    font-family: "Urbanist", sans-serif;
    line-height: 1.6;
}

.thank-you-message {
    margin-top: 12px;
    color: #7cb342 !important;
    font-weight: 500;
    display: none;
}

/* Tablet Landscape (1024px and below) */
@media (max-width: 1024px) {
    .contact {
        padding: 80px 30px;
    }

    .contact-grid {
        gap: 50px;
    }

    .contact-info {
        margin-top: 80px;
        gap: 18px;
    }

    .office {
        padding: 18px;
    }

    .office h3 {
        font-size: 17px;
    }

    .office p {
        font-size: 13px;
    }
}

/* Tablet Medium (900px and below) */
@media (max-width: 900px) {
    .contact {
        padding: 70px 25px;
    }

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

    .contact-info {
        margin-top: 40px;
    }
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .contact {
        padding: 60px 20px;
    }

    .contact-form h2 {
        font-size: 24px;
        margin-top: 0;
    }

    .contact-form p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .contact-grid {
        gap: 35px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }

    .office {
        padding: 20px;
    }

    .office h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .office p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .submit-button {
        padding: 14px 35px;
    }

    .about h2,
    .amenities h2,
    .comparison-section h2,
    .excellence h2,
    .why-choose h2,
    .fleet h2,
    .empty-leg h2,
    .blog h2,
    .network h2,
    .choose h2 {
        font-size: 24px;
        margin-bottom: 30px;
        margin-top: -3px;
    }

    .empty-leg-header h3 {
        font-size: 15px;
    }

    .membership-text h2 {
        font-size: 24px;
    }

    .blog h2:after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 53%;
        transform: translateX(-50%);
        width: 50%;
        max-width: 220px;
        height: 2.5px;
        background-image: repeating-linear-gradient(
            to right,
            #ffffff 0,
            #ffffff 20px,
            transparent 20px,
            transparent 40px
        );
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    .fleet-subtitle,
    .empty-leg-subtitle,
    .services-subtitle {
        text-align: left;
    }

    .contact {
        padding: 50px 15px;
    }

    .contact-form h2 {
        font-size: 22px;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
    }

    .contact-form p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .form-field {
        margin-top: 12px;
    }

    .form-field label {
        font-size: 13px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 13px;
    }

    .contact-form textarea {
        min-height: 100px;
    }

    .submit-button {
        padding: 13px 30px;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .contact-info {
        margin-top: 25px;
        gap: 12px;
    }

    .office {
        padding: 18px;
    }

    .office h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .office p {
        font-size: 13px;
        margin-bottom: 8px;
        line-height: 1.5;
    }
}

/* Extra Small Mobile (400px and below) */
@media (max-width: 400px) {
    .contact {
        padding: 40px 12px;
    }

    .contact-form h2 {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .contact-form p {
        font-size: 13px;
    }

    .form-field label {
        font-size: 12px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        font-size: 12px;
    }

    .submit-button {
        padding: 12px 25px;
        font-size: 13px;
    }

    .office {
        padding: 15px;
    }

    .office h3 {
        font-size: 16px;
    }

    .office p {
        font-size: 12px;
    }

    .footer-column {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 15px;
        row-gap: 10px;
    }

    .footer-column h4 {
        grid-column: span 2;
        text-align: left;
        margin-bottom: 15px;
    }

    .footer-column a {
        margin-bottom: 0;
        font-size: 13px;
    }

    .footer-column:nth-child(3) {
        display: block;
    }

    .footer-column:nth-child(3) .subscribe-field {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .footer-column:nth-child(3) .subscribe-field input {
        flex: 1;
    }

    .footer-column:nth-child(3) .subscribe-button {
        white-space: nowrap;
        width: auto;
    }

    .footer-column:nth-child(3) .social-icons {
        margin-top: 20px;
        display: flex;
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .footer-column h4 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .footer-column a {
        font-size: 13px;
        margin-bottom: 10px;
    }
}

@media (max-width: 400px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
    }

    .footer-column h4 {
        font-size: 14px;
    }

    .footer-column a {
        font-size: 12px;
    }
}

/* ========== GLOBAL HOMEPAGE EXTENSIONS (OUTSIDE MEDIA QUERIES) ========== */

/* --- Exclusive Fleet Section (Homepage) --- */
.exclusive-fleet {
    padding: 80px 0;
    background: #111;
    margin-top: -40px !important;
}

.fleet-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.fleet-section-title {
    font-family: "Tenor Sans", serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.fleet-title-divider {
    color: #c9a86a;
    letter-spacing: 6px;
    font-size: 14px;
    margin-bottom: 18px;
    opacity: 0.6;
}

.fleet-section-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 1250px;
    margin: 0 auto;
    line-height: 1.7;
    font-family: "Urbanist", sans-serif;
}

/* Fleet Cards — Homepage Grid */
.aircraft-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card — no hover, no radius, clean dark */
.aircraft-card-home {
    background: #131313;
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

/* Explore All Fleet button row */
.fleet-explore-row {
    text-align: center;
    margin-top: 50px;
}

.explore-all-btn {
    display: inline-block;
    border: 1px solid #fff;
    color: #fff;
    padding: 14px 40px;
    font-size: 15.5px;
    font-family: "Urbanist", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.explore-all-btn:hover {
    background: #c9a86a;
    border-color: #c9a86a;
    color: #000;
}

/* Responsive */
@media (max-width: 992px) {
    .aircraft-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .aircraft-grid-home {
        grid-template-columns: 1fr;
    }
}

/* --- Transparent Contact Form Inputs (Index Page) --- */
.contact-form input,
.contact-form select,
.contact-form textarea {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    padding: 12px 15px !important;
    border-radius: 4px !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #c9a86a !important;
    background: rgba(255, 255, 255, 0.05) !important;
    outline: none !important;
}

/* ========== TABLET NAVBAR REFINEMENTS ========== */
@media (max-width: 1200px) {
    .nav-left,
    .nav-right {
        gap: 25px !important;
    }

    .logo img {
        height: 24px !important;
    }

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

/* ========== MOBILE NAVIGATION & REFINEMENTS ========== */

@media (max-width: 992px) {
    .menu-toggle {
        display: flex !important;
        /* Show hamburger */
    }

    .nav-left,
    .nav-right {
        display: none !important;
        /* Hide desktop links */
    }

    .logo {
        display: none !important;
        /* Remove from header on mobile per user request */
    }

    .nav-container {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        /* Hamburger only */
        padding: 0 20px !important;
        height: 60px !important;
        position: relative !important;
    }

    .main-header,
    .main-header2,
    .main-header4 {
        padding: 10px 0;
    }

    /* Heading Alignment for TABLETS (Centered) */
    .excellence h2,
    .why-choose h2,
    .exclusive-fleet h2,
    .fleet-section-title,
    .empty-leg h2,
    .network h2,
    .contact h2 {
        text-align: center !important;
        font-size: 26px !important;
    }

    .excellence h2::after,
    .why-choose h2::after,
    .exclusive-fleet h2::after,
    .empty-leg h2::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 100px !important;
        bottom: -8px !important;
        display: block !important;
        position: absolute !important;
    }

    /* Footer Refinement (Left Aligned for Tablet & Mobile) */
    .footer-content {
        flex-direction: column !important;
        text-align: left !important;
        align-items: flex-start !important;
        gap: 30px !important;
        padding: 40px 20px !important;
    }

    .footer-brand {
        text-align: left !important;
        margin-bottom: 20px;
    }

    .footer-links {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
        text-align: left !important;
    }

    .footer-column {
        width: 100% !important;
        text-align: left !important;
    }

    .subscribe-form {
        width: 100% !important;
        max-width: 400px;
        margin: 0 !important;
    }

    .subscribe-field {
        display: flex !important;
        flex-direction: row !important;
        /* One line */
        align-items: stretch !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        overflow: hidden;
    }

    .subscribe-field input {
        border: none !important;
        background: transparent !important;
        padding: 12px 15px !important;
        flex: 3 !important;
        /* Longer input */
        color: white !important;
        min-width: 0 !important;
        border-radius: 0 !important;
    }

    .subscribe-button {
        background: #c9a86a !important;
        color: black !important;
        border: none !important;
        padding: 0 15px !important;
        /* Shorter padding for button */
        font-weight: 700 !important;
        cursor: pointer !important;
        white-space: nowrap !important;
        border-radius: 0 !important;
        flex: 1 !important;
        /* Shorter than input */
        max-width: 100px;
    }

    /* Common Stacking for Tablet & Mobile */
    .excellence-content,
    .membership-content,
    .contact-grid,
    .features-grid,
    .journey-card {
        grid-template-columns: 1fr !important;
        gap: 30px;
        height: auto !important;
        display: block !important;
    }

    .journey-card > img {
        width: 100% !important;
        height: 250px !important;
        margin-bottom: 20px;
        display: block;
    }

    .excellence-image {
        order: 2;
    }

    .excellence-text {
        order: 1;
    }

    .contact-grid {
        display: block !important;
    }

    .contact-info {
        margin-top: 40px;
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 600px) {
    /* Heading Alignment for MOBILE (Left Aligned) */
    .excellence h2,
    .why-choose h2,
    .exclusive-fleet h2,
    .fleet-section-title,
    .empty-leg h2,
    .network h2,
    .contact h2 {
        text-align: left !important;
        font-size: 24px !important;
    }

    .excellence h2::after,
    .why-choose h2::after,
    .exclusive-fleet h2::after,
    .empty-leg h2::after {
        left: 0 !important;
        transform: none !important;
        width: 80px !important;
    }

    .fleet-section-header,
    .empty-leg-subtitle,
    .network p,
    .membership-text,
    .membership-text p,
    .fleet-section-subtitle,
    .empty-leg-header {
        text-align: left !important;
    }

    .footer-content,
    .footer-brand,
    .footer-links {
        text-align: left !important;
        align-items: flex-start !important;
    }

    .footer-column {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        column-gap: 15px !important;
        row-gap: 10px !important;
    }

    .footer-column h4 {
        grid-column: span 2 !important;
        margin-bottom: 15px !important;
    }

    .footer-column a {
        margin-bottom: 0 !important;
        font-size: 13px !important;
    }

    .footer-column:last-child {
        display: block !important;
        /* Keep subscription/email column as a single stack */
    }

    .subscribe-form {
        margin: 0 !important;
        max-width: 320px !important;
    }

    .subscribe-field {
        justify-content: flex-start !important;
        flex-direction: row !important;
        /* Keep one line on mobile too */
    }

    .aircraft-name-label,
    .aircraft-info-home,
    .category-label-home,
    .view-details-home {
        text-align: left !important;
    }
}

.wchat {
    position: fixed !important;
    right: 22px !important;
    bottom: 22px !important;
    z-index: 999999 !important;
    display: block !important;
    width: 56pxpx !important;
    height: 56px !important;
}

.wchat img {
    width: 64px !important;
    height: 64px !important;
    object-fit: contain !important;
    display: block !important;
}

@media (max-width: 768px) {
    .wchat {
        right: 16px !important;
        bottom: 16px !important;
        width: 64px !important;
        height: 64px !important;
    }

    .wchat img {
        width: 68px !important;
        height: 68px !important;
    }
}
