/* Reset and base config */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Urbanist', sans-serif;
    background-color: #0f111d;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: 1rem;
    border: none;
    outline: none;
    background: none;
}

.material-icons-outlined {
    font-size: 1.2rem;
    vertical-align: middle;
}

/* Custom Scrollbar (optional) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 6px;
}

::-webkit-scrollbar-track {
    background: #e0e0e0;
}

.navshell-avi__surface {
    background: linear-gradient(to right, #0d0f1b, #1e2238);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

.navshell-avi__wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navshell-avi__brandmark {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
}

.navshell-avi__icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.navshell-avi__logotext {
    font-family: 'Oxanium', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.logogold-accent {
    color: #ffd166;
    font-weight: 600;
}

.navshell-avi__toggler {
    background: none;
    border: none;
    color: #fff;
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

.navshell-avi__menuwrap {
    transition: max-height 0.4s ease;
}

.navshell-avi__menulist {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.navshell-avi__itemlink {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
    padding: 0.4rem 0.6rem;
    position: relative;
}

.navshell-avi__itemlink:hover {
    color: #ffd166;
}

.btn-outline-avi {
    border: 1px solid #ffd166;
    border-radius: 999px;
    padding: 0.35rem 1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-avi:hover {
    background: #ffd166;
    color: #0d0f1b;
}

/* --- MOBILE --- */
@media (max-width: 1024px) {
    .navshell-avi__toggler {
        display: block;
    }

    .navshell-avi__menuwrap {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #1a1d2c;
        overflow: hidden;
        max-height: 0;
    }

    .navshell-avi__menuwrap.active {
        max-height: 400px;
    }

    .navshell-avi__menulist {
        flex-direction: column;
        padding: 1rem 0;
        gap: 0.8rem;
    }

    .navshell-avi__itemlink {
        font-size: 1.05rem;
    }
}

