﻿/* ==========================================================================
   FaithTrip Brand System — v2
   ========================================================================== */

:root {
    --ft-primary: #0D1B5E;
    --ft-primary-light: #1A3A8F;
    --ft-gold: #F5A623;
    --ft-gold-dark: #E09515;
    --ft-red: #C62828;
}

/* ── Announcement Bar (marquee) ── */
.ft-announcement-bar {
    background: #0D1B5E;
    color: #fff;
    padding: 8px 40px 8px 0;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    z-index: 1001;
    overflow: hidden;
}
.ft-ann-marquee-wrap {
    overflow: hidden;
    white-space: nowrap;
}
.ft-ann-marquee {
    display: inline-block;
    animation: ftMarquee 28s linear infinite;
    white-space: nowrap;
    padding-left: 100%;
}
.ft-ann-marquee:hover { animation-play-state: paused; }
.ft-ann-marquee span { color: #fff; }
.ft-ann-marquee span strong { color: #F5A623; }
@keyframes ftMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ft-announcement-close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    z-index: 2;
}
.ft-announcement-close:hover { color: #fff; }

/* ── Login Pill Button ── */
.ft-login-pill {
    background: linear-gradient(135deg, #F5A623 0%, #e8940f 100%) !important;
    color: #0D1B5E !important;
    border: none !important;
    border-radius: 50px;
    padding: 6px 14px;
    font-size: .76rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: all .2s;
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(245,166,35,.4);
    letter-spacing: .1px;
    line-height: 1.4;
}
.ft-login-pill:hover {
    background: linear-gradient(135deg, #ffb733 0%, #F5A623 100%) !important;
    box-shadow: 0 4px 14px rgba(245,166,35,.55);
    transform: translateY(-1px);
    color: #0D1B5E !important;
}

/* ── Navbar Social Icons ── */
.ft-nav-social { display: flex; align-items: center; gap: 4px; }
.ft-nav-social-link {
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem;
    text-decoration: none !important;
    color: #555;
    background: #f5f5f5;
    transition: all .2s;
    border: 1.5px solid transparent;
}
.ft-nav-social-link:hover {
    color: var(--sc, #0D1B5E) !important;
    background: #fff;
    border-color: var(--sc, #0D1B5E);
    transform: translateY(-2px);
}

/* ── FaithTrip Navbar ── */
.ft-navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 12px rgba(13,27,94,0.08);
    padding: 0;
    max-width: 100vw;
}
.ft-navbar-inner {
    display: flex;
    align-items: center;
    height: 64px;
    gap: 8px;
    min-width: 0;
    max-width: 100%;
}
.ft-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    flex-shrink: 0;
}
.ft-logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: -0.5px;
    line-height: 1;
}
.ft-logo-faith { color: #0D1B5E; }
.ft-logo-trip  { color: #F5A623; }
.ft-nav-links  { display: flex; align-items: center; gap: 2px; flex: 1; }
.ft-nav-link {
    color: #0D1B5E;
    text-decoration: none !important;
    padding: 5px 7px;
    border-radius: 6px;
    font-size: 0.86rem;
    font-weight: 600;
    transition: all 0.2s;
    white-space: nowrap;
}
.ft-nav-link:hover {
    color: #0D1B5E;
    background: rgba(13,27,94,0.07);
}
.ft-nav-link.active {
    color: #0D1B5E;
    background: rgba(13,27,94,0.06);
    box-shadow: inset 0 -2px 0 #F5A623;
}
.ft-nav-right { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.ft-hotline { display: flex; align-items: center; gap: 5px; font-size: 0.8rem; color: #777; white-space: nowrap; }
.ft-hotline-number { font-weight: 700; color: #0D1B5E; text-decoration: none !important; font-size: 0.88rem; }
.ft-hotline-number:hover { color: #F5A623; }
.ft-currency-btn {
    border: 2px solid #0D1B5E;
    border-radius: 20px;
    padding: 5px 13px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #0D1B5E;
    background: #eef1fb;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}
.ft-currency-btn:hover { background: #0D1B5E; color: #fff; border-color: #0D1B5E; }
.ft-login-btn {
    background: #0D1B5E;
    color: #fff !important;
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.ft-login-btn:hover { background: #1A3A8F; }
.ft-menu-toggle { background: none; border: none; color: #0D1B5E; font-size: 1.4rem; cursor: pointer; padding: 6px; }
.ft-mobile-menu { display: none; flex-direction: column; padding: 12px 0; border-top: 1px solid #f0f0f0; }
.ft-mobile-menu.open { display: flex; }
.ft-mobile-link { color: #0D1B5E; text-decoration: none !important; padding: 10px 8px; border-radius: 6px; font-size: 0.9rem; font-weight: 500; transition: all 0.2s; }
.ft-mobile-link:hover { color: #0D1B5E; background: rgba(13,27,94,0.06); }
.ft-mobile-link.active { color: #0D1B5E; background: rgba(13,27,94,0.08); border-left: 3px solid #F5A623; padding-left: 10px; }

/* ── Hero ── */
.ft-b2c-hero {
    background: linear-gradient(160deg,#0D1B5E 0%,#1A3A8F 45%,#0A3572 100%);
    background-size: cover;
    background-position: center;
    padding: 60px 0 48px;
    position: relative;
    overflow: visible;
}
.ft-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.ft-b2c-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 30%, rgba(245,166,35,.07) 0%, transparent 50%);
    pointer-events: none;
}
.ft-hero-text { text-align: center; padding: 0 16px 28px; position: relative; z-index: 2; }
.ft-hero-title { font-family: 'Poppins',sans-serif; font-size: 2.4rem; font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1.2; }
.ft-hero-title span { color: #F5A623; }
.ft-hero-subtitle { color: rgba(255,255,255,.75); font-size: 1rem; margin: 0; }

/* ── Service Tabs ── */
.ft-service-tabs { display: flex; gap: 4px; flex-wrap: wrap; position: relative; z-index: 2; padding: 0 8px; }
.ft-service-tab {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 20px;
    border-radius: 10px 10px 0 0;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.8);
    cursor: pointer; font-size: 0.88rem; font-weight: 600;
    border: none; text-decoration: none !important;
    transition: all 0.2s;
}
.ft-service-tab:hover { background: rgba(255,255,255,.2); color: #fff; }
.ft-service-tab.active { background: #fff; color: #0D1B5E; }
.ft-service-tab-icon {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
}
.ft-service-tab.active .ft-service-tab-icon { background: #F5A623; color: #fff; }

/* ── Search Wrapper ── */
.ft-search-wrapper {
    background: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 20px 24px 24px;
    position: relative;
    z-index: 2;
    margin: 0 8px;
}

/* ── Fare Types ── */
.ft-fare-types { display: flex; gap: 24px; flex-wrap: wrap; padding: 14px 0 0; border-top: 1px solid #f0f0f0; margin-top: 12px; }
.ft-fare-type { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 0.86rem; color: #555; font-weight: 500; user-select: none; }
.ft-fare-type input[type="radio"] { accent-color: #F5A623; cursor: pointer; }
.ft-fare-type.ft-active { color: #F5A623; }

/* ── Shared Section ── */
.ft-section { padding: 52px 0; }
.ft-section-alt { background: #f8f9fa; }
.ft-section-head { margin-bottom: 28px; }
.ft-section-title { font-family: 'Poppins',sans-serif; font-size: 1.75rem; font-weight: 800; color: #0D1B5E; margin: 0 0 6px; }
.ft-section-underline { width: 44px; height: 4px; background: #F5A623; border-radius: 2px; margin-top: 8px; }
.ft-section-center { text-align: center; }
.ft-section-subtitle { color: #777; font-size: 0.92rem; margin-top: 8px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── Hot Deals ── */
.ft-deals-scroll { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 4px; }
.ft-deals-scroll::-webkit-scrollbar { display: none; }
.ft-deal-card { flex: 0 0 calc(33.333% - 14px); min-width: 260px; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.07); scroll-snap-align: start; transition: transform .2s,box-shadow .2s; cursor: pointer; background: #fff; }
.ft-deal-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.ft-deal-card img { width: 100%; height: 210px; object-fit: cover; display: block; }

/* ── Special Offers ── */
.ft-offers-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 24px; gap: 16px; flex-wrap: wrap; }
.ft-offers-right { display: flex; align-items: center; gap: 8px; }
.ft-filter-btn { padding: 7px 18px; border-radius: 20px; border: 1.5px solid #ddd; background: #fff; color: #555; font-size: 0.84rem; font-weight: 600; cursor: pointer; transition: all .2s; }
.ft-filter-btn.active, .ft-filter-btn:hover { background: #0D1B5E; color: #fff; border-color: #0D1B5E; }
.ft-nav-arrow { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid #ddd; background: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.85rem; color: #555; transition: all .2s; }
.ft-nav-arrow:hover { border-color: #0D1B5E; color: #0D1B5E; }
.ft-offers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.ft-offer-card { border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.06); transition: transform .2s; display: none; }
.ft-offer-card.ft-visible { display: block; }
.ft-offer-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.1); }
.ft-offer-card img { width: 100%; height: 195px; object-fit: cover; display: block; }
.ft-offer-body { padding: 14px 16px; }
.ft-offer-title { font-weight: 700; color: #0D1B5E; font-size: .93rem; margin-bottom: 4px; }
.ft-offer-desc { color: #777; font-size: .82rem; margin-bottom: 10px; line-height: 1.5; }
.ft-offer-link { font-size: .82rem; font-weight: 600; color: #0D1B5E; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.ft-offer-link:hover { color: #F5A623; }

/* ── Airlines Grid ── */
.ft-airlines-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid #eee; border-radius: 12px; overflow: hidden; }
.ft-airline-row { display: flex; align-items: center; padding: 13px 16px; border-right: 1px solid #eee; border-bottom: 1px solid #eee; gap: 10px; cursor: pointer; transition: background .15s; text-decoration: none !important; color: inherit; }
.ft-airline-row:hover { background: #f8f9fa; }
.ft-airline-row:nth-child(4n) { border-right: none; }
.ft-airline-logo-wrap { width: 36px; height: 36px; border-radius: 50%; background: #f5f5f5; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.ft-airline-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }
.ft-airline-name { flex: 1; font-size: .86rem; font-weight: 600; color: #0D1B5E; }
.ft-airline-chevron { color: #bbb; font-size: .7rem; }

/* ── Tour Packages ── */
.ft-tours-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 24px; }
.ft-tour-card { border-radius: 16px; overflow: hidden; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.07); text-decoration: none !important; display: block; transition: transform .2s,box-shadow .2s; }
.ft-tour-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.12); }
.ft-tour-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.ft-tour-img-ph { width: 100%; height: 200px; background: linear-gradient(135deg,#0D1B5E,#1A3A8F); display: flex; align-items: center; justify-content: center; }
.ft-tour-body { padding: 16px; }
.ft-tour-name { font-weight: 700; font-size: .95rem; color: #0D1B5E; margin-bottom: 6px; }
.ft-tour-stars { color: #F59E0B; font-size: .82rem; }

/* ── Destinations Carousel ── */
.ft-dest-outer { position: relative; overflow: hidden; margin-top: 24px; }
.ft-dest-track { display: flex; gap: 20px; transition: transform .4s ease; }
.ft-dest-card { flex: 0 0 calc(25% - 15px); border-radius: 16px; overflow: hidden; position: relative; cursor: pointer; min-height: 240px; }
.ft-dest-card img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform .4s; }
.ft-dest-card:hover img { transform: scale(1.05); }
.ft-dest-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent,rgba(0,0,0,.65)); padding: 20px 14px 14px; }
.ft-dest-name { color: #fff; font-weight: 700; font-size: 1rem; }
.ft-dest-dots { display: flex; justify-content: center; gap: 6px; margin-top: 18px; }
.ft-dest-dot { width: 8px; height: 8px; border-radius: 50%; background: #ddd; cursor: pointer; border: none; padding: 0; transition: all .2s; }
.ft-dest-dot.active { background: #0D1B5E; width: 20px; border-radius: 4px; }

/* ── Partner CTA ── */
.ft-partner-cta { background: linear-gradient(135deg,#b8d4f0 0%,#f0e2b8 100%); padding: 52px 0; }
.ft-partner-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.ft-partner-title { font-family: 'Poppins',sans-serif; font-size: 1.8rem; font-weight: 800; color: #0D1B5E; margin-bottom: 8px; }
.ft-partner-desc { color: #555; font-size: .93rem; }
.ft-partner-btn { background: #F5A623; color: #fff; padding: 12px 32px; border-radius: 25px; font-weight: 700; text-decoration: none !important; font-size: .93rem; transition: all .2s; white-space: nowrap; display: inline-block; }
.ft-partner-btn:hover { background: #E09515; }

/* ── Routes ── */
.ft-routes-tabs { display: flex; justify-content: center; margin-bottom: 28px; }
.ft-routes-tab { padding: 10px 36px; border: 2px solid #0D1B5E; font-weight: 700; font-size: .92rem; cursor: pointer; transition: all .2s; background: #fff; color: #0D1B5E; }
.ft-routes-tab:first-child { border-radius: 25px 0 0 25px; }
.ft-routes-tab:last-child  { border-radius: 0 25px 25px 0; border-left: none; }
.ft-routes-tab.active { background: #0D1B5E; color: #fff; }
.ft-routes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.ft-route-pill { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid #eee; border-radius: 10px; text-decoration: none !important; transition: all .2s; background: #fff; }
.ft-route-pill:hover { border-color: #0D1B5E; background: #f8f9fa; }
.ft-route-airports { font-weight: 700; color: #0D1B5E; font-size: .86rem; }
.ft-route-names { font-size: .76rem; color: #888; line-height: 1.3; }
.ft-route-icon { color: #0D1B5E; font-size: .95rem; }

/* ── App Download ── */
.ft-app-btns { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.ft-app-store-btn img { height: 44px; border-radius: 8px; display: block; }

/* ── Footer ── */
.ft-footer { background: #fff; border-top: 1px solid #eee; padding: 52px 0 0; }
.ft-footer-logo { display: flex; align-items: center; gap: 8px; text-decoration: none !important; margin-bottom: 14px; }
.ft-footer-desc { color: #555; font-size: .87rem; line-height: 1.75; margin-bottom: 18px; }
.ft-footer-heading { font-weight: 800; font-size: .98rem; color: #0D1B5E; margin-bottom: 16px; }
.ft-footer-heading::after { content: ''; display: block; width: 32px; height: 3px; background: #F5A623; border-radius: 2px; margin-top: 6px; }
.ft-footer-links { list-style: none; padding: 0; margin: 0; }
.ft-footer-links li { margin-bottom: 10px; }
.ft-footer-links a { color: #555; text-decoration: none !important; font-size: .88rem; transition: color .2s; }
.ft-footer-links a:hover { color: #0D1B5E; }
.ft-footer-social { display: flex; gap: 10px; margin-top: 6px; flex-wrap: wrap; }
.ft-social-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--sm-bg, #f0f4ff);
    color: var(--sm-color, #0D1B5E) !important;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none !important; font-size: 1rem;
    transition: transform .18s, box-shadow .18s;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.ft-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,.15);
    background: var(--sm-color, #0D1B5E) !important;
    color: #fff !important;
}
.ft-footer-certified { border-top: 1px solid #eee; padding: 20px 0; display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 40px; }
.ft-footer-certified span { font-size: .85rem; color: #777; }
.ft-iata-badge { border: 1.5px solid #ddd; border-radius: 8px; padding: 6px 18px; font-size: .85rem; font-weight: 700; color: #0D1B5E; }
.ft-footer-copyright { background: #0D1B5E; text-align: center; padding: 14px; }
.ft-footer-copyright p { color: rgba(255,255,255,.75); font-size: .84rem; margin: 0; line-height: 1.8; }
.ft-footer-copyright a { color: #F5A623; text-decoration: none; }
.ft-we-accept-label { font-size: .78rem; font-weight: 700; color: #0D1B5E; display: flex; align-items: center; gap: 6px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .04em; }
.ft-we-accept-label::before { content: ''; display: inline-block; width: 7px; height: 7px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 0 2px rgba(34,197,94,.25); }
.ft-payment-logos { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.ft-pay-badge {
    background: #fff;
    border: 1.5px solid #e9ecef;
    border-radius: 8px;
    padding: 5px 10px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
    transition: box-shadow .18s, border-color .18s;
    min-width: 52px;
}

/* ── Responsive ── */
@media (max-width:1399px) {
    .ft-nav-links { display: none !important; }
    .ft-hotline  { display: none !important; }
}
@media (max-width:991px) {
    .ft-airlines-grid { grid-template-columns: repeat(2,1fr); }
    .ft-offers-grid   { grid-template-columns: repeat(2,1fr); }
    .ft-tours-grid    { grid-template-columns: repeat(2,1fr); }
    .ft-routes-grid   { grid-template-columns: repeat(2,1fr); }
    .ft-dest-card     { flex: 0 0 calc(50% - 10px); }
}
@media (max-width:767px) {
    .ft-navbar-inner { height: 56px; }
    .ft-logo-text    { font-size: 1.2rem; }
    .ft-hero-title   { font-size: 1.7rem; }
    .ft-airlines-grid { grid-template-columns: repeat(2,1fr); }
    .ft-offers-grid  { grid-template-columns: 1fr; }
    .ft-tours-grid   { grid-template-columns: 1fr; }
    .ft-routes-grid  { grid-template-columns: 1fr; }
    .ft-section-title { font-size: 1.4rem; }
    .ft-partner-inner { flex-direction: column; text-align: center; }
    .ft-dest-card    { flex: 0 0 calc(100% - 10px); }
    .ft-deal-card    { flex: 0 0 260px; min-width: 260px; }
    .ft-currency-btn { display: none !important; }
    .ft-service-tab span { display: none; }
    .ft-service-tab  { padding: 8px 12px; }
}

/* ==========================================================================
   App Showcase Section (FanamTrip-style phone mockups)
   ========================================================================== */

.ft-app-showcase {
    background: linear-gradient(145deg, #e8efff 0%, #f5f8ff 40%, #eef4ff 70%, #e8efff 100%);
    padding: 70px 0 60px;
    overflow: hidden;
    position: relative;
}
.ft-app-showcase::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13,27,94,.06) 0%, transparent 70%);
    pointer-events: none;
}
.ft-showcase-wrap {
    display: flex;
    align-items: center;
    gap: 48px;
}
.ft-showcase-text {
    flex: 1;
    max-width: 420px;
}
.ft-showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(13,27,94,.08);
    color: #0D1B5E;
    font-size: .8rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: .3px;
}
.ft-showcase-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: #0D1B5E;
    line-height: 1.22;
    margin-bottom: 14px;
}
.ft-showcase-heading span { color: #F5A623; }
.ft-showcase-sub {
    color: #666;
    font-size: .93rem;
    line-height: 1.7;
    margin-bottom: 22px;
}
.ft-showcase-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.ft-showcase-features li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .88rem;
    color: #444;
    margin-bottom: 9px;
    font-weight: 500;
}
.ft-showcase-features li i { color: #2e7d32; font-size: .85rem; flex-shrink: 0; }

/* Download buttons */
.ft-showcase-downloads {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.ft-dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 11px 22px;
    border-radius: 12px;
    text-decoration: none !important;
    transition: transform .18s, box-shadow .18s;
    border: 1.5px solid transparent;
    box-shadow: 0 4px 14px rgba(0,0,0,.18);
    min-width: 158px;
}
.ft-dl-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.26); }
.ft-dl-icon { width: 26px; height: 26px; flex-shrink: 0; }
.ft-dl-btn div { display: flex; flex-direction: column; line-height: 1.25; }
.ft-dl-btn div span { font-size: .65rem; font-weight: 500; opacity: .82; letter-spacing: .02em; }
.ft-dl-btn div strong { font-size: 1rem; font-weight: 700; letter-spacing: -.01em; }
.ft-dl-apple { background: #000; color: #fff !important; border-color: #222; }
.ft-dl-apple:hover { background: #1a1a1a; }
.ft-dl-google { background: #fff; color: #1a1a1a !important; border-color: #dadce0; box-shadow: 0 2px 10px rgba(0,0,0,.12); }
.ft-dl-google:hover { background: #f8f9fa; box-shadow: 0 6px 20px rgba(0,0,0,.18); }

.ft-showcase-qr {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1.5px solid #e0e7ff;
    border-radius: 10px;
    padding: 8px 14px;
}
.ft-showcase-qr img { width: 52px; height: 52px; }
.ft-showcase-qr span { font-size: .8rem; color: #555; font-weight: 600; }

/* Phone mockup group */
.ft-showcase-phones {
    flex: 1;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 480px;
    min-width: 0;
}

/* Base phone frame */
.ft-mock-phone {
    width: 155px;
    background: #1a1a2e;
    border-radius: 28px;
    border: 5px solid #2a2a40;
    box-shadow: 0 24px 60px rgba(0,0,0,.28), 0 4px 12px rgba(0,0,0,.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: absolute;
    transition: transform .3s ease;
    flex-shrink: 0;
}
.ft-mock-phone:hover { box-shadow: 0 32px 80px rgba(0,0,0,.35); }

/* Center phone — biggest, front */
.ft-mock-center {
    width: 175px;
    height: 380px;
    z-index: 10;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-color: #333355;
    box-shadow: 0 30px 80px rgba(13,27,94,.35), 0 6px 20px rgba(0,0,0,.2);
}
.ft-mock-center:hover { transform: translateX(-50%) translateY(-8px); }

/* Side phones */
.ft-mock-left {
    width: 148px;
    height: 320px;
    z-index: 5;
    bottom: 20px;
    left: calc(50% - 195px);
    transform: rotate(-6deg);
    opacity: .88;
}
.ft-mock-left:hover { transform: rotate(-3deg) translateY(-6px); opacity: 1; }

.ft-mock-right {
    width: 148px;
    height: 320px;
    z-index: 5;
    bottom: 20px;
    right: calc(50% - 195px);
    transform: rotate(6deg);
    opacity: .88;
}
.ft-mock-right:hover { transform: rotate(3deg) translateY(-6px); opacity: 1; }

/* Phone internals */
.ft-mock-notch {
    width: 60px;
    height: 10px;
    background: #1a1a2e;
    border-radius: 0 0 8px 8px;
    margin: 0 auto;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
.ft-mock-screen {
    flex: 1;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.ft-mock-header {
    padding: 10px 10px 8px;
    flex-shrink: 0;
}
.ft-mock-logo-small { display: flex; align-items: center; }
.ft-mock-title { font-size: 9px; color: rgba(255,255,255,.9); }
.ft-mock-home-bar {
    height: 16px;
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ft-mock-home-bar::after {
    content: '';
    width: 40px;
    height: 3px;
    background: rgba(255,255,255,.3);
    border-radius: 2px;
}

/* Phone screen UI elements */
.ft-mock-input-row {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f5f5f5;
    border-radius: 5px;
    padding: 5px 7px;
    margin-bottom: 3px;
    font-size: 8.5px;
    font-weight: 600;
    color: #0D1B5E;
}
.ft-mock-swap {
    text-align: center;
    margin: 2px 0;
}
.ft-mock-date-box {
    flex: 1;
    background: #f5f5f5;
    border-radius: 5px;
    padding: 5px 6px;
}
.ft-mock-search-btn {
    margin-top: 6px;
    background: #0D1B5E;
    color: #fff;
    border-radius: 6px;
    padding: 6px;
    text-align: center;
    font-size: 8.5px;
    font-weight: 700;
}
.ft-mock-flight-row {
    display: flex;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px solid #f0f0f0;
}
.ft-mock-tour-card {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8f9fa;
    border-radius: 7px;
    padding: 6px 7px;
    margin-bottom: 5px;
}

/* Responsive showcase */
@media (max-width: 991px) {
    .ft-showcase-wrap { flex-direction: column-reverse; gap: 32px; }
    .ft-showcase-text { max-width: 100%; text-align: center; }
    .ft-showcase-features { text-align: left; display: inline-block; }
    .ft-showcase-downloads { justify-content: center; }
    .ft-showcase-phones { height: 360px; width: 100%; }
    .ft-mock-center { width: 148px; height: 320px; }
    .ft-mock-left  { width: 126px; height: 270px; left: calc(50% - 162px); }
    .ft-mock-right { width: 126px; height: 270px; right: calc(50% - 162px); }
    .ft-showcase-heading { font-size: 1.7rem; }
}
@media (max-width: 575px) {
    .ft-showcase-phones { height: 300px; }
    .ft-mock-center { width: 130px; height: 280px; }
    .ft-mock-left  { width: 108px; height: 230px; left: calc(50% - 138px); }
    .ft-mock-right { width: 108px; height: 230px; right: calc(50% - 138px); }
    .ft-showcase-heading { font-size: 1.45rem; }
}

/* ==========================================================================
   Professional Polish — FaithTrip v2.1
   ========================================================================== */

/* Footer link hover — slide-in left arrow */
.ft-footer-links a {
    position: relative;
    padding-left: 0;
    transition: color .2s, padding-left .18s;
}
.ft-footer-links a:hover {
    color: #0D1B5E;
    padding-left: 8px;
}
.ft-footer-links a:hover::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #F5A623;
    font-weight: 700;
    line-height: 1;
}

/* IATA badge improved */
.ft-iata-badge {
    background: linear-gradient(135deg, #f0f4ff, #fff);
    border: 1.5px solid #c5d0f0;
    box-shadow: 0 2px 8px rgba(13,27,94,.07);
}

/* Keyboard focus rings — accessibility */
.ft-nav-link:focus-visible,
.ft-login-pill:focus-visible,
.ft-partner-pill:focus-visible,
.ft-hotline-btn:focus-visible,
.ft-currency-btn:focus-visible {
    outline: 2px solid #F5A623;
    outline-offset: 2px;
}

/* Section heading underline — gradient */
.ft-section-underline {
    background: linear-gradient(90deg, #0D1B5E 0%, #F5A623 100%);
}

/* Visa apply button improved */
.ft-visa-apply-btn {
    background: linear-gradient(135deg, #0D1B5E 0%, #1A3A8F 100%);
    box-shadow: 0 3px 10px rgba(13,27,94,.25);
}
.ft-visa-apply-btn:hover {
    background: linear-gradient(135deg, #1A3A8F 0%, #243b9f 100%);
    box-shadow: 0 5px 16px rgba(13,27,94,.35);
    transform: translateY(-1px);
    color: #fff;
}

/* Section title gradient underline on hover */
.ft-visa-section-underline,
.ft-section-underline {
    transition: width .3s ease;
}

/* Ticker CTA — improved */
.ft-ticker-cta {
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: 11.5px;
}

/* Tour / destination card overlay text shadow */
.ft-dest-name { text-shadow: 0 1px 4px rgba(0,0,0,.4); }

/* Partner CTA section — brand aligned */
.ft-partner-cta {
    background: linear-gradient(135deg, #e8efff 0%, #fff8e8 100%);
}

/* Hotline button — professional green */
.ft-hotline-btn {
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: 11.5px;
}




/* ═══════════════════════════════════════════════════════════════
   FaithTrip — Dark Mode  |  B2C Site
   ═══════════════════════════════════════════════════════════════ */

/* ─── Theme Toggle — compact icon button (T360-style) ────────── */
.ft-theme-switch {
    width: 30px; height: 30px; border-radius: 8px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.85);
    cursor: pointer; outline: none; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .82rem; padding: 0;
    transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
}
.ft-theme-switch:hover {
    background: rgba(255,255,255,.2);
    border-color: rgba(255,255,255,.4);
    color: #fff;
}
[data-theme="dark"] .ft-theme-switch {
    background: rgba(245,166,35,.14);
    border-color: rgba(245,166,35,.4);
    color: #F5A623;
    box-shadow: 0 0 8px rgba(245,166,35,.12);
}
[data-theme="dark"] .ft-theme-switch:hover {
    background: rgba(245,166,35,.24);
    box-shadow: 0 0 12px rgba(245,166,35,.2);
}
.ft-theme-icon-sun  { display: none; }
.ft-theme-icon-moon { display: block; }
[data-theme="dark"] .ft-theme-icon-sun  { display: block; }
[data-theme="dark"] .ft-theme-icon-moon { display: none; }

/* ─── Dark Mode — Brand Navy Palette ────────────────────────── */
[data-theme="dark"] {
    --ft-primary: #5b7eef;
    --ft-gold:    #F5A623;
    --ft-red:     #ef4444;
}
[data-theme="dark"] body.b2c-body,
[data-theme="dark"] .b2c-body {
    background: #040c1e !important;
    color: #d4d9ee !important;
}
[data-theme="dark"] .ft-navbar,
[data-theme="dark"] nav.ft-navbar {
    background: linear-gradient(135deg, #030a1a 0%, #0b1640 100%) !important;
    box-shadow: 0 2px 24px rgba(0,0,0,.6) !important;
}
[data-theme="dark"] .ft-nav-center a,
[data-theme="dark"] .ft-mega-trigger { color: #c8cfe8 !important; }
[data-theme="dark"] .ft-mega-menu,
[data-theme="dark"] .ft-hotline-dropdown,
[data-theme="dark"] .ft-currency-dropdown,
[data-theme="dark"] .ft-user-dropdown {
    background: #0c1840 !important;
    border-color: rgba(255,255,255,.1) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,.5) !important;
}
[data-theme="dark"] .ft-currency-option,
[data-theme="dark"] .ft-hotline-dd-item,
[data-theme="dark"] .ft-user-dd-item { color: #c8cfe8 !important; }
[data-theme="dark"] .ft-currency-option:hover,
[data-theme="dark"] .ft-hotline-dd-item:hover,
[data-theme="dark"] .ft-user-dd-item:hover { background: rgba(91,126,239,.18) !important; }
[data-theme="dark"] .ft-hotline-dd-label { color: #7a84a8 !important; }
[data-theme="dark"] .ft-b2c-hero {
    background: linear-gradient(160deg, #040c22 0%, #081535 45%, #060f28 100%) !important;
}
[data-theme="dark"] .ft-section-alt,
[data-theme="dark"] .ft-about-section,
[data-theme="dark"] .ft-partner-cta { background: #06102a !important; }
[data-theme="dark"] .ft-tutorials-section { background: #030a1e !important; }
[data-theme="dark"] .ft-globe-section {
    background: linear-gradient(120deg, #040c22 0%, #060f2a 50%, #040c22 100%) !important;
}
[data-theme="dark"] .ft-globe-section::before {
    background: radial-gradient(ellipse 60% 55% at 15% 50%, rgba(91,126,239,.08) 0%, transparent 70%), radial-gradient(ellipse 50% 60% at 85% 40%, rgba(245,166,35,.06) 0%, transparent 70%) !important;
}
[data-theme="dark"] .ft-globe-map-wrap {
    background: linear-gradient(135deg, rgba(8,20,60,.6) 0%, rgba(4,12,30,.7) 50%, rgba(8,16,48,.5) 100%) !important;
    border-color: rgba(91,126,239,.15) !important;
    box-shadow: 0 8px 40px rgba(0,0,0,.4) !important;
}
[data-theme="dark"] .ft-globe-stats {
    background: rgba(8,20,60,.7) !important;
    border-color: rgba(255,255,255,.08) !important;
    box-shadow: none !important;
}
[data-theme="dark"] .ft-globe-stat-num { -webkit-text-fill-color: #F5A623 !important; }
[data-theme="dark"] .ft-globe-stat-lbl { color: rgba(255,255,255,.5) !important; }
[data-theme="dark"] .ft-globe-title { color: #eaeef8 !important; }
[data-theme="dark"] .ft-globe-sub   { color: rgba(255,255,255,.5) !important; }
[data-theme="dark"] .ft-globe-eyebrow { background: rgba(245,166,35,.1) !important; border-color: rgba(245,166,35,.3) !important; }
[data-theme="dark"] .ft-globe-pin-label {
    background: rgba(4,14,40,.95) !important;
    border-color: rgba(255,255,255,.15) !important;
    color: #d4d9ee !important;
}
[data-theme="dark"] .ft-about-section { color: #d4d9ee !important; }
[data-theme="dark"] .ft-about-section::before { opacity: .03 !important; }
[data-theme="dark"] .ft-about-eyebrow  { color: var(--ft-primary) !important; }
[data-theme="dark"] .ft-about-title    { color: #eaeef8 !important; }
[data-theme="dark"] .ft-about-desc     { color: #8892b0 !important; }
[data-theme="dark"] .ft-about-feat-card {
    background: #081535 !important;
    border-color: rgba(91,126,239,.15) !important;
    color: #d4d9ee !important;
}
[data-theme="dark"] .ft-about-feat-card:hover {
    border-color: var(--ft-primary) !important;
    box-shadow: 0 8px 28px rgba(91,126,239,.15) !important;
}
[data-theme="dark"] .ft-about-feat-title { color: #eaeef8 !important; }
[data-theme="dark"] .ft-about-feat-desc  { color: #8892b0 !important; }
[data-theme="dark"] .ft-about-video-frame {
    background: #081535 !important;
    border-color: rgba(91,126,239,.15) !important;
}
[data-theme="dark"] .ft-about-stats-band { background: #030a1e !important; }
[data-theme="dark"] .ft-about-stat-num   { color: #fff !important; }
[data-theme="dark"] .ft-about-stat-label { color: rgba(255,255,255,.55) !important; }
[data-theme="dark"] .ft-search-box,
[data-theme="dark"] .ft-search-wrap,
[data-theme="dark"] .search-box-wrap {
    background: rgba(6,18,52,.92) !important;
    border-color: rgba(255,255,255,.1) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,.5) !important;
}
[data-theme="dark"] .ft-tab-btn { color: #8892b0 !important; border-color: transparent !important; }
[data-theme="dark"] .ft-tab-btn.active { color: var(--ft-primary) !important; }
[data-theme="dark"] .ft-form-group label { color: #8892b0 !important; }
[data-theme="dark"] .ft-form-input,
[data-theme="dark"] .ft-date-inp { color: #d4d9ee !important; background: transparent !important; }
[data-theme="dark"] .card,
[data-theme="dark"] .ft-card {
    background: #081535 !important;
    border-color: rgba(91,126,239,.12) !important;
    color: #d4d9ee !important;
}
[data-theme="dark"] .card-header,
[data-theme="dark"] .card-footer {
    background: #0c1c48 !important;
    border-color: rgba(255,255,255,.07) !important;
    color: #d4d9ee !important;
}
[data-theme="dark"] .flight-card,
[data-theme="dark"] .ft-flight-card,
[data-theme="dark"] .result-card {
    background: #081535 !important;
    border-color: rgba(91,126,239,.12) !important;
}
[data-theme="dark"] .flight-card:hover,
[data-theme="dark"] .ft-flight-card:hover {
    border-color: var(--ft-primary) !important;
    box-shadow: 0 6px 24px rgba(91,126,239,.18) !important;
}
[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select,
[data-theme="dark"] input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="range"]),
[data-theme="dark"] select,
[data-theme="dark"] textarea {
    background: #0c1c48 !important;
    border-color: rgba(255,255,255,.12) !important;
    color: #d4d9ee !important;
}
[data-theme="dark"] input::placeholder,
[data-theme="dark"] .form-control::placeholder { color: #5a6585 !important; }
[data-theme="dark"] .dropdown-menu {
    background: #0c1840 !important;
    border-color: rgba(255,255,255,.1) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,.5) !important;
}
[data-theme="dark"] .dropdown-item { color: #c8cfe8 !important; }
[data-theme="dark"] .dropdown-item:hover { background: rgba(91,126,239,.18) !important; }
[data-theme="dark"] .dropdown-divider { border-color: rgba(255,255,255,.08) !important; }
[data-theme="dark"] .table { color: #d4d9ee !important; }
[data-theme="dark"] .table > :not(caption) > * > * {
    background: transparent !important;
    border-color: rgba(255,255,255,.07) !important;
}
[data-theme="dark"] .ft-footer,
[data-theme="dark"] footer.ft-footer { background: #020710 !important; }
[data-theme="dark"] .modal-content {
    background: #081535 !important;
    color: #d4d9ee !important;
    border-color: rgba(91,126,239,.15) !important;
}
[data-theme="dark"] .modal-header,
[data-theme="dark"] .modal-footer { border-color: rgba(255,255,255,.08) !important; }
[data-theme="dark"] .btn-close { filter: invert(1) brightness(1.5); }
[data-theme="dark"] .border,
[data-theme="dark"] .border-bottom,
[data-theme="dark"] .border-top { border-color: rgba(255,255,255,.08) !important; }
[data-theme="dark"] hr { border-color: rgba(255,255,255,.08) !important; }
[data-theme="dark"] .text-dark  { color: #d4d9ee !important; }
[data-theme="dark"] .text-muted { color: #6b7499 !important; }
[data-theme="dark"] .bg-white { background: #081535 !important; }
[data-theme="dark"] .bg-light { background: #06102a !important; }
[data-theme="dark"] ::-webkit-scrollbar       { background: #040c1e; }
[data-theme="dark"] ::-webkit-scrollbar-thumb { background: #1e3a7a; border-radius: 4px; }
[data-theme="dark"] * { scrollbar-color: #1e3a7a #040c1e; }
