﻿/*header*/
:root {
    --fj-blue: #013365;
    --fj-yellow: #ff9900;
    font-family: Inter, sans-serif;
    font-feature-settings: 'liga' 1, 'calt' 1;
}

body {
    margin: 0;
    padding: 0;
}

/* Header base */
.fj-header {
    background: var(--fj-blue);
    border-bottom: 3px solid var(--fj-yellow);
    position: fixed; /* make the header fixed */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999; /* stays above all content */
}


/* Logo */
.fj-logo img {
    height: 65px;
}

/* Menu layout */
.fj-menu {
    display: flex;
    align-items: center;
    gap: 28px; /* optional: smaller spacing between menu items */
    margin: 0 10px 0 0; /* Reduce gap between UL and button */
}


/* Menu link text color */
.fj-link {
    color: #ffffff !important;
    font-weight: 400;
    font-size: 15px;
    text-decoration: none;
    padding: 6px 0;
}

    .fj-link:hover {
        opacity: 0.8;
    }
#trackClaimBtn {
    background-color: var(--fj-yellow) !important;
    color: #000 !important; /* optional for readability */
    border: none;
}

/* Circle outline chevron */
.fj-menu-item .fj-chevron {
    color: var(--fj-yellow); /* arrow color */
    border: 2px solid var(--fj-yellow); /* ring */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px; /* arrow size */
    margin-left: 5px;
    background-color: var(--fj-blue); /* same as header so inside looks blue */
    transition: transform 0.3s ease-in-out;
}

/* Rotate on hover */
.fj-menu-item:hover .fj-chevron {
    transform: rotate(180deg);
}


/* Small check circle */
.fj-circle-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--fj-yellow);
    font-size: 9px;
    color: var(--fj-yellow);
    margin-left: 4px;
}

/* Flag icon */
.fj-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 4px;
}
/* Main button */
.fj-elig-btn {
    background: var(--fj-yellow);
    color: #000 !important; /* Always black text */
    font-weight: 900;
    border-radius: 999px;
    padding: 8px 28px;
    font-size: 12px;
    box-shadow: none; /* Remove shadow if you want */
    border: none;
    cursor: pointer;
}

    /* Disable hover effect entirely */
    .fj-elig-btn:hover {
        background: var(--fj-yellow) !important;
        color: #000 !important;
        filter: none !important;
        transform: none !important;
    }

.lang-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 10px;
}

.fj-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Dropdown */
.fj-menu-item {
    position: relative;
}
.fj-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 3px; /* remove gap that causes flicker */
    padding-top: 10px; /* invisible hover buffer */
    background: var(--fj-blue);
    border: 1px solid var(--fj-yellow);
    border-radius: 8px;
    padding: 10px 18px;
    min-width: 230px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: opacity .25s ease, transform .25s ease;
    z-index: 999;
    pointer-events: none; /* Prevent hover loss glitch */
}

.fj-has-dropdown:hover .fj-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto; /* clickable when visible */
}
.fj-dropdown a {
    display: block;
    color: #ffffff;
    font-size: 13px;
    text-decoration: none;
    padding: 4px 0;
}

    .fj-dropdown a:hover {
        background: rgba(0, 0, 0, 0.35); /* black transparent background */
        text-decoration: none;
        border-radius: 6px;
        padding-left: 8px; /* slight indent effect */
        box-shadow: 0 0 6px rgba(0,0,0,0.4); /* hover shadow */
    }


/* Mobile adjustments */
@media (max-width: 767.98px) {
    .fj-header .container {
        padding-inline: 12px;
    }
}
/*<====header======>*/

/*<=======Footer======>*/
.fj-footer {
    background: var(--fj-blue);
    color: #fff;
    font-size: 14px;
}

    .fj-footer .fj-tagline {
        font-weight: 600;
        color: var(--fj-yellow);
    }

.fj-links a {
    color: #fff;
    text-decoration: none;
    line-height: 1.9rem;
}

    .fj-links a:hover {
        text-decoration: underline;
    }

.fj-social-icon-link {
    width: 90px; /* bigger icon */
    height: auto;
    display: inline-block;
    cursor: pointer;
    transition: transform .25s ease, opacity .25s ease;
}
.fj-social-icon {
    width: 40px; /* bigger icon */
    height: 40px;
    display: inline-block;
    cursor: pointer;
    transition: transform .25s ease, opacity .25s ease;
}

    .fj-social-icon:hover {
        transform: scale(1.15); /* zoom effect */
        opacity: 0.8;
    }

.fj-hr {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin-top: 10px;
}

.fj-copy {
    font-size: 13px;
    opacity: 0.9;
}
/*<=====Footer==>*/


/*<====compensationcss======>*/

/* ==== SIDEBAR ==== */
.sidebar {
    width: 400px;
    height: 100vh;
    background: var(--fj-blue);
    color: #fff;
    padding: 30px;
    padding-top: 15px;
    position: fixed;
    left: 0;
    top: 0;
}

    .sidebar img {
        max-height: 120px;
        width: 150px;
    }

    /* FULL WIDTH TOP YELLOW LINE BELOW LOGO */
    .sidebar::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100px;
        height: 5px;
        background: var(--fj-yellow);
    }

