/* ============================================ */
/* CHARTERS PAGE STYLES                          */
/* Requires: main.css                            */
/* Mobile-first — base styles are for mobile,   */
/* breakpoints add tablet/desktop enhancements. */
/* ============================================ */


/* ============================================ */
/* QUICK INQUIRY BAR                             */
/* ============================================ */
.quick-inquiry-section {
    background: #fff;
    padding: 28px 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.quick-inquiry-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.quick-inquiry-label {
    font-family: var(--label-font);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 14px;
    text-align: center;
}

/* Mobile: single-column stack */
.quick-inquiry-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: end;
}

.qi-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.qi-field label {
    font-family: var(--label-font);
    font-size: 9px;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    white-space: nowrap;
}

.qi-field input {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 10px 8px;
    font-size: 13px;
    width: 100%;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.25s ease;
}

.qi-field input:focus {
    border-color: var(--accent-color);
}

.qi-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 12px;
    font-family: var(--label-font);
    font-size: 11px;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.3s;
    height: 38px;
    width: 100%;
}

.qi-btn:hover {
    background: var(--accent-color);
}

/* Tablet: 4-column grid (2 rows for 7 fields + button) */
@media (min-width: 600px) {
    .quick-inquiry-section {
        padding: 32px 40px;
    }

    .quick-inquiry-form {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .quick-inquiry-label {
        text-align: left;
        margin-bottom: 16px;
    }

    .qi-btn {
        width: auto;
    }
}

/* Large desktop: single row (7 inputs + button) */
@media (min-width: 1200px) {
    .quick-inquiry-form {
        grid-template-columns: repeat(8, 1fr);
        gap: 10px;
    }

    .quick-inquiry-label {
        text-align: left;
    }
}


/* ============================================ */
/* CHARTER CARDS SECTION                         */
/* ============================================ */
.charter-cards-section {
    padding: 60px 20px;
    background: #ffffff;
}

.charter-cards-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.charter-cards-section .section-header h2 {
    font-family: var(--label-font);
    font-size: var(--text-sub-title);
    color: #111;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.charter-cards-section .section-header h2 span {
    color: var(--accent-color);
    font-family: var(--accent-font), var(--label-font);
    font-size: var(--text-title-accent);
}

.charter-cards-section .section-header p {
    font-family: var(--main-font);
    color: #888;
    font-size: var(--text-base);
    letter-spacing: 0.05em;
}

/* Mobile: single column */
.charter-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.charter-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
}

.charter-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
}

.charter-card-img-wrap {
    overflow: hidden;
    height: 240px;
}

.charter-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.charter-card:hover .charter-card-img {
    filter: brightness(1);
    transform: scale(1.04);
}

.charter-card-body {
    padding: 28px 24px 32px;
}