.airstage-hero__section {
    position: relative;
    height: 100vh;
    background: linear-gradient(to right, #111827, #1f2937);
    background-image: url('../images/aviator-bg-texture.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.airstage-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.airstage-hero__container {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    padding: 0 1.5rem;
    text-align: center;
}

.airstage-hero__headline {
    font-family: 'Oxanium', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}

.airstage-hero__headline span {
    color: #ffd166;
}

.airstage-hero__subline {
    font-size: 1.15rem;
    font-weight: 400;
    color: #e5e7eb;
    margin-bottom: 2rem;
    max-width: 640px;
    margin-inline: auto;
}

.airstage-hero__cta-btn {
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 999px;
    background: #ffd166;
    color: #111827;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 209, 102, 0.3);
}

.airstage-hero__cta-btn:hover {
    background: #ffca44;
    transform: translateY(-2px);
}

.airstage-hero__disclaimer {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #bcbcbc;
}

@media (max-width: 768px) {
    .airstage-hero__headline {
        font-size: 2rem;
    }

    .airstage-hero__subline {
        font-size: 1rem;
    }

    .airstage-hero__cta-btn {
        font-size: 0.95rem;
        padding: 0.65rem 1.5rem;
    }
}

/* --- OVERLAY --- */
.modframe-avi__overlay,
.modframe-avi__thanks {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modframe-avi__overlay.active,
.modframe-avi__thanks.visible {
    display: flex;
}

.modframe-avi__box {
    background: #1c1f2c;
    color: #fff;
    padding: 2rem;
    max-width: 420px;
    width: 90%;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(255, 209, 102, 0.3);
    position: relative;
    text-align: center;
}

.modframe-avi__box p {
    margin-bottom: 10px;
}

.modframe-avi__closebtn {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.8rem;
    color: #ffd166;
    background: none;
    border: none;
    cursor: pointer;
}

.modframe-avi__title {
    font-family: 'Oxanium', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modframe-avi__text {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #e1e1e1;
}

.modframe-avi__form input,
.modframe-avi__form select {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.65rem;
    border-radius: 8px;
    background: #2a2d3f;
    color: #fff;
    border: 1px solid #444;
    font-size: 0.95rem;
}

.modframe-avi__form select option {
    background: #2a2d3f;
}

.modframe-avi__submit {
    width: 100%;
    padding: 0.75rem;
    background: #ffd166;
    color: #1a1a1a;
    font-weight: 600;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modframe-avi__submit:hover {
    background: #ffb300;
}

.introcloud-avi__wrap {
    padding: 5rem 1.5rem;
    background: #0f111d;
    color: #fff;
}

.introcloud-avi__container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.introcloud-avi__textblock {
    flex: 1 1 500px;
}

.introcloud-avi__title {
    font-size: 2.2rem;
    font-family: 'Oxanium', sans-serif;
    margin-bottom: 0.5rem;
}

.introcloud-avi__title span {
    color: #ffd166;
}

.introcloud-avi__subtitle {
    font-size: 1.25rem;
    color: #bbb;
    margin-bottom: 1rem;
}

.introcloud-avi__desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e0e0e0;
}

.introcloud-avi__visual {
    flex: 1 1 400px;
    text-align: center;
}

.introcloud-avi__visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 18px rgba(255, 209, 102, 0.15);
}

.flightsteps-avi__area {
    padding: 5rem 1.5rem;
    background: #1a1c2a;
    color: #fff;
    text-align: center;
}

.flightsteps-avi__heading {
    font-size: 2rem;
    font-family: 'Oxanium', sans-serif;
    margin-bottom: 3rem;
}

.flightsteps-avi__heading span {
    color: #ffd166;
}

.flightsteps-avi__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1080px;
    margin: 0 auto;
}

.flightsteps-avi__stepcard {
    background: #272b3f;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

.flightsteps-avi__num {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #ffd166;
    color: #000;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.beneflight-avi__core {
    padding: 5rem 1.5rem;
    background: #0e111b;
    color: #fff;
    text-align: center;
}

.beneflight-avi__mainhead {
    font-size: 2rem;
    font-family: 'Oxanium', sans-serif;
    margin-bottom: 3rem;
}

.beneflight-avi__mainhead span {
    color: #ffd166;
}

.beneflight-avi__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1080px;
    margin: 0 auto;
}

.beneflight-avi__card {
    background: #1e2130;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
    font-size: 0.95rem;
}

.beneflight-avi__card h3 {
    color: #ffd166;
    margin-bottom: 10px;
}

.pilotbios-avi__section {
    background: linear-gradient(to right, #0e0f1b, #1a1c29);
    padding: 6rem 1.5rem;
    color: #fff;
    font-family: 'Urbanist', sans-serif;
}

.pilotbios-avi__heading {
    font-family: 'Oxanium', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 4rem;
}

.pilotbios-avi__heading span {
    color: #ffd166;
}

.pilotbios-avi__container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.pilotbios-avi__profile {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #151623;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid transparent;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pilotbios-avi__profile:hover {
    border-color: #ffd166;
    box-shadow: 0 0 12px rgba(255, 209, 102, 0.15);
}

.pilotbios-avi__image {
    flex: 0 0 160px;
}

.pilotbios-avi__image img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #ffd166;
}

.pilotbios-avi__info {
    flex: 1;
}

.pilotbios-avi__name {
    font-size: 1.3rem;
    color: #ffd166;
    margin-bottom: 0.25rem;
    font-family: 'Oxanium', sans-serif;
}

.pilotbios-avi__role {
    font-size: 0.95rem;
    color: #ccc;
    font-style: italic;
    display: block;
    margin-bottom: 0.75rem;
}

.pilotbios-avi__bio {
    font-size: 0.95rem;
    color: #e1e1e1;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .pilotbios-avi__profile {
        flex-direction: column;
        text-align: center;
    }

    .pilotbios-avi__image {
        margin-bottom: 1rem;
    }

    .pilotbios-avi__image img {
        width: 120px;
        height: 120px;
    }
}

.edibox-avi__plans {
    background: #0d0f1c;
    padding: 6rem 1.5rem;
    color: #fff;
    text-align: center;
}

.edibox-avi__heading {
    font-size: 2rem;
    font-family: 'Oxanium', sans-serif;
    margin-bottom: 3rem;
}

.edibox-avi__heading span {
    color: #ffd166;
}

.edibox-avi__container {
    max-width: 1140px;
    margin: 0 auto;
}

.edibox-avi__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.edibox-avi__card {
    background: #181a2a;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.edibox-avi__card:hover {
    border-color: #ffd166;
    box-shadow: 0 0 20px rgba(255, 209, 102, 0.1);
    transform: translateY(-6px);
}

.edibox-avi__card--highlight {
    background: linear-gradient(135deg, #252845, #1d213a);
    border-color: #ffd166;
}

.edibox-avi__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd166;
    color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
}

.edibox-avi__title {
    font-family: 'Oxanium', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #ffd166;
}

.edibox-avi__desc {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.edibox-avi__features {
    list-style: none;
    font-size: 0.9rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    padding: 0;
    text-align: left;
}

.edibox-avi__features li {
    margin-bottom: 0.4rem;
}

.edibox-avi__price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.edibox-avi__btn {
    background: #ffd166;
    color: #1a1a1a;
    font-weight: 600;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.edibox-avi__btn:hover {
    background: #ffbb33;
}

.flytalk-avi__reviews {
    background: #0c0f1a;
    padding: 5rem 1.5rem;
    color: #fff;
}

.flytalk-avi__heading {
    font-family: 'Oxanium', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.flytalk-avi__heading span {
    color: #ffd166;
}

.flytalk-avi__container {
    max-width: 1140px;
    margin: 0 auto;
}

.flytalk-avi__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.flytalk-avi__card {
    background: #1c1f2e;
    border-left: 5px solid #ffd166;
    padding: 1.5rem;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 16px rgba(255, 209, 102, 0.05);
}

.flytalk-avi__text {
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.flytalk-avi__meta {
    font-size: 0.85rem;
    color: #ccc;
}

.airfaq-avi__wrap {
    background: #12141e;
    padding: 5rem 1.5rem;
    color: #fff;
}

.airfaq-avi__heading {
    font-family: 'Oxanium', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.airfaq-avi__heading span {
    color: #ffd166;
}

.airfaq-avi__accordion {
    max-width: 800px;
    margin: 0 auto;
}

.airfaq-avi__item {
    margin-bottom: 1rem;
    border-bottom: 1px solid #333;
}

.airfaq-avi__question {
    width: 100%;
    background: none;
    border: none;
    font-size: 1.05rem;
    text-align: left;
    padding: 1rem;
    color: #ffd166;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.airfaq-avi__question:hover {
    background: #1c1e2e;
}

.airfaq-avi__answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 1rem;
    font-size: 0.95rem;
    color: #ddd;
}

.airfaq-avi__item.active .airfaq-avi__answer {
    max-height: 300px;
    padding: 1rem;
}

.winglink-avi__connect {
    background: #0e101a;
    color: #fff;
    padding: 5rem 1.5rem;
}

.winglink-avi__heading {
    font-size: 2rem;
    text-align: center;
    font-family: 'Oxanium', sans-serif;
    margin-bottom: 3rem;
}

.winglink-avi__heading span {
    color: #ffd166;
}

.winglink-avi__container {
    max-width: 1080px;
    margin: 0 auto;
}

.winglink-avi__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
}

.winglink-avi__info {
    flex: 1 1 300px;
}

.winglink-avi__desc {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.winglink-avi__list {
    list-style: none;
    padding: 0;
    font-size: 0.95rem;
}

.winglink-avi__list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.winglink-avi__form {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.winglink-avi__form input,
.winglink-avi__form textarea {
    padding: 0.8rem;
    border-radius: 10px;
    background: #1a1c2a;
    color: #fff;
    border: 1px solid #333;
    font-size: 0.95rem;
}

.winglink-avi__sendbtn {
    background: #ffd166;
    color: #1a1a1a;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.winglink-avi__sendbtn:hover {
    background: #ffbb33;
}

.winglink-avi__thankyou {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.winglink-avi__thankyou.visible {
    display: flex;
}

.winglink-avi__thankbox {
    background: #1f2230;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 209, 102, 0.15);
}

.winglink-avi__thankbox h3 {
    margin-bottom: 0.5rem;
    font-family: 'Oxanium', sans-serif;
    color: #ffd166;
}

.winglink-avi__thankbox p {
    color: #fff;
    margin-bottom: 10px;
}

.airfoot-avi__ground {
    background: #0b0c15;
    color: #ccc;
    font-size: 0.9rem;
    padding-top: 3rem;
    border-top: 1px solid #222;
}

.airfoot-avi__container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.airfoot-avi__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid #222;
}

.airfoot-avi__brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Oxanium', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
}

.airfoot-avi__brand img {
    width: 36px;
    height: 36px;
}

.golden-trail {
    color: #ffd166;
}

.airfoot-avi__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    padding: 0;
}

.airfoot-avi__nav a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.airfoot-avi__nav a:hover {
    color: #ffd166;
}

.airfoot-avi__contacts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #aaa;
}

.airfoot-avi__contacts .material-icons-outlined {
    font-size: 1rem;
    vertical-align: middle;
    margin-right: 0.3rem;
    color: #ffd166;
}

.airfoot-avi__bottom {
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.85rem;
    color: #777;
}

.airfoot-avi__bottom {
    text-align: center;
    padding: 1.5rem 0 2rem;
    font-size: 0.85rem;
    color: #777;
}

.airfoot-avi__policies {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #888;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.airfoot-avi__policies a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.airfoot-avi__policies a:hover {
    color: #ffd166;
}

.cookiebar-avi__banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1c1e2b;
    color: #fff;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    z-index: 99999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
    display: none;
}

.cookiebar-avi__banner.active {
    display: block;
}

.cookiebar-avi__inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.cookiebar-avi__inner p {
    margin: 0;
    color: #ddd;
    line-height: 1.4;
    flex: 1;
}

.cookiebar-avi__inner a {
    color: #ffd166;
    text-decoration: underline;
}

.cookiebar-avi__acceptbtn {
    background: #ffd166;
    color: #1a1a1a;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookiebar-avi__acceptbtn:hover {
    background: #ffb700;
}

.legal-avi__wrapper {
    max-width: 880px;
    margin: 0 auto;
    padding: 8rem 1.5rem;
    color: #e5e5e5;
    font-family: 'Urbanist', sans-serif;
    background: transparent;
}

.legal-avi__section h1 {
    font-size: 2.2rem;
    font-family: 'Oxanium', sans-serif;
    color: #ffd166;
    margin-bottom: 1rem;
}

.legal-avi__section h2 {
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: 'Oxanium', sans-serif;
}

.legal-avi__section p {
    margin-bottom: 1rem;
    line-height: 1.75;
    color: #d0d0d0;
}

.legal-avi__section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-avi__section ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
}