.steps {
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

  
        .steps li i {
            position: absolute;
            left: 0;
            font-size: 22px;
           
        }

    .steps li {
        position: relative;
        padding: 0 0 50px 35px; /* increase bottom space */
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 25px;
        margin-bottom: 25px;
    }

        .steps li:not(:last-child)::after {
            content: "";
            position: absolute;
            left: 8px; /* align under icon */
            top: 35px; /* start line further down */
            width: 2px;
            height: 45px; /* bigger line */
            border-left: 2px dashed #8099b2;
        }


      

/* ==== HEADER TEXT & FULL YELLOW LINE ==== */
.header {
    position: fixed;
    left: 400px;
    right: 0;
    top: 0;
    padding-top: 59px;
    background: #fff;
    z-index: 10;
}

    .header h2 {
        font-size: 26px;
        font-weight: 700;
        margin-left: 100px;
        margin-bottom: 10px;
        color: #000;
    }

.full-yellow-line {
    height: 5px;
    background: var(--fj-yellow);
    width: 100%;
}

/* ===== SCROLLABLE CONTENT ===== */
.content {
    position: absolute;
    left: 300px;
    right: 0;
    top: 105px;
    bottom: 0;
    overflow-y: auto;
    padding: 0 120px 40px;
}

.form-area {
    width: 100%;
    max-width: 900px;
    margin-left:100px;
}

.field-label {
    
    font-weight: 600;
    font-size: 20px;
    color: #364153;
   
}

.fj-input.full {
    width: 100%;
    height: 56px;
    border: 2px solid var(--fj-yellow);
    border-radius: 10px;
    padding: 0 50px;
    font-size: 16px;
    font-weight: 500;
    outline: none;
}

.input-icon, .date-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #666;
}

.flight-btn.full {
    width: 100%;
}

.flight-btn {
    border: 2px solid var(--fj-yellow);
    height: 56px;
    width: 100%;
    border-radius: 10px;
    background: #fff;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: #013365;
}

    /* Do NOT change button background on active */
    .flight-btn.active {
        background: #fff;
    }

/* Outer radio circle */
.radio-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--fj-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* Inner active dot fill */
    .radio-dot::after {
        content: "";
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: transparent;
    }

/* When active, inner is yellow & outer border stays blue */
.flight-btn.active .radio-dot::after {
    background: var(--fj-yellow);
}
.help-icon {
    font-size: 18px;
    color: var(--fj-yellow);
    margin-left: 8px;
    cursor: pointer;
    position: relative;
}

    
.problem-details {
    padding-left: 10px;
    transition: all .3s ease;
}
.problem-btn {
    margin-top: 10px;
}
.problem-days  {
    margin-top: 10px;
}
.delay-btn {
    margin-top: 10px;
}
.denied-btn {
    margin-top: 10px;
}
.denied-reason-btn {
    margin-top: 10px;
}
.summary-box-custom {
    border: 2px solid #003B73;
    border-radius: 18px;
    background: white;
    padding: 18px 28px;
    box-shadow: 6px 6px 0px #003B73;
    position: relative;
}

.summary-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.summary-success {
    color: #003B73;
    font-weight: 600;
}

.edit-details {
    color: #F6A41A;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
}

.summary-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.summary-side i {
    font-size: 28px;
    color: #003B73;
}

.airport-title {
    font-weight: 700;
    color: #003B73;
    margin-bottom: 4px;
}

.divider-line {
    border-bottom: 1px dashed #767676;
    margin: 8px auto;
    width: 65%;
}

.airline-info {
    font-size: 16px;
    color: #003B73;
}

.flight-date {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-top: -5px;
}

.add-layover-btn, .add-more-layover {
    border: 2px dashed #F6A41A;
    padding: 12px 15px;
    border-radius: 10px;
    background: #fff;
    font-weight: 600;
    color: #F6A41A;
    width: 100%;
    text-align: left;
}

.layover-block {
    border: 2px solid #F6A41A;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.alert-note {
    font-size: 14px;
    color: #666;
}
.add-layover-input {
    border: 2px solid #F6A41A;
    border-radius: 8px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    width: 100%;
    background: #fff;
}

.layover-icon {
    width: 30px; /* adjust size as required */
    height: auto;
    margin-right: 12px;
}





    .add-layover-input i {
        font-size: 18px;
        color: #F6A41A;
        margin-right: 12px;
    }

.layover-textbox {
    border: none;
    width: 100%;
    outline: none;
    font-size: 15px;
    background: transparent;
}
.icon-input {
    position: relative;
}

.input-img {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
}

.fj-input.full {
    padding-left: 42px;
    border: 2px solid #FEBD01;
    border-radius: 8px;
    height: 52px;
    width: 100%;
}

.add-more-layover {
    background: none;
    border: none;
    color: #F6A41A;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    margin-top: 8px;
}

.layover-note {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}
.disruption-check {
    gap: 8px;
    margin-top: 2px;
}

.fj-checkbox {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    cursor: pointer;
}