.charter-card-tag {
    display: inline-block;
    font-family: var(--label-font);
    font-size: var(--text-xs);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.charter-card-body h3 {
    font-family: var(--label-font);
    font-size: var(--text-sub);
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 12px;
}

.charter-card-body p {
    font-family: var(--main-font);
    font-size: var(--text-sm);
    color: #999;
    line-height: 1.75;
    margin: 0;
}

@media (min-width: 600px) {
    .charter-cards-section {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (min-width: 900px) {
    .charter-cards-section {
        padding: 80px 40px;
    }

    .charter-cards-section .section-header {
        margin-bottom: 50px;
    }

    /* Desktop: 3-column grid */
    .charter-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ============================================ */
/* BENEFITS SECTION                              */
/* ============================================ */
.benefits-section {
    position: relative;
    padding: 60px 20px;
    background: var(--primary-color);
    overflow: hidden;
}

.benefits-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/charter.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    filter: grayscale(100%);
}

.benefits-bg-overlay {
    position: absolute;
    inset: 0;
    background: #f4f4f4;
}

.benefits-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-header {
    text-align: center;
    margin-bottom: 40px;
}

.benefits-header h2 {
    font-family: var(--label-font);
    font-size: var(--text-sub-title);
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 12px;
}

.benefits-header h2 span {
    color: var(--accent-color);
    font-family: var(--accent-font), var(--label-font);
    font-size: var(--text-title-accent);
}

.benefits-header p {
    font-family: var(--main-font);
    color: #666;
    font-size: var(--text-base);
    letter-spacing: 0.04em;
}

/* Mobile: single column */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
}

.benefit-blurb {
    padding: 36px 28px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #ffffff;
    transition: background 0.3s, opacity 0.6s ease, transform 0.6s ease;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.benefit-blurb::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.4s ease;
}

.benefit-blurb:hover {
    background: #ffffff;
    border-color: #ffffff;
}

.benefit-blurb:hover::before {
    width: 100%;
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
    line-height: 1;
}

.benefit-icon img {
    width: 60px;
}

.benefit-blurb h4 {
    font-family: var(--label-font);
    font-size: var(--text-sm);
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 10px;
}

.benefit-blurb p {
    font-family: var(--main-font);
    font-size: var(--text-sm);
    color: #777;
    line-height: 1.7;
    margin: 0;
}

@media (min-width: 600px) {
    .benefits-section {
        padding-left: 40px;
        padding-right: 40px;
    }

    /* Tablet: 2-column grid */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .benefits-section {
        padding: 100px 40px;
    }

    .benefits-header {
        margin-bottom: 64px;
    }

    /* Desktop: 4-column grid */
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* ============================================ */
/* FLEET HORIZONTAL SCROLL                       */
/* ============================================ */
.fleet-section {
    padding: 60px 0 60px 20px;
    background: #ffffff;
    overflow: hidden;
}

.fleet-header {
    text-align: center;
    margin-bottom: 40px;
    padding-right: 20px;
}

.fleet-header h2 {
    font-family: var(--label-font);
    font-size: var(--text-sub-title);
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 12px;
}

.fleet-header h2 span {
    color: var(--accent-color);
    font-family: var(--accent-font), var(--label-font);
    font-size: var(--text-title-accent);
}

.fleet-header p {
    font-family: var(--main-font);
    color: #666;
    font-size: var(--text-base);
}

.fleet-scroll-wrapper {
    position: relative;
}

.fleet-scroll-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 24px;
    padding-right: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) #f4f4f4;
}

.fleet-scroll-track::-webkit-scrollbar {
    height: 4px;
}

.fleet-scroll-track::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.fleet-scroll-track::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 2px;
}

/* Mobile: slightly narrow cards */
.fleet-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    background: white;
    border: 1px solid #1e1e1e;
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.fleet-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-6px);
}

.fleet-card-img-wrap {
    height: 200px;
    overflow: hidden;
}

.fleet-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.9);
    transition: transform 0.5s ease, filter 0.4s ease;
}

.fleet-card:hover .fleet-card-img {
    transform: scale(1.06);
    filter: brightness(1.05);
}

.fleet-card-body {
    padding: 24px 22px 28px;
}

.fleet-card-body h3 {
    font-family: var(--label-font);
    font-size: 1.2rem;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #1e1e1e;
}

.fleet-card-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fleet-card-body ul li {
    font-family: var(--main-font);
    font-size: 0.8rem;
    color: #888;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #161616;
}

.fleet-card-body ul li:last-child {
    border-bottom: none;
}

.fleet-card-body ul li::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--accent-color);
    border-radius: 50%;
    flex-shrink: 0;
}

@media (min-width: 600px) {
    .fleet-section {
        padding-left: 40px;
    }

    .fleet-scroll-track {
        padding-right: 40px;
    }

    /* Tablet: slightly wider cards */
    .fleet-card {
        flex: 0 0 300px;
    }
}

@media (min-width: 900px) {
    .fleet-section {
        padding: 80px 0 80px 40px;
    }

    .fleet-header {
        padding-right: 40px;
        margin-bottom: 48px;
    }
}


