/* =========================
   HERO SECTION
========================= */
.hanger_hero {
    height: 75vh;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin: 0;
}

.hanger_hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hanger_hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 650px;
    padding: 30px 35px 40px 35px;
    margin: 0 60px 60px 0;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    color: #fff;
}

.hanger_hero-eyebrow {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 15px;
    color: #fff;
    background: linear-gradient(135deg, #AB966C 0%, #8a7555 100%);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(171,150,108,0.4);
}

.hanger_hero-eyebrow::before {
    content: '★';
    margin-right: 6px;
    font-size: 13px;
}

.hanger_hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0D1B3E;
    letter-spacing: -0.5px;
}

@media (max-width: 900px) {
    .hanger_hero-content {
        margin: 0 20px 30px 20px;
        padding: 25px 25px 30px 25px;
    }

    .hanger_hero-content h1 {
        font-size: 28px;
    }
}

/* =========================
   PLANE CTA
========================= */
.hanger_plane-cta {
    position: relative;
    padding: 180px 20px;
    text-align: center;
    overflow: hidden;
    background: url("https://cdn.prod.website-files.com/64d56aee39a6cda7c236c43b/64dd736f7960a29a8c72e40d_coastair_websitesection.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hanger_plane-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14,26,43,0.88) 0%, rgba(30,59,138,0.105) 100%);
    z-index: 1;
}

.hanger_plane-cta-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 850px;
    margin: auto;
}

.hanger_plane-cta h2 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hanger_plane-cta p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 45px;
}

.hanger_btn-primary {
    display: inline-block;
    background: #AB966C;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 15px 30px rgba(14,26,43,0.25);
}

.hanger_btn-primary:hover {
    background: #8a7555;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 1100px) {
    .hanger_plane-cta h2 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .hanger_plane-cta {
        padding: 120px 20px;
    }

    .hanger_plane-cta h2 {
        font-size: 30px;
    }

    .hanger_plane-cta p {
        font-size: 16px;
    }
}

/* =========================
   MARKETING CONSENT
========================= */
.marketing-consent-wrap {
    margin-bottom: 16px;
}

.consent-item {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    margin: 0;
    padding: 0;
    font-size: 13px;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: #555;
    line-height: 1.5;
    position: relative;
    width: 100%;
}

.consent-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    position: absolute !important;
    opacity: 0 !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    border: 0 !important;
    pointer-events: none !important;
}

.consent-box {
    display: block;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    border: 1.5px solid #C9A96E;
    border-radius: 4px;
    background: transparent;
    transition: background 0.2s ease;
}

.consent-item input[type="checkbox"]:checked ~ .consent-box {
    background: #C9A96E url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='9' viewBox='0 0 11 9'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 4.5l3 3L10 1'/%3E%3C/svg%3E") no-repeat center;
}

.consent-item:hover .consent-box {
    border-color: #A8863E;
    box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}

.consent-text {
    flex: 1;
    min-width: 0;
}

/* =========================
   CF7 ACCEPTANCE CONSENT
========================= */
.consent-cf7 .wpcf7-acceptance {
    display: block;
    margin-bottom: 16px;
}

.consent-cf7 .wpcf7-acceptance label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 400 !important;
    color: #555;
    line-height: 1.5;
    text-transform: none !important;
    letter-spacing: 0 !important;
    width: 100%;
    margin: 0;
    padding: 0;
}

.consent-cf7 .wpcf7-acceptance input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    position: absolute !important;
    opacity: 0 !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    clip: rect(0,0,0,0) !important;
    border: 0 !important;
    pointer-events: none !important;
}

.consent-cf7 .wpcf7-acceptance label::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    border: 1.5px solid #C9A96E;
    border-radius: 4px;
    background: transparent;
    transition: background 0.2s ease;
}

.consent-cf7.is-checked .wpcf7-acceptance label::before {
    background: #C9A96E url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='9' viewBox='0 0 11 9'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 4.5l3 3L10 1'/%3E%3C/svg%3E") no-repeat center;
}

.consent-cf7:hover .wpcf7-acceptance label::before {
    border-color: #A8863E;
    box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}

.consent-cf7 .wpcf7-list-item-label {
    flex: 1;
    min-width: 0;
}

/* =========================
   VIEW RUNWAY LINK
========================= */
.hanger_view-runway {
    display: inline-block;
    margin-top: 12px;
    margin-left: 5px;
    font-size: 12px;
    color: #AB966C;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.hanger_view-runway:hover {
    opacity: 0.7;
}

/* =========================
   RUNWAY MODAL
========================= */
.hanger_runway-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.hanger_runway-modal.active {
    display: flex;
}

.hanger_runway-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
}

.hanger_runway-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 90%;
}

.hanger_runway-content img {
    width: 100%;
    border-radius: 14px;
    display: block;
}

.hanger_runway-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    font-size: 32px;
    color: #ffffff;
    cursor: pointer;
}