.disruption-label {
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.custom-tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-left: 6px;
}

    .custom-tooltip .tooltip-text {
        visibility: hidden;
        opacity: 0;
        width: 260px;
        background-color: #003B73;
        color: #fff;
        text-align: left;
        padding: 10px 14px;
        border-radius: 6px;
        font-size: 13px;
        line-height: 1.4;
        position: absolute;
        top: 50%;
        left: 120%;
        transform: translateY(-50%);
        z-index: 1000;
        transition: opacity 0.25s ease;
    }

        /* Triangle pointer */
        .custom-tooltip .tooltip-text::after {
            content: "";
            position: absolute;
            top: 50%;
            right: 100%;
            margin-top: -7px;
            border-width: 7px;
            border-style: solid;
            border-color: transparent #003B73 transparent transparent;
        }

    /* Show tooltip on hover */
    .custom-tooltip:hover .tooltip-text {
        visibility: visible;
        opacity: 1;
    }
.remove-layover-btn {
    border: none;
    background: none;
    color: #003B73;
    font-weight: 700;
    margin-bottom: 5px;
}

.extra-layover-block {
   
   
    border-radius: 6px;
}
.add-more-layover:disabled {
    pointer-events: none;
}
/* wrapper to push the button to the right */
.next-btn-wrapper {
    text-align: right;
}

/* button look */
.next-btn-custom {
    background: #F6A41A;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.25s ease, transform 0.1s ease;
}

    .next-btn-custom:hover {
        background: #e4950c;
        transform: translateY(-1px);
    }

.icon-circle {
    background: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon-circle i {
        color: #fff;
        font-size: 13px;
    }


/*<====compensationcss======>*/
/*<====step2======>*/
/* Little orange dot after labels */
.required-dot {
    color: #F6A41A;
    font-size: 10px;
    vertical-align: middle;
    margin-left: 4px;
}

/* Consent section */
.consent-section {
    margin-top: 30px;
}

.consent-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #002D5B;
}

.consent-subtext {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
}

.consent-label {
    font-size: 13px;
    color: #444;
}

.consent-link {
    color: #F6A41A;
    text-decoration: none;
}

    .consent-link:hover {
        text-decoration: underline;
    }