/* ============================================ */
/* CHARTER INQUIRY FORM                          */
/* ============================================ */
.charter-inquiry-section {
    background: #f4f4f4;
    padding: 60px 20px;
}

.charter-inquiry-inner {
    max-width: 900px;
    margin: 0 auto;
}

.ci-header {
    text-align: center;
    margin-bottom: 40px;
}

.ci-header h2 {
    font-family: var(--label-font);
    font-size: var(--text-sub-title);
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 12px;
}

.ci-header h2 span {
    color: var(--accent-color);
    font-family: var(--accent-font), var(--label-font);
    font-size: var(--text-title-accent);
}

.ci-header p {
    font-family: var(--main-font);
    color: #888;
    font-size: var(--text-base);
}

/* Mobile: single column */
.ci-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.ci-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ci-field.ci-full {
    grid-column: 1 / -1;
}

.ci-field label {
    font-family: var(--label-font);
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #333;
    font-weight: 600;
}

.ci-field input,
.ci-field textarea {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 12px 16px;
    font-family: var(--main-font);
    font-size: var(--text-sm);
    color: #222;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    width: 100%;
    box-sizing: border-box;
}

.ci-field input:focus,
.ci-field textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(161, 205, 58, 0.1);
}

.ci-field input::placeholder,
.ci-field textarea::placeholder {
    color: #bbb;
}

.ci-field input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.5;
}

.ci-field textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.ci-submit-row {
    margin-top: 32px;
    text-align: center;
}

.ci-btn {
    background: #111;
    color: #fff;
    border: 2px solid #111;
    font-family: var(--label-font);
    font-size: var(--text-sm);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 15px 60px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    border-radius: 2px;
}

.ci-btn:hover {
    background: transparent;
    color: #111;
}

.ci-btn.success {
    background: #2d6a4f;
    border-color: #2d6a4f;
    color: #fff;
}

@media (min-width: 600px) {
    .charter-inquiry-section {
        padding: 80px 40px;
    }

    .ci-header {
        margin-bottom: 56px;
    }

    /* Tablet: 2-column grid */
    .ci-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px 28px;
    }
}

@media (min-width: 900px) {
    .charter-inquiry-section {
        padding: 100px 40px;
    }
}


/* ============================================ */
/* PLANE HERO — SCROLL DRIVEN                    */
/* ============================================ */
.ph-section {
    position: relative;
    background: #000;
}

.ph-driver {
    height: 220vh;
    position: relative;
}

.ph-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

/* ============================================ */
/* PLANE HERO — SKY BACKGROUND                   */
/* ============================================ */
.ph-sky {
    position: absolute;
    inset: 0;
    background-image: url("../assets/charter-img/sky1.jpg");
    background-size: cover;
    background-position: center top;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.ph-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 5, 0.55) 100%);
    z-index: 2;
    pointer-events: none;
}

.ph-fog {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 28%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.92) 100%);
    z-index: 5;
    pointer-events: none;
}


/* ============================================ */
/* PLANE HERO — PLANE IMAGE                      */
/* ============================================ */
.ph-plane {
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: center center;
    will-change: transform;
    z-index: 3;
    pointer-events: none;
    filter: brightness(0.9) contrast(1.05);
    opacity: 0;
}

.ph-plane img {
    width: 900px;
    max-width: none;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}


/* ============================================ */
/* PLANE HERO — TEXT OVERLAY                     */
/* ============================================ */
.ph-text {
    position: absolute;
    bottom: clamp(80px, 14vh, 160px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    text-align: center;
    width: 100%;
    padding: 0 24px;
    pointer-events: none;
    opacity: 1;
}

#phOwn {
    opacity: 0;
    display: inline-block;
}

#phSub {
    opacity: 0;
}

.ph-eyebrow {
    font-family: var(--main-font);
    font-size: var(--text-med);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--text-on-primary);
    margin: 0 0 14px;
    display: block;
}

.ph-headline {
    font-family: var(--label-font);
    font-size: clamp(2.4rem, 6vw, 5.2rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-on-primary);
    line-height: 0.95;
    margin: 0 0 20px;
}

