
/*home css*/

.nls-textbox span {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #0056b3;
    letter-spacing: 1.5px;
    font-family: 'Manrope',
}

.nls-heading h2 {
    font-weight: 800;
    color: #1a1a1a;
    margin-top: 10px;
    font-size: 1.8rem;
}

/* The 'Contact Bridge' Wrapper */
.nls-contact-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 5px 8px 5px 20px;
    border-radius: 50px;
    border: 1px solid #d1d9e0;
    transition: all 0.3s ease;
    max-width: 500px;
}

    .nls-contact-wrapper:focus-within {
        border-color: #007bff;
        box-shadow: 0 8px 20px rgba(0, 123, 255, 0.06);
    }

.contact-input-hint {
    border: none;
    padding: 12px 0;
    flex-grow: 1;
    outline: none;
    font-size: 1rem;
    color: #333;
    background: transparent;
}

/* The Action Icon */
.email-action-link {
    width: 45px;
    height: 45px;
    background-color: #007bff;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

    .email-action-link:hover {
        background-color: #0056b3;
        transform: rotate(-15deg) scale(1.1);
    }

.nls-meta-text {
    font-size: 0.85rem;
    color: #4d4d4d;
    margin-top: 15px;
    display: block;
    padding-left: 10px;
}

.direct-link-bold {
    color: #007bff;
    text-decoration: none;
    font-weight: 700;
}
/* home css end*/

/* footer css*/
/* 1. The Lift: Hover Transitions */
    .fnav a, .tncnav-box a, #footer-airlines a, #footer-flights a, #footer-routes a {
        display: inline-block !important;
        text-decoration: none !important;
        transition: transform 0.3s ease-in-out !important;
    }

    .fnav a:hover, .tncnav-box a:hover, [id^="footer-"] a:hover {
        transform: translateY(-3px) !important;
        opacity: 0.8;
    }

    /* 2. The Spin: Icons & Contact */
    .fcontact-row, .fcontact-row a, .bottom-contactnav, .bottom-callus a {
        display: inline-flex !important;
        align-items: center;
        gap: 10px;
        text-decoration: none !important;
    }

    .fcontact-row i, .fcontact-row a i, .bottom-contactnav i, .fcallicon {
        display: inline-block !important;
        transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    }

    .fcontact-row:hover i, .fcontact-row a:hover i, .bottom-contactnav:hover i, .bottom-callus a:hover .fcallicon {
        transform: rotate(360deg) !important;
    }

    /* 3. Formatting & Helpers */
    .fnav ul { list-style: none !important; padding: 0 !important; }
    .fnav li { margin-bottom: 6px; }
    .fdesclaimer a { display: inline !important; text-decoration: underline !important; }
    .footer-heading { font-family: 'Manrope', sans-serif !important; }
    
    .tp-hover { transition: transform 0.3s ease, filter 0.3s ease; cursor: pointer; }
    .tp-hover:hover { transform: translateY(-2px); filter: brightness(1.15); }