/* Bottom navigation (Back + Next) */
.step-nav {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.nav-btn {
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

/* Back button (white) */
.back-btn {
    background: #ffffff;
    border: 1px solid #d0d0d0;
    color: #002D5B;
}

/* Re-use your existing next-btn-custom, only ensure it’s inline-flex */
.next-btn-custom {
    background: #F6A41A;
    color: #000;
    border-radius: 999px;
    border: none;
    padding: 10px 30px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.icon-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.icon-circle-outline {
    background: #fff;
    border: 2px solid #000;
}

/* Make title / travel buttons re-use your orange "radio" style */
.title-option,
.travel-option {
    width: 100%;
    justify-content: space-between;
}
.small-title-buttons button {
    width: 100%;
    padding: 10px 12px;
    font-size: 17px;
    font-weight:600;
}
.signature-box {
    border: 2px solid #F6A41A;
    border-radius: 12px;
    padding: 25px;
}

.signature-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.signature-canvas {
    width: 100%;
    height: 200px;
    border: 1px dashed #F6A41A;
    border-radius: 10px;
    background: #fff;
    cursor: crosshair;
}

.clear-sign-btn {
    padding: 6px 15px;
    border: 1px solid #F6A41A;
    background: rgba(246, 164, 26, .15);
    color: #F6A41A;
    border-radius: 6px;
    font-weight: 600;
}

.signature-secure-note {
    font-size: 13px;
    margin-top: 10px;
    color: #334;
}

.legal-section .legal-check {
    margin-top: 12px;
}
/* Default step color */
.steps li {
    color: #ffffff;
}

    .steps li i {
        color: #ffffff;
    }

    /* Active and completed steps = Yellow */
    .steps li.active,
    .steps li.completed {
        color: #F6A41A !important;
        font-weight: 700 !important;
    }

        .steps li.active i,
        .steps li.completed i {
            color: #F6A41A !important;
        }


/* ===================== */
/* MOBILE RESPONSIVE FIX */
/* ===================== */
/* ===== MOBILE VIEW RESPONSIVE ===== */
@media (max-width: 768px) {

    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    .sidebar {
        display: none !important;
    }

    .header {
        left: 0 !important;
        right: 0 !important;
        padding: 12px 10px !important;
        position: relative !important;
        text-align: center !important;
    }

        .header h2,
        #pageHeader {
            margin-left: 0 !important;
            font-size: 18px !important;
        }

    .content {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        padding: 10px 14px !important;
        overflow-x: hidden !important;
    }

    .form-area {
        margin-left: 0 !important;
        width: 100% !important;
    }

    .fj-input.full {
        width: 100% !important;
        height: 48px !important;
        padding-left: 46px !important;
        font-size: 15px !important;
    }

    .input-icon,
    .date-icon,
    .input-img {
        left: 14px !important;
        font-size: 18px !important;
    }

    .flight-btn,
    .nav-btn,
    .title-option,
    .travel-option {
        width: 100% !important;
        height: 48px !important;
        padding: 10px 16px !important;
        font-size: 15px !important;
    }

    /* FINAL - Buttons small and aligned right */
    .step-nav {
        width: 100% !important;
        display: flex !important;
        justify-content: flex-end !important;
        flex-direction: row !important;
        gap: 10px !important;
        margin-top: 22px !important;
    }

    .back-btn {
        width: auto !important;
        padding: 10px 18px !important;
        font-size: 14px !important;
    }

    .next-btn-custom {
        width: auto !important;
        padding: 10px 22px !important;
        font-size: 14px !important;
    }

    .icon-circle {
        width: 26px !important;
        height: 26px !important;
        font-size: 12px !important;
    }

    .signature-canvas {
        height: 170px !important;
    }

    .summary-content {
        flex-direction: column !important;
        text-align: center !important;
    }

    .summary-side {
        display: none !important;
    }
}
.error-message {
    color: red;
    font-size: 12px;
    margin-top: 2px;
    display: none;
}

.fj-input.error {
    border: 1px solid red !important;
}

/* ===== Upload Section Styling ===== */
.upload-box {
    border: 3px solid #F6A41A;
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    background: #fff;
    min-height: 230px;
}

.upload-title {
    font-size: 18px;
    font-weight: 700;
    color: #003B73;
    margin-bottom: 15px;
}

.upload-icon {
    width: 95px;
    margin: 10px auto 15px auto;
    display: block;
}

.upload-btn {
    border: 2px solid #F6A41A;
    padding: 10px 26px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    display: inline-block;
    background: white;
}

    .upload-btn i {
        margin-right: 8px;
        color: #003B73;
    }

.upload-main-btn {
    background: #003B73;
    padding: 12px 26px;
    border: none;
    color: white;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
}

.or-text {
    font-size: 18px;
    font-weight: 700;
    color: #003B73;
}

/* ===== Responsive Rules ===== */
@media (max-width: 768px) {

    .upload-row {
        text-align: center !important;
    }

    .upload-box {
        width: 100% !important;
        margin-bottom: 10px;
    }

    .or-text {
        display: block;
        margin: 10px 0;
    }

    .upload-main-btn {
        width: 100%;
        font-size: 16px;
    }
}


.title-option {
    border: 2px solid #ccc;
    background: white;
    color: #002B5B;
    font-weight: 600;
    position: relative;
}

    .title-option .radio-dot {
        width: 15px;
        height: 15px;
        border: 2px solid #F6A41A;
        border-radius: 50%;
        display: inline-block;
        margin-left: 8px;
    }

    .title-option.active {
        border-color: #F6A41A;
        background: #FFF7D6;
    }

        .title-option.active .radio-dot {
            background-color: #F6A41A;
        }
    .title-option.active,
    .travel-option.active {
        border: 2px solid #F6A41A;
        background-color: #FFF7E6;
    }

/*<====step2======>*/



/*<===================Home===================>*/
body {
    font-family: 'Inter', sans-serif;
}

/* HERO SECTION */
.flight-claim-section {
    width: 100%;
    background: #023A6B url('../images/logos/8.png') no-repeat;
    background-position: 28% 83%; /* moves the plane closer to button */
    background-size: 180px;
    padding: 110px 0 130px 0;
    color: white;
   min-height:500px;
}


.main-title {
    font-size: 35px;
    font-weight: 700;
}

.compensation-text {
    font-size: 20px;
    font-weight: 600;
}

.claim-list li {
    margin: 10px 0;
    font-size: 17px;
}

.btn-orange {
    background: #FF9800;
    color: #111;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
}
    .btn-orange:hover {
        background: #FF9800;
    }
    /* AFTER CLICK */
    .btn-orange.active,
    .btn-orange:focus {
        background: #FF9800;
        color: #000;
        border: 2px solid #FF9800;
        outline: none;
    }
.service-box {
    background: white;
    padding: 25px;
    border-radius: 16px;
    position: relative;
    top: 20px;
    max-width:380px;
}

/*.service-list li {
    margin: 12px 0;
    color: #023A6B;
    font-weight: 600;
}*/
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .service-list li {
        font-size: 20px;
        display: flex;
        color: #023A6B;
        align-items: center;
        margin-bottom: 12px;
    }

.service-icon {
    width: 22px;
    height: 22px;
    margin-right: 10px;
    object-fit: contain;
}

/* HELP SECTION */
.help-title {
    font-size: 25px;
    font-weight: 500;
    color: #023A6B;
}

.help-card {
    background: white;
    border-radius: 16px;
    padding: 32px;

    border: 1px solid #023A6B;
    box-shadow: 6px 8px 0px #023A6B;
    min-height: 300px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    .help-card:hover {
        transform: translateY(-10px) scale(1.00);
        box-shadow: 10px 12px 0px #023A6B;
    }


    .help-card img{
        max-height:45px;
        max-width:45px;
        margin-bottom:10px;
        margin-top:10px;
    }

    .help-card h5 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 12px;
    }

.help-card p {
    font-size: 12px;
    color: #444;
    min-height: 80px;
}

.section-title {
    font-weight: 700;
    color: #023A6B;
}

.section-desc {
    font-size: 15px;
    color: #555;
    width: 70%;
}

.power-attorney-link {
    color: #023A6B;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.cpSignOption {
    width: 100%;
    text-align: left;
}

.full-yellow-line {
    width: 100%;
    height: 5px;
    background: #F6A41A;
    margin-top: 10px;
}
.signature-canvas {
    width: 100%;
    height: 250px;
    border: 2px dashed #F6A41A;
    border-radius: 12px;
}



.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    background: none;
    border: none;
    font-size: 25px;
    cursor: pointer;
}
.upload-row-item {
    width: 100%;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 10px;
}

.upload-label {
    font-weight: 600;
    font-size: 15px;
    color: #000;
}

.passenger-index {
    font-weight: 700;
    margin-right: 6px;
    color: #000;
}

.required-star {
    color: red;
    font-weight: bold;
    margin-left: 4px;
}

.small-file-btn {
    background: #fff;
    border: 1px solid #F6A41A;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

    .small-file-btn:hover {
        background: #F6A41A;
        color: #fff;
    }
.upload-side-panel {
    position: fixed;
    top: 50px;
    right: 200px;
    width: 430px;
    height: 90vh;
    background: white;
    border: 2px solid #f6a41a;
    border-radius:10px;
    box-shadow: -4px 0 12px rgba(0,0,0,0.15);
    padding: 25px 30px;
    transition: 0.4s ease-in-out;
    z-index: 9999;
}

    .upload-side-panel.active {
        right: 0;
    }

.upload-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .upload-header h3 {
        font-weight: 700;
        font-size: 24px;
        margin: 0;
    }

.upload-close {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

.upload-doc-icon {
    width: 100px;
    display: block;
    margin: 10px auto 20px auto;
}

.upload-passenger-list .row-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.upload-passenger-list label {
    font-size: 15px;
    font-weight: 600;
}

.small-file-btn {
    border: 1px solid #f6a41a;
    padding: 7px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.upload-submit-btn {
    width: 100%;
    padding: 12px;
    background: #003f8a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}

.features-section {
    background-color: #023A6B;
    padding: 70px 0;
    color: white;
}

.feature-item {
    padding: 10px 20px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    .feature-item:hover {
        transform: translateY(-10px) scale(1.03); /* Lift + zoom */
    }
.feature-icon {
    width: auto; /* keep natural width */
    height: 120px; /* set fixed height */
    margin-bottom: 18px;
    transition: transform 0.35s ease;
}


.feature-item:hover .feature-icon {
    transform: scale(1.15); /* Icon zoom on hover */
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: transform 0.35s ease;
}

.feature-item:hover .feature-title {
    transform: scale(1.1); /* Title zoom */
}

.feature-text {
    font-size: 15px;
    line-height: 1.6;
    color: #E6E6E6;
    max-width: 300px;
    margin: auto;
    transition: transform 0.35s ease;
}

.feature-item:hover .feature-text {
    transform: scale(1.05); /* text zoom */
}
.process-section {
    padding: 70px 0 80px;
    background-color: #ffffff;
}

.process-title {
    font-size: 32px;
    font-weight: 800;
    color: #023A6B;
    margin-bottom: 8px;
}

.process-subtitle {
    font-size: 18px;
    color: #4b5b70;
    margin-bottom: 30px;
}

/* Main step cards */
/*.step-card {
    background: #0E4B84;
    color: #ffffff;
    padding: 18px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}*/

/* Smaller info cards */
/*.sub-card {
    background: #0E4B84;
    color: #ffffff;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.4;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bracesp {
    top: 140px;
    left:810px;
    width: 140px;
    margin: 6px auto 0;
}
.bracespe {
    top: 140px;
    left: 1030px;
    width: 140px;
    margin: 6px auto 0;
}*/

/* Task labels (OUR TASK / YOUR TASK) */
/*.task-heading {
    align-items:end !important;
    gap: 8px;
    right:105px;
    top:30px;
    font-size: 22px;
    font-weight: 800;
    color: #023A6B;
    text-transform: uppercase;
}

.task-icon {
    width: 80px;
    height: auto;
}*/

/* Braces */
/*.brace-img-small {
    width: 120px;
    display: block;
    margin: 6px auto 0;
}*/

/*.brace-img-main {
    width: 160px;
    display: block;
    margin: 8px auto 0;
}*/

/* Plane path */
/*.plane-path-img {
    width: 260px;
    display: block;
    margin: 25px auto 10px;
}*/

/* Responsive tweaks */
/*@media (max-width: 768px) {
    .process-title {
        font-size: 26px;
    }

    .process-subtitle {
        font-size: 16px;
    }

    .step-card {
        font-size: 14px;
        padding: 14px 18px;
    }

    .sub-card {
        font-size: 13px;
    }

    .brace-img-small,
    .brace-img-main {
        width: 120px;
    }
}*/
.airport-dropdown {
    position: absolute;
    width: 100%;
    max-height: 240px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    z-index: 9999;
    display: none;
}

    .airport-dropdown.show {
        display: block !important;
    }


.airport-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

    .airport-item:hover {
        background: #fff4db; /* Soft yellow hover like your screenshot */
    }

.small-text {
    font-size: 12px;
    color: #666;
}
.autocomplete-items {
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    width: 100%;
    z-index: 9999;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 4px;
}

    .autocomplete-items div {
        padding: 8px 12px;
        cursor: pointer;
    }

        .autocomplete-items div:hover {
            background-color: #f1f1f1;
        }
.remove-file {
    background: #ff4b4b;
    border: none;
    color: #fff;
    font-size: 14px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-left: 10px;
}

    .remove-file:hover {
        background: #d60000;
    }
.claim-check-section {
    width: 100%;
    padding: 90px 0;
    background-color: var(--fj-blue);
    display: flex;
    justify-content: center;
    align-items: center;
}

.claim-card {
    background: var(--fj-blue);
    border: 1px solid #fff;
    border-radius: 18px;
    padding: 40px 50px;
    width: 55%;
    text-align: center;
    box-shadow: 0px 0px 25px rgba(0,0,0,0.15);
}

.claim-title {
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.cta-button {
    width: 60%;
    padding: 15px;
    background: var(--fj-yellow);
    border-radius: 10px;
    border: none;
    font-weight: 700;
    font-size: 18px;
    color: #000;
    cursor: pointer;
    transition: 0.3s ease;
    display: block; /* Important */
    margin: 0 auto; /* Centers horizontally */
    text-align: center; /* Ensures text stays centered */
}

    .cta-button:hover {
        background-color: #e69511;
        transform: translateY(-2px);
    }

.distance-info {
    margin-top: 15px;
    font-size: 15px;
    color: #fff;
}
.input-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 22px;
}

.fj-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
    outline: none;
}

.airport-input {
    background-color: #fff;
}
/* Section heading */
.steps-heading {
    font-size: 32px;
    font-weight: 700;
    color: #023A6B;
    margin-bottom: 5px;
}

.steps-subtitle {
    color: #666;
    font-size: 16px;
}

/* Card container */
.steps-card {
    background: var(--fj-blue);
    border-radius: 22px;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    color: #fff;
    gap: 30px;
}
.steps-card {
    width: 100%;
}

/* Horizontal line behind icons */
.steps-line {
    position: absolute;
    top: 72px; /* aligns with center of icons */
    left: 15%;
    right: 15%;
    height: 3px;
    background: #ffffff;
    opacity: 1;
    z-index: 1;
}

/* Each step */
.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Icon circle */
.step-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid var(--fj-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fj-yellow);
    font-size: 28px;
}

/* Number bubble */
.step-number {
    width: 28px;
    height: 28px;
    margin: 8px auto 10px auto;
    border-radius: 50%;
    background: var(--fj-yellow);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Titles & text */
.step-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.step-text {
    font-size: 14px;
    color: #f2f2f2;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .steps-card {
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
    }

    .steps-line {
        display: none;
    }

    .step-item {
        margin-bottom: 25px;
    }
}
.step-icon img.step-img {
    width: 45px; /* adjust size */
    height: 45px; /* adjust size */
    object-fit: contain;
    display: block;
}
.container-wide {
    max-width: 1600px; /* or 1400, 1500, 1800 */
    margin: 0 auto;
}
.faq-wrapper {
    padding: 80px 0;
    text-align: center;
}

.faq-main-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-main-subtitle {
    max-width: 720px;
    margin: 0 auto 40px auto;
    color: #4b5563;
    font-size: 15px;
}

/* CARD ROW */
.faq-card-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto 35px auto;
}

/* SINGLE CARD – your blue design */
.faq-card {
    background: #023A6B;
    color: #fff;
    width: 230px;
    padding: 24px 18px 60px;
    border-radius: 22px;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

    .faq-card h4 {
        font-size: 20px;
        font-weight: 600;
        line-height: 1.4;
    }

    .faq-card .sub-text {
        font-size: 13px;
        font-weight: 400;
        opacity: .9;
    }

    .faq-card:hover,
    .faq-card.active {
        background: #034577;
        box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    }

/* Arrow circle */
.faq-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #F6A41A;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 20px; /* fixed 10px from bottom */
    left: 50%;
    transform: translateX(-50%);
}


 /* Active card arrow style */
.faq-card.active .faq-arrow {
    border-color: #ffffff; /* white border */
}
/* Default arrow icon (not rotated) */
.faq-card .faq-arrow i {
    font-size: 20px;
    color: #F6A41A; /* orange */
    transition: transform .35s ease, color .35s ease;
}
.faq-card.active .faq-arrow i {
    transform: rotate(180deg);
    color: #ffffff; /* arrow becomes white */
}


/* FAQ LIST BELOW CARDS */
.faq-container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto 60px;
}

.faq-item {
    width: 100%;
    border: 2px solid #F6A41A;
    border-radius: 14px;
    margin: 10px 0;
    overflow: hidden;
    display: none; /* will be controlled by JS */
}

.faq-question {
    width: 100%;
    padding: 14px 18px;
    background: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

    .faq-question span {
        flex: 1;
        margin-right: 12px;
    }

.faq-icon {
    color: #F6A41A;
    font-size: 18px;
    transition: transform .25s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 18px 14px 18px;
    font-size: 14px;
    text-align: left;
}

.faq-item.open .faq-answer {
    display: block;
}

/* Responsive tweak */
@media (max-width: 992px) {
    .faq-card-row {
        flex-wrap: wrap;
    }

    .faq-container {
        width: 90%;
    }
}

.sub-text {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.85;
}
.compensation-banner {
    width: 100%;
    background-color: #023A6B; /* Dark Blue */
    color: #ffffff;
    padding: 18px 30px;
    border-radius: 10px;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    margin: 20px auto;
    font-family: 'Inter', sans-serif;
}

    .compensation-banner .amount {
        color: #FA641D; /* Yellow/Orange Highlight */
        font-weight: 700;
    }

/*<===================Home===================>*/
.pathimg {
    position: absolute;
    top: 80px;
    left: 350px;
}

.pathdown {
    position: absolute;
    top: 350px;
    left: 305px;
}

.pathtext {
    position: absolute;
    top: 440px;
    left: 310px;
    bottom: 100px;
}

.pathtexts {
    position: absolute;
    top: 465px;
    left: 370px;
}
/* Main step cards */
.step-card {
    background: #0E4B84;
    color: #ffffff;
    padding: 18px 15px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 85px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Smaller info cards */
.sub-card {
    background: #0E4B84;
    color: #ffffff;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.4;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bracesp {
    top: 140px;
    left: 665px;
    width: 140px;
    margin: 6px auto 0;
}

.bracespe {
    top: 140px;
    left: 885px;
    width: 140px;
    margin: 6px auto 0;
}
/* Task labels (OUR TASK / YOUR TASK) */
.task-heading {
    align-items: end !important;
    gap: 8px;
    right: 255px;
    top: 50px;
    font-size: 22px;
    font-weight: 800;
    color: #023A6B;
    text-transform: uppercase;
}

.task-icon {
    width: 80px;
    height: auto;
}

/* Braces */
.brace-img-small {
    width: 210px;
    display: block;
    margin: 6px auto 0;
}

.brace-img-main {
    width: 260px;
    display: block;
    margin: 8px auto 0;
}

/* Plane path */
.plane-path-img {
    width: 260px;
    display: block;
    margin: 25px auto 10px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .process-title {
        font-size: 26px;
    }

    .process-subtitle {
        font-size: 16px;
    }

    .step-card {
        font-size: 14px;
        padding: 14px 18px;
    }

    .sub-card {
        font-size: 13px;
    }

    .brace-img-small,
    .brace-img-main {
        width: 120px;
    }
}
@media (max-width: 768px) {

    /* Remove absolute positions */
    .pathimg,
    .pathdown,
    .pathtext,
    .pathtexts,
    .task-heading.position-absolute,
    .bracesp,
    .bracespe {
        position: static !important;
        margin: 10px auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    /* Title sizes */
    .process-title {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .process-subtitle {
        font-size: 15px;
    }

    .task-heading {
        flex-direction: row;
        font-size: 18px;
    }

    .task-icon {
        width: 50px;
    }

    /* Plane path */
    .plane-path-img {
        width: 180px;
        margin: 15px auto;
    }

    .brace-img-small,
    .brace-img-main {
        width: 120px;
        margin: 10px auto;
    }

    .step-card {
        font-size: 15px;
        min-height: 70px;
    }

    .sub-card {
        font-size: 13px;
        min-height: 60px;
    }
}
/* MOBILE simplified styling */
.process-mobile {
    padding: 20px 15px;
}

.task-label-mobile {
    font-size: 18px;
    font-weight: 800;
    color: #023A6B;
    margin-top: 5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.task-icon-mobile {
    width: 70px;
    height: auto;
}

.step-card-mobile {
    background: #0E4B84;
    color: #ffffff;
    padding: 14px 15px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    margin: 10px auto;
    width: 90%;
    box-shadow: 0 6px 12px rgba(0,0,0,0.18);
}

/* Hide old layout on phones */
.desktop-process {
    display: block;
}

@media (max-width: 768px) {
    .desktop-process {
        display: none !important;
    }
}
/*<==========flight-cancellation=========>*/
/* HERO SECTION */
.claim-hero-section {
    padding: 70px 0;
    background: #ffffff;
}

.hero-img {
    width: 100%;
    max-width: 380px;
    border-radius: 14px;
}

.back-link {
    font-size: 15px;
    color: #023A6B;
    text-decoration: none;
    font-weight: 600;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #023A6B;
    line-height: 1.3;
    margin-top: 15px;
}

.amount {
    color: #FF9500;
}

.hero-subtitle {
    font-size: 18px;
    color: #333;
    margin: 15px 0 25px;
}

.hero-btn {
    background: #FF9500;
    border: none;
    padding: 14px 35px;
    border-radius: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

    .hero-btn:hover {
        background: #e27f00;
    }

/* FEATURE BAR */
.feature-banner {
    background: #023A6B;
/*    padding: 25px 15px;*/
    margin-top: 60px;
}

.feature-box {
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    padding: 15px 0;
}

.feature-iconi {
    width: 100px;
    height: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-row {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-btn {
        width: 100%;
    }

    .feature-box {
        border-bottom: 1px solid rgba(255,255,255,0.25);
        padding: 15px 0;
    }

        .feature-box:last-child {
            border-bottom: none;
        }
}
/* LEFT SIDEBAR */
.toc-box {
    background: #023A6B;
    padding: 28px;
    border-radius: 14px;
    color: white;
}
.toc-box {
    position: sticky;
    top: 100px; /* distance from top */
    background: #023A6B;
    padding: 28px;
    border-radius: 14px;
    color: white;
}

    .toc-box h4 {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .toc-box ul {
        list-style: none;
        padding-left: 0;
    }

        .toc-box ul li {
            list-style: disc;

        }

            .toc-box ul li.active {
                list-style: disc;
                color: #FFB300;
                font-weight: 700;
            }
            .toc-box ul li:hover {
                color: #FFB300;
                cursor: pointer;
                font-weight: 600;
            }
            .toc-box ul li:hover {
                color: #FFB300; /* Yellow color on hover */
                cursor: pointer; /* Makes it clickable style */
                font-weight: 600; /* Slightly bold on hover */
            }

/* WHOLE SECTION BG (optional) */
.claim-main-section {
    background: #f5f7fb;
}

/* RIGHT CONTENT */
.content-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

    .content-box h2 {
        font-size: 32px;
        font-weight: 800;
        color: #023A6B;
        margin-bottom: 20px;
    }

    .content-box p, .content-box ul {
        font-size: 17px;
        line-height: 1.7;
    }

/* CLAIM BOX */
.claim-box {
    background: #023A6B;
    padding: 35px;
    border-radius: 14px;
    text-align: center;
    margin-top: 28px;

}

    .claim-box h3 {
        font-size: 26px;
        font-weight: 800;
        color: white;
        margin-bottom: 25px;
    }

.claim-input {
    width: 100%;
    padding: 15px;
    font-size: 17px;
    border-radius: 10px;
    border: none;
}

.claim-btn {
    width: 100%;
    background: #FFB300;
    padding: 16px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #023A6B;
    border: none;
    cursor: pointer;
}
.claim-form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .claim-btn:hover {
        filter: brightness(1.05);
    }
/* White card box */
.details-container {
    background: #ffffff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Title */
.detail-heading {
    font-size: 26px;
    font-weight: 800;
    color: #023A6B;
    margin-bottom: 20px;
}

/* Bullet list */
.styled-list li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* IMPORTANT BAR */
.important-box {
    background: #023A6B;
    padding: 18px 25px;
    border-radius: 12px;
    color: white;
}

.highlight {
    color: #FFB300;
    font-weight: 800;
}

.check-btn {
    background: #FFB300;
    color: #023A6B;
    padding: 12px 22px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
}

    .check-btn:hover {
        background: #ff9800;
    }
.styled-lists li {
    font-size: 17px;
    color: #063F66;
    margin-bottom: 12px;
}
.note-box {
    background: #023A6B;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    margin-top: 15px;
}

    .note-box strong {
        color: #FFB300;
    }
.highlight {
    color: #FFB300;
    font-weight: 800;
}
.sub-title {
    font-size: 20px;
    font-weight: 700;
    color: #023A6B;
    margin-top: 25px;
    margin-bottom: 8px;
}
.important-boxn {
    background: #023A6B;
    padding: 18px 22px;
    border-radius: 10px;
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* Allows items to break to next line */
}

    .important-boxn p {
        flex: 1 1 100%;
        margin-bottom: 15px;
        color: #fff;
    }

.check-btnr {
    margin-top:4px;
    background: #FFB300;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    color: #023A6B;
    text-decoration: none;
    display: inline-block;
}
.cta-box {
    background: #023A6B;
    color: white;
    padding: 22px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cta-title {
    font-weight: 800;
    font-size: 17px;
}

.cta-btn {
    background: #FFB300;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    color: #023A6B;
    margin-top: 14px;
    text-decoration: none;
    white-space: nowrap;
}
.extra-section .container {
    background: #fff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}



.ruling-box {
    background: #023A6B;
    color: white;
    padding: 26px;
    border-radius: 14px;
    font-size: 16px;
}

.cta-btnt {
    display: inline-block;
    background: #FFB300;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    color: #023A6B;
    text-decoration: none;
    margin-top: 10px;
}

.detail-headings {
    font-size: 20px;
    font-weight: 700;
    color: #023A6B;
    margin-bottom: 20px;
}

.compare-title {
    font-size: 20px;
    font-weight: 700;
    color: #023A6B;
    margin-bottom: 15px;
    border: 1px solid #ffc56f;
    text-align: center;
    padding: 3px;
}

.compare-simple-list {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    margin-left: 0px;
    list-style: none !important;
    padding-left: 0 !important; /* removes left spacing */
}

    .compare-simple-list li {
        margin-bottom: 10px;
        border: 1px solid #ffc56f;
        text-align: center;
        padding: 3px;
        
    }
.airline-dropdown {
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
}

    .airline-dropdown.show {
        display: block !important;
    }
.fj-mobile-menu {
    background: #023A6B;
    padding: 20px;
    color: #fff;
}


.mobile-toggle-item {
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
}

.mobile-submenu {
    display: none;
    padding-left: 18px;
}

    .mobile-submenu.show {
        display: block !important;
    }

    .mobile-submenu li a {
        font-size: 15px;
        display: block;
        padding: 6px 0;
        opacity: 0.85;
        text-decoration:none;
        color:white;
    }
.mobile-toggle-item i {
    transition: transform 0.3s ease;
}

    .mobile-toggle-item i.rotated {
        transform: rotate(180deg);
    }