.ph-headline span {
    font-family: var(--label-font);
    font-size: clamp(2.4rem, 6vw, 5.2rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-on-primary);
    line-height: 0.95;
}

.ph-headline em {
    font-style: normal;
    color: #fff;
}

.ph-sub {
    font-family: var(--main-font);
    font-size: clamp(0.75rem, 1.5vw, 0.95rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-on-primary);
    margin: 0;
    font-weight: 600;
}


/* ============================================ */
/* PLANE HERO — SCROLL CUE                       */
/* ============================================ */
.ph-scroll-cue {
    position: absolute;
    bottom: clamp(18px, 3vh, 32px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 7;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.ph-scroll-cue.show { opacity: 0.9; }
.ph-scroll-cue.hide { opacity: 0; }

.ph-scroll-cue span {
    font-family: var(--label-font);
    font-size: 0.9rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #fff;
}

.ph-scroll-cue-line {
    width: 2px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
    animation: ph-line-drop 2s ease-in-out infinite;
}

@keyframes ph-line-drop {
    0%, 100% { transform: scaleY(1);   opacity: 0.5; }
    50%       { transform: scaleY(0.6); opacity: 1; }
}


/* ============================================ */
/* PLANE HERO — SPEED STREAKS                    */
/* ============================================ */
.ph-streaks {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ph-streak {
    position: absolute;
    top: 50%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.18), transparent);
    transform-origin: right center;
}

/* ============================================ */
/* REAL ID SECTION                               */
/* ============================================ */
.realid-section {
    background: #0a0f1a;
    padding: 50px 24px;
    position: relative;
    overflow: hidden;
}

.realid-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 150px;
    background: #111;
    pointer-events: none;
}

.realid-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: center;
}


.realid-text h2 {
    font-family: var(--label-font, 'Oswald', sans-serif);
    font-size: var(--text-sub-title);
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.1;
    text-transform: uppercase;
}

.realid-text h2 span {
    color: var(--accent-color);
}

.realid-text > p {
    font-size: var(--text-base-new);
    line-height: 1.75;
    color: var(--bodyfont-dark-bg);
    margin-bottom: 16px;
    max-width: 650px;
    font-family: var(--main-font, 'Montserrat', sans-serif);
}

.realid-checklist {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.realid-check-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.realid-check-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--accent-color);
    color: #0a0f1a;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.realid-check-item strong {
    display: block;
    font-family: var(--label-font);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 4px;
}

.realid-check-item p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin: 0;
    line-height: 1.6;
}

/* Badge */
.realid-badge {
    display: flex;
    justify-content: center;
}

.realid-badge-inner {
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    padding: 28px 20px;
    text-align: center;
    max-width: 300px;
    width: 100%;
    backdrop-filter: blur(8px);
}

.realid-badge-icon {
    font-size: 36px;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 6px;
}

.realid-badge-inner h3 {
    font-family: var(--label-font, 'Oswald', sans-serif);
    font-size: var(--text-sub);
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 4px;
    letter-spacing: 0.1em;
}
.flex {
    display: flex;
  flex-direction: column;

}
.realid-badge-sub {
    font-family: var(--label-font, 'Oswald', sans-serif);
    font-size: var(--text-xs);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin: 0 0 24px;
}

.realid-badge-divider {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 0 auto 20px;
}

.realid-badge-note {
    font-size: var(--text-xs);
    color: var(--bodyfont-dark-bg);
    line-height: 1.6;
    margin-bottom: 24px;
    font-family: var(--main-font, 'Montserrat', sans-serif);
}

.realid-badge-link {
    display: inline-block;
    font-family: var(--label-font);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid rgba(var(--accent-rgb, 180,140,60), 0.4);
    padding-bottom: 2px;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.realid-badge-link:hover {
    color: #fff;
    border-color: #fff;
}

@media (min-width: 900px) {
    .realid-inner {
        grid-template-columns: 1fr 340px;
        gap: 80px;
    }
}
