
/********* GLOBAL TYPOGRAPHY *********/
body,
h1, h2, h3, h4, h5, h6,
p, a, span, li, td, th,
input, textarea, select, button {
    font-family: "Urbanist", sans-serif !important;
}
h1 { font-size: 48px; font-weight: 700; line-height: 1.2; }
h2 { font-size: 40px; font-weight: 700; line-height: 1.25; }
h3 { font-size: 24px; font-weight: 600; line-height: 1.3; }
h4 { font-size: 20px; font-weight: 600; line-height: 1.35; }
h5 { font-size: 16px; font-weight: 600; line-height: 1.4; }
h6 { font-size: 16px; font-weight: 600; line-height: 1.4; }
p  { font-size: 16px; font-weight: 400; line-height: 1.8; color: #555; }

/********* COMMON *********/
:root {
    --pxs-color-theme-bg-yellow: #faa61a;
    --pxs-color-theme-primary: #ed1c24;
}

/********* INNER PAGE BANNER *********/
.inner-banner-section {
    position: relative;
    background: url('../img/bannerbg.png') no-repeat center center;
    background-size: cover;
    padding: 170px 0 70px;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
}
.inner-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 40, 0.68);
}
.inner-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}
.inner-banner-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin: 0;
}
.ibn-line1 {
    font-size: 40px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
}
.ibn-line2 {
    font-size: 54px;
    font-weight: 700;
    color: #f28c1b;
    line-height: 1.15;
}
/* Hide old page sub-banners — replaced by inner-banner.php */
.blog-page-header {
    display: none !important;
}
@media (max-width: 767px) {
    .inner-banner-section { padding: 130px 0 50px; }
    .ibn-line1 { font-size: 28px; }
    .ibn-line2 { font-size: 36px; }
}

/********* HEADER *********/

/* ── Full-width white background on the header (covers both top-bar row and nav row) ── */
.header {
    background: #ffffff !important;
}

/* ── Top Bar ── */
.header .top-bar {
    background-color: #f7efe1 !important;
    padding: 10px 0;
}
/* 2-column layout: [email + dot + phone] LEFT | [hours + social] RIGHT */
.header .top-bar .top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 38px;
}
/* LEFT: email + dot + phone all together */
.header .top-bar .top-left-content {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header .top-bar .top-email {
    color: #4a4a4a;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
}
.header .top-bar .top-email:hover { color: #ff8e30; }
.header .top-bar .top-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff8e30;
    display: inline-block;
    flex-shrink: 0;
}
.header .top-bar .top-phone {
    color: #4a4a4a;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
}
.header .top-bar .top-phone:hover { color: #ff8e30; }
/* RIGHT: hours + social icons */
.header .top-bar .top-right-content {
    display: flex;
    align-items: center;
    gap: 14px;
}
.header .top-bar .top-hours {
    color: #6a6a6a;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
}
.header .top-bar .top-social-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 6px;
    align-items: center;
}
.header .top-bar .top-social-list li a {
    color: #7d7d7d;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.12);
    width: 26px;
    height: 26px;
    background: #ffffff;
    transition: all .2s ease;
    font-size: 11px;
    text-decoration: none;
}
.header .top-bar .top-social-list li a:hover {
    background: #ff8e30;
    color: #ffffff;
    border-color: #ff8e30;
}

/* ── Top Bar Responsive ── */
/* Tablet (768–991px): hide email, keep phone + hours + social, smaller text */
@media (max-width: 991px) {
    .header .top-bar .top-email,
    .header .top-bar .top-dot {
        display: none !important;
    }
    .header .top-bar .top-phone {
        font-size: 14px;
    }
    .header .top-bar .top-hours {
        font-size: 14px;
    }
}
/* Mobile (< 768px): hide entire top bar */
@media (max-width: 767px) {
    .header .top-bar {
        display: none !important;
    }
}

/* ── Primary Header – shadow separates it from hero ── */

.header .primary-header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: 20px;
}

/* ── Budget Travels CSS Logo ── */
.bt-logo-wrap {
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.bt-logo-icon {
    width: 44px;
    height: 44px;
    background: #f28c1b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
}
.bt-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.bt-logo-brand {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.3px;
}
.bt-logo-tagline {
    font-size: 9px;
    font-weight: 600;
    color: #aaa;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 3px;
}

/* ── Desktop: absolute-center the nav so it's always at 50% regardless of logo/actions widths ── */
@media (min-width: 992px) {
    .header .primary-header-inner {
        position: relative !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding:15px 0px;
        gap: 0 !important;
    }
    /* Pill: on .mobile-menu-items (not .sub-menu) to avoid main.min.css conflict */
    .header .primary-header-inner .header-menu-wrap .mobile-menu-items {
        display: flex !important;
        align-items: center !important;
        padding: 5px !important;
    }
    /* Sub-menu: transparent inside pill */
    .header .primary-header-inner .header-menu-wrap .sub-menu {
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
    }
}

/* Mobile: hide desktop nav (meanmenu moves links to side drawer) */
@media (max-width: 991px) {
    .header .primary-header-inner .header-menu-wrap {
        display: none !important;
    }
}
/* Desktop: show nav centered */
@media (min-width: 992px) {
    .header .primary-header-inner .header-menu-wrap {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
}

/* ── Nav links – dark text (overrides white from main.min.css) ── */
.header .primary-header-inner .header-menu-wrap .sub-menu > li > a {
    color: #555 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    padding: 7px 10px !important;
    border-radius: 50px !important;
    transition: background 0.2s, color 0.2s !important;
}
.header .primary-header-inner .header-menu-wrap .sub-menu > li > a:hover {
    color: #1a1a1a !important;
}
.header .primary-header-inner .header-menu-wrap .sub-menu > li.active > a {
    color: #1a1a1a !important;
    font-weight: 600 !important;
}
/* Dropdown sub-items */
.header .primary-header-inner .header-menu-wrap .sub-menu li li a {
    color: #333 !important;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li a:hover {
    color: #fff !important;
}

/* ── Header Actions (desktop only) ── */
.header .primary-header-inner .header_actions {
    display: flex;
    align-items: center !important;
    gap: 14px !important;
    flex-shrink: 0;
}

/* Sign in link */
.header .header_actions .signin-link {
    color: #555 !important;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
    transition: color 0.2s;
    background: transparent !important;
}
.header .header_actions .signin-link:hover,
.header .primary-header-inner .header_actions a.signin-link:hover {
    color: #f28c1b !important;
    background: transparent !important;
    text-decoration: none !important;
}

/* Book Now button */
.header .header_actions .pxs-header-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px;
    background: #f28c1b !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 8px 8px 8px 20px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    height: auto !important;
    line-height: normal !important;
    white-space: nowrap;
    transition: background 0.3s;
}
.header .header_actions .pxs-header-btn img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}
.header .header_actions .pxs-header-btn:hover {
    background: #d97a0e !important;
    color: #ffffff !important;
}

/* Mobile header */
@media (max-width: 991px) {
    .header .primary-header {
        padding: 0;
    }
    .header .primary-header-inner {
        padding: 12px 0 !important;
        justify-content: space-between !important;
    }
    .header-right {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100%;
        gap: 12px;
    }
    .header-logo img,
    .header-right img { max-height: 44px !important; width: auto !important; }
    .mobile-side-menu-toggle {
        font-size: 24px !important;
        color: #1a1a1a !important;
        line-height: 1;
    }
}
/* Prevent logo.png from ever growing large regardless of viewport */
.header-right .header-logo img {
    max-height: 44px !important;
    width: auto !important;
    display: block;
}

/********* TRUST BADGES *********/
.trust-section {
    background: #fff;
    padding: 80px 0 60px;
}
.trust-bar {
    display: flex;
    align-items: center;
    border: 1.5px solid #ebebeb;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
}
.trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 26px;
}
.trust-divider {
    width: 1px;
    height: 56px;
    background: #ebebeb;
    flex-shrink: 0;
}
.trust-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: #fef0e6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trust-diamond {
    width: 15px;
    height: 15px;
    background: #f28c1b;
    display: block;
    transform: rotate(45deg);
    border-radius: 2px;
}
.trust-icon {
    font-size: 20px;
    color: #f28c1b;
    line-height: 1;
}
.trust-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.trust-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}
.trust-sub {
    font-size: 16px;
    color: #999;
    line-height: 1.4;
    font-weight: 400;
}
@media (max-width: 991px) {
    .trust-bar { flex-wrap: wrap; }
    .trust-divider { display: none; }
    .trust-item {
        flex: 0 0 50%;
        border-bottom: 1px solid #ebebeb;
    }
    .trust-item:nth-child(odd) { border-right: 1px solid #ebebeb; }
    .trust-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 575px) {
    .trust-item { flex: 0 0 100%; }
    .trust-item:nth-child(odd) { border-right: none; }
    .trust-item:last-child { border-bottom: none; }
}

/********* BANNER *********/
.hero-left .hero-thumb .counter-item {
    background-color: #faa61a;
}
.hero-bottom .hero-author-info {
    column-gap: 18px;
}

/********* Top Destinations *********/
.project-box:before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.01) 0%, #181818 80%);
}

/********* GATEWAY / TOP DESTINATIONS REDESIGN *********/
.gateway-section { overflow: hidden; background: #fff; }
.gateway-header { margin-bottom: 50px; }

.global-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff5ec;
    border: 1px solid #fad9b5;
    border-radius: 30px;
    padding: 9px 22px;
    font-size: 16px;
    font-weight: 600;
    color: #f28c1b;
    margin-bottom: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: max-content;
}

/* Shared section heading styles (used in hajj, testi, steps sections) */
.gateway-title {
    font-size: 40px;
    font-weight: 600;
    color: #3a3a3a;
    line-height: 1.2;
    margin-bottom: 4px;
}
.gateway-title span { color: #f28c1b; }
.gateway-title-2 {
    font-size: 40px;
    font-weight: 700;
    color: #f28c1b;
    line-height: 1.2;
    margin-bottom: 18px;
}
.gateway-subtitle { color: #999; font-size: 16px; line-height: 1.9; }

/* Gateway destinations top header row */
.gateway-top-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 16px;
}
.gateway-left-head { display: flex; flex-direction: column; }
.gateway-title-main {
    font-size: 40px;
    font-weight: 800;
    color: #111;
    line-height: 1.15;
    margin: 0;
}
.gateway-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1.5px solid #ddd;
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: border-color 0.25s, color 0.25s;
}
.gateway-view-all-btn:hover { border-color: #f28c1b; color: #f28c1b; }

/* Destination card grid */
.gateway-dest-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 16px;
    min-height: 540px;
}
.gateway-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: block;
    text-decoration: none;
}
.gateway-card--big { height: 100%; }
.gateway-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.gateway-card:hover img { transform: scale(1.06); }
.gateway-cards-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
}
.gateway-card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px 20px 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
}
.gateway-card-name {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 991px) {
    .gateway-dest-grid { grid-template-columns: 1fr; min-height: auto; }
    .gateway-card--big { height: 300px; }
    .gateway-cards-right { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 200px); }
    .gateway-top-row { flex-direction: column; align-items: flex-start; }
    .gateway-title-main { font-size: 28px; }
}
@media (max-width: 767px) {
    .gateway-title, .gateway-title-2 { font-size: 26px; }
    .gateway-cards-right { grid-template-rows: repeat(3, 160px); }
}
@media (max-width: 575px) {
    .gateway-cards-right { grid-template-columns: 1fr; grid-template-rows: auto; }
    .gateway-card--sm { height: 200px; }
}

/********* UMRAH PACKAGES *********/
.event-item .event-content-wrap .event-content .event-content-left .activity span:nth-child(1) {
    border-right: 0;
}

/********* PACKAGES LISTING & CONTINENT DESTINATIONS *********/
.pkg-listing-section {
    background: #f7f3ec;
    padding: 60px 0 80px;
}
.pkg-listing-grid-inner {
    align-content: start;
}
.cont-dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 991px) {
    .cont-dest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .cont-dest-grid { grid-template-columns: 1fr; }
}
/* City name overlay on destination card image */
.cont-card-city-label {
    position: absolute;
    bottom: 14px;
    left: 18px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.55);
    pointer-events: none;
}
.hajj-card-img {
    position: relative;
}
/* Continent card: price row + dual buttons */
.cont-card-price-row {
    margin-bottom: 14px;
}
.cont-card-btn-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.cont-discover-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #d0d0d0;
    color: #333;
    padding: 9px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    background: #fff;
    text-align: center;
}
.cont-discover-btn:hover {
    background: #1a2d5a;
    border-color: #1a2d5a;
    color: #fff;
    text-decoration: none;
}
.cont-book-btn {
    justify-content: center;
    background: #f28c1b;
    border-color: #f28c1b;
    color: #fff;
}
.cont-book-btn:hover {
    background: #d97a0e;
    border-color: #d97a0e;
    color: #fff;
}

/********* HAJJ & UMRAH REDESIGN *********/
.hajj-section {
    background: #f7f3ec !important;
    padding: 80px 0 !important;
}
.hajj-section .gateway-header {
    margin-bottom: 36px;
}

.hajj-main-title {
    font-size: 52px;
    font-weight: 800;
    color: #111;
    line-height: 1.15;
    margin: 0 0 14px;
    letter-spacing: -1px;
}
.hajj-main-sub {
    font-size: 16px;
    color: #888;
    line-height: 1.75;
    margin-bottom: 0;
}

/* 4-card horizontal row */
.hajj-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hj-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #eeebe6;
    transition: box-shadow 0.3s;
}
.hj-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.09); }

/* Card image */
.hj-card-img {
    position: relative;
    height: 190px;
    overflow: hidden;
    flex-shrink: 0;
}
.hj-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.hj-card:hover .hj-card-img img { transform: scale(1.05); }

/* Type badge */
.hj-type-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #f28c1b;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 999px;
    letter-spacing: 0.3px;
    text-transform: capitalize;
}

/* Heart button */
.hj-heart-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #e05a2b;
    font-size: 16px;
    padding: 0;
}

/* Card body */
.hj-card-body {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
}

/* Meta */
.hj-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    color: #999;
}

/* Title */
.hj-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.45;
    margin: 6px 0 0;
    flex: 1;
}
.hj-title a { color: inherit; text-decoration: none; }
.hj-title a:hover { color: #f28c1b; }

/* Footer */
.hj-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0ebe5;
}
.hj-price-wrap { display: flex; align-items: baseline; gap: 2px; }
.hj-from-label { font-size: 16px; color: #aaa; }
.hj-price { font-size: 22px; font-weight: 800; color: #1a1a1a; }
.hj-per { font-size: 16px; color: #aaa; }

.hj-book-btn {
    display: inline-flex;
    align-items: center;
    background: #f28c1b;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}
.hj-book-btn:hover { background: #e07a0e; color: #fff; }

@media (max-width: 1199px) {
    .hajj-cards-row { gap: 14px; }
    .hajj-main-title { font-size: 42px; }
}
@media (max-width: 991px) {
    .hajj-cards-row { grid-template-columns: repeat(2, 1fr); }
    .hajj-main-title { font-size: 34px; }
}
@media (max-width: 575px) {
    .hajj-cards-row { grid-template-columns: 1fr; }
    .hajj-main-title { font-size: 28px; }
}

/********* FLIGHTS *********/
.offer-item .offer-content .offer-title {
    font-weight: 700;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.5);
}

/********* SUBSCRIBE *********/
.bg-red2 {
    background-color: #fef6f6;
}

/********* HERO SECTION *********/

/* Hero section – dark photo slider background */
.hero-section {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: #111827;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08) 0, transparent 18%);
    pointer-events: none;
    z-index: 1;
}
/* Restore photo slider */
.hero-section .hero-slider {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    display: block !important;
}
.hero-section .hero-slider .swiper-slide {
    width: 100%;
    min-height: 720px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.85);
}
.hero-section .hero-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17,24,39,0.38) 0%, rgba(17,24,39,0.60) 100%);
    z-index: 3;
}
.hero-section .hero-overlay {
    position: relative;
    z-index: 4;
    padding: 100px 0 20px;
}
.hero-section.padding { padding: 0; }

/* Badge – white glass pill for dark photo bg */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    margin-bottom: 26px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.25);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}
.hero-badge::before { display: none; }

/* Title */
.hero-title {
    color: #ffffff !important;
    font-size: 64px;
    line-height: 1.0;
    font-weight: 800;
    letter-spacing: -1.5px;
    max-width: 620px;
}
.hero-title span { color: #ff8e30 !important; }

/* Description */
.hero-description {
    color: rgba(255,255,255,0.85) !important;
    max-width: 500px;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.8;
}

/* Buttons row */
.hero-btns {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: wrap;
}
.hero-book-btn {
    background: #f28c1b;
    color: #fff;
    border-radius: 999px;
    padding: 5px 5px 5px 24px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}
.hero-book-btn:hover { background: #d97b0e; color: #fff; text-decoration: none; }
.hero-book-btn img { width: 38px; height: 38px; border-radius: 50%; }

.hero-contact-btn {
    background: rgba(255,255,255,0.80);
    color: #1a1a1a;
    border: 1.5px solid rgba(0,0,0,0.18);
    border-radius: 999px;
    padding: 13px 26px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}
.hero-contact-btn:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
    text-decoration: none;
}

/* Bottom stats – transparent bg (removes red from main.min.css), white text for dark photo */
.hero-bottom {
    background: transparent !important;
    padding: 20px 0 30px;
    position: relative;
    z-index: 4;
}
.hero-bottom-row {
    display: flex;
    align-items: center;
    gap: 14px;
}
.hero-badge-dots {
    display: flex;
    align-items: center;
}
.hero-badge-dots span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2.5px solid rgba(255,255,255,0.5);
    flex-shrink: 0;
}
.hero-badge-dots span:nth-child(1) { background: #e8c9a4; }
.hero-badge-dots span:nth-child(2) { background: #cfa97a; margin-left: -10px; }
.hero-badge-dots span:nth-child(3) { background: #f28c1b; margin-left: -10px; }
.hero-bottom-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: rgba(255,255,255,0.85);
}
.hero-bottom-count {
    min-width: auto;
    height: auto;
    border-radius: 999px;
    background: rgba(255,255,255,0.18) !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 16px;
    padding: 5px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.3);
}
.hero-bottom-stars i { color: #ff8e30; font-size: 16px; }
.hero-bottom-text { color: rgba(255,255,255,0.8) !important; font-size: 16px; }

/* Form card */
.hero-section .hero-form { width: 100%; margin-left: auto; }
.hero-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
    border: none;
}
.hero-card-top h4 {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.2;
}
.hero-card-top h4 span { color: #f28c1b; }
.hero-card-top p {
    color: #6b7a8d;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 22px;
}
.hero-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.hero-card-field { display: flex; flex-direction: column; gap: 8px; }
.hero-card-field.full-width { grid-column: span 2; }
.field-label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #8a95a3;
}
.field-input-wrap { position: relative; }
.field-input-wrap .field-dot {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #f28c1b;
    flex-shrink: 0;
}
.field-input-wrap input,
.field-input-wrap select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px 12px 36px;
    border: 1.5px solid #eaecf0;
    border-radius: 14px;
    background: #fafbfc;
    color: #1a1a1a;
    font-size: 16px;
    transition: border-color 0.2s;
}
.field-input-wrap input:focus,
.field-input-wrap select:focus {
    border-color: #f28c1b;
    outline: none;
    background: #fff;
}
.field-input-wrap select { appearance: none; -webkit-appearance: none; }
.field-input-wrap textarea {
    width: 100%;
    min-height: 68px;
    padding: 12px 14px 12px 36px;
    border: 1.5px solid #eaecf0;
    border-radius: 14px;
    background: #fafbfc;
    color: #1a1a1a;
    font-size: 16px;
    transition: border-color 0.2s;
    resize: none;
    display: block;
}
.field-input-wrap textarea:focus {
    border-color: #f28c1b;
    outline: none;
    background: #fff;
}
.field-input-wrap--ta .field-dot { top: 16px; transform: none; }

/* Icon variant — replaces dot with Font Awesome icon */
.field-input-wrap .field-icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #f28c1b;
    pointer-events: none;
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    z-index: 9;
}
.field-input-wrap--ta .field-icon { top: 18px; transform: none; }

/* Cargo hero form — 6-col grid matching screenshot layout */
.cg-hero-form-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.cg-hero-form-grid .hero-card-field { display: flex; flex-direction: column; gap: 6px; }
.cg-hero-form-grid .cg-f2 { grid-column: span 2; }
.cg-hero-form-grid .cg-f3 { grid-column: span 3; }
.cg-hero-form-grid .cg-f6 { grid-column: span 6; }
@media (max-width: 991px) {
    .cg-hero-form-grid { grid-template-columns: repeat(2, 1fr); }
    .cg-hero-form-grid .cg-f2,
    .cg-hero-form-grid .cg-f3 { grid-column: span 1; }
    .cg-hero-form-grid .cg-f6 { grid-column: span 2; }
}
@media (max-width: 575px) {
    .cg-hero-form-grid { grid-template-columns: 1fr; }
    .cg-hero-form-grid .cg-f2,
    .cg-hero-form-grid .cg-f3,
    .cg-hero-form-grid .cg-f6 { grid-column: span 1; }
}
.select-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    pointer-events: none;
}
.input-right-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #aab0ba;
    font-size: 16px;
}
.hero-card-submit {
    width: 100%;
    margin-top: 20px;
    padding: 16px 0;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    background: #f28c1b;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.25s;
    letter-spacing: 0.02em;
}
.hero-card-submit:hover { background: #d97b0e; }

/* Swiper prev/next arrows — hidden */
.hero-section .swiper-button-prev,
.hero-section .swiper-button-next { display: none !important; }

/* No-image fallback slide — just shows the dark hero background */
.hero-section .swiper-slide.hero-slide-no-image {
    background-image: none !important;
    background: transparent !important;
}

/* Swiper pagination dots — show at bottom of hero */
.hero-section .swiper-pagination {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: absolute !important;
    bottom: 28px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 5;
    width: auto !important;
}
.hero-section .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 !important;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}
.hero-section .swiper-pagination .swiper-pagination-bullet-active {
    background: #f28c1b;
    width: 24px;
    border-radius: 4px;
}
.nice-select {
    border-radius: 12px;
    background: #fafbfc;
    font-size: 16px;
    height: 48px;
    line-height: 35px;
    user-select: none;
    width: 100%;
}
/* Responsive */
@media (max-width: 1199px) {
    .hero-title { font-size: 52px; }
    .hero-section .hero-overlay { padding: 120px 0 50px; }
}
@media (max-width: 991px) {
    .hero-section { min-height: auto; background: #f3ebe0 !important; }
    .hero-section .hero-overlay { padding: 100px 0 40px; }
    .hero-title { font-size: 44px !important; }
    .hero-card { padding: 26px; margin-top: 30px; }
    .hero-card-grid { gap: 12px; }
}
@media (max-width: 767px) {
    .hero-section .hero-overlay { padding: 80px 0 30px; }
    .hero-title { font-size: 36px !important; }
    .hero-description { font-size: 15px; max-width: 100%; }
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .hero-card-grid { grid-template-columns: 1fr; }
    .hero-card-field.full-width { grid-column: span 1; }
    .hero-card { padding: 22px; }
}
@media (max-width: 575px) {
    .hero-section .hero-overlay { padding: 70px 0 24px; }
    .hero-title { font-size: 30px !important; }
    .hero-card-top h4 { font-size: 22px; }
}

/********* HERO FORM LABELS *********/
.hero-box label.box-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
    cursor: pointer;
}
@media (max-width: 767px) {
    .hero-box label.box-title { font-size: 12px; }
}

/********* HERO FORM INPUT ICONS *********/
.input-icon-wrap {
    position: relative;
}
.input-icon-wrap .input-right-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    pointer-events: none;
    font-size: 16px;
}
.input-icon-wrap .select-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    pointer-events: none;
}
.input-icon-wrap select.form-control {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 36px;
}

/********* CLIENT STORIES / TESTIMONIAL REDESIGN *********/
/********* TESTIMONIALS REDESIGN *********/
.testi-new-section {
    background: #fff;
    padding: 80px 0 !important;
    position: relative;
    overflow: hidden;
}
.testi-new-section .gateway-header { margin-bottom: 44px; }

/* Large decorative quote mark top-left */
.testi-deco-quote {
    position: absolute;
    top: 30px;
    left: 20px;
    font-size: 160px;
    font-weight: 900;
    color: #fae8dc;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    font-family: Georgia, serif;
}

.testi-main-title {
    font-size: 52px;
    font-weight: 800;
    color: #111;
    line-height: 1.12;
    margin: 0;
    letter-spacing: -1.5px;
    position: relative;
    z-index: 1;
}

/* 3-card row */
.testi-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.testi-card {
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid #eeebe6;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Stars */
.testi-stars { display: flex; gap: 3px; }
.testi-stars i { color: #f28c1b; font-size: 16px; }

/* Quote */
.testi-quote {
    font-size: 16px;
    color: #333;
    line-height: 1.78;
    margin: 0;
    flex: 1;
}

/* Author row */
.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid #f0ebe5;
    margin-top: 4px;
}
.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fef0e6;
    border: 1px solid #fad9b5;
    color: #f28c1b;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testi-author-name {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

@media (max-width: 991px) {
    .testi-cards-row { grid-template-columns: 1fr; gap: 16px; }
    .testi-main-title { font-size: 36px; }
}
@media (max-width: 575px) {
    .testi-main-title { font-size: 28px; }
    .testi-deco-quote { font-size: 100px; }
}

/********* SIMPLE STEPS SECTION *********/
/********* STEPS SECTION REDESIGN *********/
.steps-section {
    background: #f7f3ec url('../img/nextdestination.png') center center / cover no-repeat;
    padding: 80px 0 !important;
    position: relative;
}
.steps-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(247, 243, 236, 0.82);
    pointer-events: none;
    z-index: 0;
}
.steps-section .container { position: relative; z-index: 1; }
.steps-section .gateway-header { margin-bottom: 40px; }

.steps-main-title {
    font-size: 52px;
    font-weight: 800;
    color: #111;
    line-height: 1.1;
    margin: 0 0 14px;
    letter-spacing: -1.5px;
}
.steps-main-sub {
    font-size: 16px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 0;
}

/* 4-card row */
.steps-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eeebe6;
    padding: 24px 22px 26px;
    transition: box-shadow 0.25s;
}
.step-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.07); }

.step-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.step-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fef0e6;
    border: 1px solid #fad9b5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f28c1b;
    font-size: 18px;
    flex-shrink: 0;
}

.step-num-bg {
    font-size: 44px;
    font-weight: 900;
    color: #ede9e3;
    line-height: 1;
    letter-spacing: -2px;
}

.step-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin: 0 0 10px;
    line-height: 1.3;
}

.step-card-desc {
    font-size: 16px;
    color: #888;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1199px) {
    .steps-main-title { font-size: 42px; }
    .steps-cards-row { gap: 14px; }
}
@media (max-width: 991px) {
    .steps-cards-row { grid-template-columns: repeat(2, 1fr); }
    .steps-main-title { font-size: 34px; }
}
@media (max-width: 575px) {
    .steps-cards-row { grid-template-columns: 1fr; }
    .steps-main-title { font-size: 28px; }
}

/********* CTA BANNER SECTION *********/
.cta-banner-section { padding: 0 0 80px; }

.cta-banner {
    background: #f07020;
    border-radius: 24px;
    padding: 56px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    overflow: hidden;
}

/* Decorative dot grid */
.cta-dot-grid {
    position: absolute;
    width: 130px;
    height: 130px;
    background-image: radial-gradient(circle, rgba(255,255,255,0.25) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    pointer-events: none;
    z-index: 0;
}
.cta-dot-tl { top: 16px; left: 16px; }
.cta-dot-bl { bottom: 16px; left: 40%; width: 160px; height: 80px; }

/* Floating accent dots */
.cta-dot {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.cta-dot-1 { width: 10px; height: 10px; background: rgba(255,255,255,0.35); top: 38%; right: 38%; }
.cta-dot-2 { width: 6px;  height: 6px;  background: rgba(255,255,255,0.3);  bottom: 28%; right: 42%; }

/* Left text */
.cta-left {
    flex: 1;
    position: relative;
    z-index: 1;
}
.cta-title {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 18px;
    letter-spacing: -1px;
}
.cta-subtitle {
    color: rgba(255,255,255,0.82);
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 28px;
    max-width: 480px;
}
.bt-logo-wrap img.img-fluid {
    width: 140px;
}
.nf-logo-wrap img.img-fluid {
    width: 180px;
}
/* Right: card + button */
.cta-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.cta-img-card {
    width: 340px;
    height: 220px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background: #f5ede0;
}
.cta-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cta-img-label {
    position: absolute;
    bottom: 12px;
    left: 14px;
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    letter-spacing: 0.3px;
}
.cta-img-plane {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f07020;
    font-size: 16px;
}
.cta-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
}
.cta-main-btn:hover {
    background: #f7f3ec;
    color: #1a1a1a;
    text-decoration: none;
    transform: translateY(-1px);
}

@media (max-width: 991px) {
    .cta-banner { flex-direction: column; align-items: flex-start; padding: 44px 36px; }
    .cta-right { align-items: flex-start; }
    .cta-title { font-size: 34px; }
}
@media (max-width: 575px) {
    .cta-banner { padding: 36px 24px; border-radius: 18px; }
    .cta-title { font-size: 28px; }
    .cta-img-card { width: 100%; }
}

/********* NEW FOOTER *********/
.new-footer {
    background: #f7f3ec;
    padding-top: 64px;
}
.new-footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    gap: 36px;
    padding-bottom: 52px;
}

/* Logo in footer */
.nf-logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 18px;
}
.nf-logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f28c1b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}
.nf-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.nf-logo-brand {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.3px;
}
.nf-logo-tagline {
    font-size: 10px;
    font-weight: 700;
    color: #f28c1b;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.nf-heading {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}
.nf-desc {
    font-size: 16px;
    color: #888;
    line-height: 1.85;
    margin: 0;
}
.nf-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.nf-links li a {
    font-size: 16px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}
.nf-links li a:hover {
    color: #f28c1b;
}
.nf-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.nf-contact-list li,
.nf-contact-list li a {
    font-size: 16px;
    color: #666;
    text-decoration: none;
    line-height: 1.55;
    transition: color 0.2s;
}
.nf-contact-list li a:hover {
    color: #f28c1b;
}

/* Social pills (f / IG / X) */
.nf-social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
}
.nf-social-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1.5px solid #d8d0c7;
    font-size: 16px;
    font-weight: 700;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
    background: transparent;
}
.nf-social-pill:hover {
    border-color: #f28c1b;
    color: #f28c1b;
    background: #fff5ec;
}

/* Newsletter */
.nf-newsletter-desc {
    font-size: 16px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 18px;
}
.nf-subscribe-form {
    margin-bottom: 0;
}
.nf-subscribe-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid #d8d0c7;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}
.nf-subscribe-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 14px;
    font-size: 16px;
    color: #333;
    background: transparent;
}
.nf-subscribe-input::placeholder {
    color: #bbb;
}
.nf-subscribe-btn {
    background: #f28c1b;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}
.nf-subscribe-btn:hover {
    background: #d97a10;
}

.new-footer-bottom {
    border-top: 1px solid #e8e3db;
    padding: 20px 0;
    text-align: center;
    font-size: 16px;
    color: #aaa;
}
.nf-privacy-note {
    font-size: 13px;
    color: #aab;
    margin-top: 10px;
}
@media (max-width: 1199px) {
    .new-footer-top {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
    }
}
@media (max-width: 991px) {
    .new-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}
@media (max-width: 575px) {
    .new-footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/********* OLD FOOTER (kept for reference) *********/
.footer-section {
    padding-top: 0;
}
footer span.ftr-adrs {
    font-size: 18px;
    color: #FFF;
    font-weight: 600;
    padding-left: 10px;
}
.widget-item .widget-header:before,
.widget-item .widget-header:after {
    background-color: #faa61a;
}
.widget-item.item-2 {
    margin-left: 0;
}
.footer-section:before {
    background-color: #ed1c24;
}

/* Pre Loader */
.preloader {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: white;
    transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .preloader__wrap {
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 72px;
    border-radius: 30px;
    background-color: white;
    box-shadow: 0px 2px 24px 0px #00000014;
    animation-name: preloaderWraper;
    animation-iteration-count: infinite;
    animation-duration: 1.8s;
    animation-timing-function: ease;
  }
  
  .preloader__icon {
    position: absolute;
    animation-name: preloader;
    animation-iteration-count: infinite;
    animation-duration: 1.8s;
    animation-timing-function: ease;
  }
  
  .preloader__title {
    font-size: 47px;
    font-weight: 600;
    line-height: 68px;
    letter-spacing: 0em;
    margin-top: 16px;
  }
  
  .preloader.-is-hidden {
    opacity: 0;
    pointer-events: none;
  }
  
  @keyframes preloaderWraper {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: none;
    }
  }
  
  @keyframes preloader {
    0% {
      transform: translateY(150%) scale(1);
    }
    50% {
      transform: translateY(0%) scale(1.2) rotate(20deg);
    }
    100% {
      transform: translateY(-150%) rotate(-20deg);
    }
  }

/********* ABOUT US PAGE *********/
.au-hero-section { padding-top: 50px; }
.au-hero-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}
.au-badge {
    display: inline-block;
    color: #f28c1b;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.au-hero-title {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    max-width: 700px;
    margin: 0;
}
.au-hero-arrow {
    width: 54px;
    height: 54px;
    border: 1.5px solid #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #555;
    font-size: 20px;
    margin-top: 4px;
}
.au-hero-divider {
    border: none;
    border-top: 1px solid #e8e8e8;
}

/* About 2-col */
.au-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}
.au-about-img-wrap img {
    width: 100%;
    border-radius: 16px;
    display: block;
}
.au-about-heading {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.5;
    margin-bottom: 16px;
}
.au-about-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.75;
    margin-bottom: 24px;
}
.au-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f28c1b;
    color: #fff;
    padding: 11px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 30px;
    transition: background 0.3s;
}
.au-about-btn:hover { background: #d97a0e; color: #fff; text-decoration: none; }
.au-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.au-stat-box {
    border-radius: 14px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.au-stat-box i { font-size: 24px; margin-bottom: 4px; }
.au-stat-purple { background: #f0eeff; }
.au-stat-purple i { color: #7c5cbf; }
.au-stat-green { background: #edfbf3; }
.au-stat-green i { color: #2eaa5e; }
.au-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1;
}
.au-stat-label {
    font-size: 13px;
    color: #777;
    margin: 0;
}

/* Services */
.au-services-section { background: #fff; }
.au-services-title {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 48px;
}
.au-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: #fff;
}
.au-service-item {
    padding: 40px 36px 40px;
    border-left: 1px solid #e8e8e8;
}
.au-service-item:first-child { border-left: none; }
.au-service-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fef9e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}
.au-service-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.au-service-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}
.au-service-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 991px) {
    .au-about-grid { grid-template-columns: 1fr; gap: 36px; }
    .au-services-grid { grid-template-columns: 1fr; }
    .au-service-item { border-left: none; border-top: 1px solid #e8e8e8; }
    .au-service-item:first-child { border-top: none; }
}
@media (max-width: 767px) {
    .au-hero-title { font-size: 26px; }
    .au-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== CONTACT US PAGE ===== */
.cu-section { background: #fff; }
.cu-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 70px;
    align-items: start;
}

/* Left Info */
.cu-info-title {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 44px;
}
.cu-info-block {
    margin-bottom: 32px;
}
.cu-info-label {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: underline;
    text-decoration-color: #f28c1b;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    display: inline-block;
    margin-bottom: 12px;
}
.cu-info-text {
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.7;
}
.cu-info-text a {
    color: #555;
    text-decoration: none;
}
.cu-info-text a:hover { color: #f28c1b; }
.cu-info-phone {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px;
}
.cu-info-phone a {
    color: #1a1a1a;
    text-decoration: none;
}
.cu-info-phone a:hover { color: #f28c1b; }
.cu-info-hours {
    font-size: 13px;
    color: #888;
    margin: 0;
    font-style: italic;
}

/* Right Form Card */
.cu-form-card {
    background: #f4f4f4;
    border-radius: 16px;
    padding: 44px 40px;
}
.cu-form-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}
.cu-form { display: flex; flex-direction: column; gap: 18px; }
.cu-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.cu-form-group { display: flex; flex-direction: column; }
.cu-input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    background: #fff;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.cu-input:focus { border-color: #f28c1b; }
.cu-input::placeholder { color: #bbb; }
.cu-textarea {
    border-radius: 14px;
    resize: vertical;
    min-height: 140px;
}
.cu-submit-btn {
    width: 100%;
    padding: 17px;
    background: #1a5276;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 6px;
}
.cu-submit-btn:hover { background: #f28c1b; }

@media (max-width: 991px) {
    .cu-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 575px) {
    .cu-form-row { grid-template-columns: 1fr; }
    .cu-form-card { padding: 28px 20px; }
    .cu-info-title { font-size: 26px; }
}

/* ===== DESTINATION DETAIL PAGE ===== */
.dest-detail-section { background: #fff; }

/* Hero image */
.dest-detail-img {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    max-height: 520px;
}
.dest-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* Title & desc */
.dest-detail-body { margin-bottom: 52px; }
.dest-detail-title {
    font-family: "Urbanist", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.25;
}
.dest-detail-desc {
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.85;
}
.dest-detail-desc p { margin-bottom: 14px; }
.dest-detail-desc h2,
.dest-detail-desc h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 28px 0 12px;
}

/* Routes section */
.dest-routes-heading {
    font-family: "Urbanist", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}
.dest-routes-list { display: flex; flex-direction: column; gap: 14px; }

/* Flight card */
.flt-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.flt-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.09); }

.flt-card-main {
    display: grid;
    grid-template-columns: 110px auto 1fr auto auto;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
}

/* Airline */
.flt-airline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.flt-airline img {
    width: 56px;
    height: 40px;
    object-fit: contain;
}
.flt-airline span {
    font-family: "Urbanist", sans-serif;
    font-size: 12px;
    color: #888;
    text-align: center;
}

/* Endpoint (depart / arrive) */
.flt-endpoint {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.flt-endpoint-right { text-align: right; align-items: flex-end; }
.flt-city {
    font-family: "Urbanist", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.flt-city-code {
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #f28c1b;
}

/* Middle: line only */
.flt-middle {
    display: flex;
    align-items: center;
}
.flt-line {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 0;
}
.flt-line-bar {
    flex: 1;
    height: 1px;
    background: #ccc;
}
.flt-line i {
    font-size: 17px;
    color: #1a1a1a;
    margin: 0 4px;
}

/* Price column */
.flt-price-col {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
}
.flt-price {
    font-family: "Urbanist", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}
.flt-book-btn {
    display: inline-block;
    background: #f28c1b;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}
.flt-book-btn:hover { background: #0d1e3d; color: #fff; }

/* Footer strip */
.flt-card-footer {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 10px 24px;
    background: #fdf5ec;
    border-top: 1px solid #f0e6d6;
}
.flt-details-link {
    font-family: "Urbanist", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}
.flt-details-link:hover { color: #f28c1b; }
.flt-details-link i { font-size: 10px; }
.flt-refund {
    font-family: "Urbanist", sans-serif;
    font-size: 13px;
    color: #888;
}

/* No flights */
.dest-no-flights {
    text-align: center;
    padding: 60px 30px;
    background: #f9f9f9;
    border-radius: 16px;
    border: 1px solid #eee;
    max-width: 560px;
    margin: 0 auto;
}
.dest-no-flights > i.fa-plane-slash {
    font-size: 52px;
    color: #ccc;
    margin-bottom: 18px;
    display: block;
}
.dest-no-flights h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}
.dest-no-flights p {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 28px;
}
.nf-query-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f28c1b;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.nf-query-btn i {
    font-size: 14px;
    line-height: 1;
}
.nf-query-btn:hover {
    background: #d97a0f;
    color: #fff;
    text-decoration: none;
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1100px) {
    .flt-card-main { grid-template-columns: 90px auto 1fr auto auto; gap: 14px; }
}
@media (max-width: 991px) {
    .flt-card-main { grid-template-columns: 80px 1fr auto; gap: 12px 16px; }
    .flt-middle { grid-row: 2; grid-column: 2 / 4; }
    .flt-endpoint-right { grid-column: 3; }
    .flt-price-col { grid-column: 1 / -1; justify-content: flex-end; padding-top: 4px; }
}
@media (max-width: 575px) {
    .dest-detail-title { font-size: 26px; }
    .dest-detail-img { border-radius: 12px; }
    .flt-card-main { grid-template-columns: 1fr 1fr; gap: 12px; padding: 14px 16px; }
    .flt-airline { grid-column: 1 / -1; flex-direction: row; gap: 10px; }
    .flt-middle { grid-column: 1 / -1; }
    .flt-price-col { grid-column: 1 / -1; justify-content: space-between; }
}

/* ===== FLIGHT BOOKING PAGE ===== */
.bk-section { background: #f7f7f7; }
.bk-wrap { max-width: 860px; margin: 0 auto; }

.bk-heading {
    text-align: center;
    margin-bottom: 36px;
}
.bk-title {
    font-family: "Urbanist", sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}
.bk-subtitle {
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    color: #888;
    margin: 0;
}

.bk-card {
    background: #fff;
    border-radius: 16px;
    padding: 44px 40px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.07);
}

.bk-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bk-form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.bk-full-width { grid-column: 1 / -1; }
.bk-hidden-sm { display: block; }

.bk-label {
    font-family: "Urbanist", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}
.bk-optional {
    font-weight: 400;
    color: #aaa;
    font-size: 12px;
}

.bk-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e5e5e5;
    border-radius: 50px;
    background: #f7f7f7;
    font-family: "Urbanist", sans-serif;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
}
.bk-input:focus {
    border-color: #f28c1b;
    background: #fff;
}
.bk-input::placeholder { color: #bbb; }
.bk-input[readonly] {
    background: #f0f0f0;
    color: #555;
    cursor: default;
}
.bk-textarea {
    border-radius: 14px;
    resize: vertical;
    min-height: 110px;
}

.bk-submit-wrap {
    margin-top: 28px;
    text-align: center;
}
.bk-submit-btn {
    display: inline-block;
    background: #f28c1b;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 16px 52px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s;
}
.bk-submit-btn:hover { background: #e07a0e; }
.bk-submit-full { width: 100%; display: block; text-align: center; border-radius: 8px; }

@media (max-width: 767px) {
    .bk-card { padding: 28px 20px; }
    .bk-form-grid { grid-template-columns: 1fr; }
    .bk-hidden-sm { display: none; }
    .bk-title { font-size: 26px; }
}

/* ========== POPULAR TOURS SECTION ========== */
/********* MOST POPULAR TOURS REDESIGN *********/
.popular-tours-section {
    background: #ffffff;
    padding: 80px 0 !important;
}
.popular-tours-section .gateway-header { margin-bottom: 40px; }

.pt-main-title {
    font-size: 52px;
    font-weight: 800;
    color: #111;
    line-height: 1.15;
    margin: 0 0 14px;
    letter-spacing: -1px;
}
.pt-main-sub {
    font-size: 16px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Swiper container */
.pt-swiper { width: 100%; overflow: hidden; }
.pt-swiper .swiper-wrapper { display: flex; align-items: stretch; }
.pt-swiper .swiper-slide {
    box-sizing: border-box;
    flex-shrink: 0;
    height: auto;
}
.pt-swiper-pagination {
    text-align: center;
    margin-top: 28px;
    position: relative !important;
    bottom: auto !important;
}
.pt-swiper-pagination .swiper-pagination-bullet {
    width: 8px; height: 8px;
    background: #ccc; opacity: 1;
    display: inline-block; border-radius: 50%; margin: 0 4px; cursor: pointer;
}
.pt-swiper-pagination .swiper-pagination-bullet-active { background: #f28c1b; }

/* Card */
.pt-card-new {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8e3dc;
    overflow: hidden;
}

/* Card header */
.pt-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 22px 16px;
    border-bottom: 1px solid #ede9e3;
}
.pt-card-sub {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #f28c1b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}
.pt-card-dest {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin: 0;
    line-height: 1;
}
.pt-card-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff5ec;
    border: 1px solid #fad9b5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f28c1b;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Flight rows */
.pt-card-rows { padding: 4px 0; }

.pt-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 22px;
    text-decoration: none;
    border-bottom: 1px solid #f2ede7;
    transition: background 0.2s;
}
.pt-row:last-child { border-bottom: none; }
.pt-row:hover { background: #faf7f2; text-decoration: none; }

.pt-row-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 38px;
    background: #f0ece6;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    color: #777;
    letter-spacing: 0.6px;
    flex-shrink: 0;
    padding: 0 8px;
}
.pt-row-dest {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
}
.pt-row-price {
    font-size: 16px;
    font-weight: 700;
    color: #f28c1b;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

@media (max-width: 991px) {
    .pt-grid { grid-template-columns: 1fr; gap: 16px; }
    .pt-main-title { font-size: 36px; }
}
@media (max-width: 575px) {
    .pt-main-title { font-size: 28px; }
}

/* ========== AVAILABLE FLIGHTS (routes page) ========== */
.af-section {
    padding: 36px 0 60px;
    background: #fff;
}
.af-heading {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

/* Card */
.af-card {
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    margin-bottom: 14px;
    background: #fff;
    overflow: hidden;
}
.af-card__main {
    display: flex;
    align-items: stretch;
}

/* Logo column */
.af-logo-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 160px;
    max-width: 160px;
    padding: 18px 16px;
    background: #f9f9f9;
    border-right: 1px solid #ececec;
    flex-shrink: 0;
}
.af-logo-img {
    width: 110px;
    height: 64px;
    object-fit: contain;
    display: block;
}
.af-logo-name {
    font-size: 11px;
    color: #888;
    text-align: center;
    line-height: 1.3;
    font-weight: 500;
}

/* Route column */
.af-route-col {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 22px 30px;
    min-width: 0;
}
.af-route-row {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 0;
}

/* City name + code inline */
.af-city {
    flex-shrink: 0;
    white-space: nowrap;
}
.af-city__name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: 0.3px;
}
.af-city__code {
    font-size: 15px;
    font-weight: 600;
    color: #f28c1b;
}

/* Flight line */
.af-flight-line {
    flex: 1;
    display: flex;
    align-items: center;
    margin: 0 12px;
    min-width: 40px;
}
.af-line {
    flex: 1;
    height: 1px;
    background: #c8c8c8;
    display: block;
}
.af-plane-icon {
    width: 22px;
    height: 22px;
    color: #444;
    flex-shrink: 0;
    margin: 0 4px;
    display: block;
}

/* Price column */
.af-price-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    flex-shrink: 0;
    padding: 20px 24px;
    min-width: 190px;
}
.af-price {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1;
    display: block;
}
.af-book-btn {
    display: inline-block;
    background: #f28c1b;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 30px;
    text-decoration: none !important;
    transition: background 0.2s;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}
.af-book-btn:hover { background: #d97a0f; color: #fff !important; }

/* Flight Details toggle — full width */
.af-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #777;
    cursor: pointer;
    background: #fdf5ea;
    border-top: 1px solid #f0e5d0;
    user-select: none;
    box-sizing: border-box;
}
.af-toggle:hover { color: #f28c1b; }
.af-arr {
    font-size: 18px;
    line-height: 1;
    display: inline-block;
    transition: transform 0.2s;
}

/* Details panel */
.af-details {
    padding: 16px 24px;
    background: #fdf5ea;
    border-top: 1px solid #f0e5d0;
}
.af-details__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.af-dl {
    display: block;
    font-size: 11px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}
.af-dv {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

/* Empty state */
.af-empty { text-align: center; padding: 50px 20px; }
.af-empty h4 { color: #333; margin-bottom: 10px; }

/* Responsive */
@media (max-width: 991px) {
    .af-logo-col { min-width: 120px; max-width: 120px; }
    .af-price-col { min-width: 160px; padding: 16px; }
    .af-price { font-size: 20px; }
    .af-route-col { padding: 18px 16px; }
}
@media (max-width: 767px) {
    .af-card__main { flex-wrap: wrap; }
    .af-logo-col {
        min-width: 100%;
        max-width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        border-right: none;
        border-bottom: 1px solid #ececec;
        padding: 12px 16px;
        background: #f9f9f9;
    }
    .af-logo-img { width: 70px; height: 42px; }
    .af-route-col { width: 100%; padding: 16px; }
    .af-city__name, .af-city__code { font-size: 13px; }
    .af-price-col {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        min-width: unset;
        border-top: 1px solid #ececec;
        padding: 14px 16px;
    }
}

/* ================================================
   GLOBAL RESPONSIVE FIXES
   ================================================ */

/* Mobile Contact Us button (sits next to hamburger) */
.mobile-contact-btn {
    display: inline-flex;
    align-items: center;
    background: #f28c1b;
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background 0.2s;
    line-height: 1;
}
.mobile-contact-btn:hover { background: #d97a0e; }

/* Header mobile */
@media (max-width: 991px) {
    .header { padding: 10px 0; }
    .primary-header-inner { min-height: 60px; }
    .header-logo img { max-height: 42px; width: auto; }
}
@media (max-width: 375px) {
    .mobile-contact-btn { font-size: 11px; padding: 7px 12px; }
}

/* Hero section */
@media (max-width: 991px) {
    .hero-section.padding { padding: 30px 0 30px; }
    .hero-title { font-size: 44px !important; line-height: 1.15; }
    .hero-btns { margin-top: 20px; gap: 12px; }
    .hero-content { margin-bottom: 28px; }
    .hero-form { margin-top: 0; }
}
@media (max-width: 767px) {
    .hero-section.padding { padding: 20px 0 20px; }
    .hero-title { font-size: 40px !important; line-height: 1.2; }
    h2 { font-size: 24px !important; }
    .hero-contact-btn, .hero-book-btn { font-size: 13px; padding: 10px 20px; }
    .hero-book-btn img { width: 28px; }
    .hero-btns { gap: 10px; margin-top: 14px; }
}
@media (max-width: 575px) {
    .hero-section.padding { padding: 14px 0 16px; }
    .hero-title { font-size: 34px !important; line-height: 1.2; }
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .hero-contact-btn, .hero-book-btn { width: 100%; justify-content: center; text-align: center; }
}

/* Hero form box */
@media (max-width: 991px) {
    .hero-box { padding: 24px 20px; }
    .hero-box h4 { font-size: 18px; }
}
@media (max-width: 767px) {
    .hero-box { padding: 20px 16px; border-radius: 10px; }
    .hero-box h4 { font-size: 16px; }
    .hero-box p { font-size: 13px; }
    .box-item { margin-bottom: 12px; }
    .box-title { font-size: 13px !important; }
}

/* Popular Tours */
@media (max-width: 991px) {
    .popular-tours-section .section-title__title { font-size: 28px; }
}

/* Hajj/Umrah packages section */
@media (max-width: 767px) {
    .hajj-section { padding: 40px 0; }
    .hajj-card { margin-bottom: 20px; }
}

/* Gateway/Destinations section */
@media (max-width: 767px) {
    .gateway-header { margin-bottom: 30px; }
    .gateway-title, .gateway-title-2 { font-size: 24px; }
    .gateway-subtitle { font-size: 13px; }
}

/* Testimonials */
@media (max-width: 767px) {
    .testi-new-section { padding: 40px 0; }
}

/* Mobile side menu — style only the nav links inside it */
.side-menu-wrap ul {
    list-style: none;
    padding: 0 20px;
    margin: 0;
}
.side-menu-wrap ul li a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
}
.side-menu-wrap ul li a:hover { color: #f28c1b; }

/* Available flights responsive */
@media (max-width: 575px) {
    .af-route-col { padding: 14px 12px; }
    .af-city__name { font-size: 12px; }
    .af-city__code { font-size: 12px; }
    .af-price { font-size: 18px; }
    .af-book-btn { font-size: 13px; padding: 8px 18px; }
    .af-logo-col { padding: 10px 12px; }
    .af-logo-img { width: 60px; height: 36px; }
    .af-heading { font-size: 18px; }
}

/* Section padding fix on mobile */
@media (max-width: 767px) {
    .container { padding-left: 16px; padding-right: 16px; }
    section { overflow-x: hidden; }
}

/* ===================================================
   INNER PAGES — THEME OVERRIDES
   =================================================== */

/* ── Listing card (continents / destinations / packages) ── */
.hajj-card {
    background: #fff !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    border: 1px solid #eeebe6 !important;
    box-shadow: none !important;
    transition: box-shadow 0.3s !important;
}
.hajj-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.09) !important; }

.hajj-card-img {
    height: 220px !important;
    overflow: hidden !important;
    position: relative !important;
}
.hajj-card-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.4s ease !important;
}
.hajj-card:hover .hajj-card-img img { transform: scale(1.05) !important; }

.hajj-card-body {
    padding: 20px 20px 22px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    flex: 1 !important;
    background: #fff !important;
}

.hajj-card-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    line-height: 1.4 !important;
    margin: 0 0 4px !important;
}
.hajj-card-title a {
    color: inherit !important;
    text-decoration: none !important;
}
.hajj-card-title a:hover { color: #f28c1b !important; }

.hajj-card-meta {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 14px !important;
    color: #999 !important;
    margin-bottom: 4px !important;
}
.hajj-from, .hajj-days { font-size: 14px !important; color: #999 !important; }

.hajj-card-footer {
    border-top: 1px solid #f0ebe5 !important;
    padding-top: 14px !important;
    margin-top: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: transparent !important;
}

.hajj-price {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    line-height: 1 !important;
}
.hajj-price span {
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #aaa !important;
    margin-left: 2px !important;
}

.hajj-book-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: #f28c1b !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 9px 18px !important;
    border-radius: 999px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: background 0.2s !important;
    border: none !important;
}
.hajj-book-btn:hover { background: #e07a0e !important; color: #fff !important; }

/* ── Booking / General Query Form ── */
.customer-information {
    padding: 60px 0 80px;
}
.customer-information .contact-form { max-width: 860px; margin: 0 auto; }
.customer-information .pxs-contact-form {
    background: #fff;
    border-radius: 20px;
    padding: 44px 48px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.07);
}
.customer-information .form-group { margin-bottom: 18px; }
.customer-information .form-control {
    width: 100%;
    padding: 13px 20px !important;
    border: 1.5px solid #e8e3db !important;
    border-radius: 50px !important;
    background: #fafafa !important;
    font-size: 16px !important;
    color: #333 !important;
    outline: none !important;
    box-shadow: none !important;
    height: auto !important;
    transition: border-color 0.2s !important;
    line-height: 1.5 !important;
}
.customer-information .form-control:focus {
    border-color: #f28c1b !important;
    background: #fff !important;
    box-shadow: none !important;
}
.customer-information textarea.form-control,
.customer-information .form-control.address {
    border-radius: 16px !important;
    resize: vertical;
    min-height: 130px;
}
.customer-information .form-floating .form-control {
    padding-top: 22px !important;
    padding-bottom: 8px !important;
}
.customer-information .form-floating label {
    padding: 14px 20px;
    color: #aaa;
    font-size: 14px;
}
.customer-information .pxs-primary-btn {
    background: #f28c1b !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 15px 52px !important;
    border: none !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    margin-top: 12px;
    display: inline-block;
}
.customer-information .pxs-primary-btn:hover { background: #d97a0e !important; }
@media (max-width: 767px) {
    .customer-information .pxs-contact-form { padding: 28px 20px; }
    .customer-information .pxs-primary-btn { width: 100% !important; }
}

/* ── Terms & Conditions ── */
.privacy-section {
    background: #fff;
    padding: 60px 0 80px;
}
.privacy-content-wrap { max-width: 900px; margin: 0 auto; }
.privacy-top { margin-bottom: 48px; }
.privacy-header {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 14px;
}
.privacy-top > p {
    font-size: 16px;
    color: #777;
    line-height: 1.8;
}
.privacy-item { margin-bottom: 32px; }
.privacy-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 10px !important;
    padding-left: 14px !important;
    border-left: 3px solid #f28c1b !important;
    line-height: 1.3 !important;
}
.privacy-item p { font-size: 16px; color: #666; line-height: 1.85; }

/* ── Package Detail ── */
section.padding .card {
    border-radius: 18px !important;
    border: 1px solid #eeebe6 !important;
    box-shadow: none !important;
    background: #fff !important;
}
section.padding .card .text-22 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
}
section.padding .pxs-primary-btn {
    display: block !important;
    background: #f28c1b !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 16px !important;
    border: none !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    text-align: center !important;
    margin-top: 20px !important;
    width: 100% !important;
}
section.padding .pxs-primary-btn:hover { background: #d97a0e !important; }

/* ===================================================
   CARGO INQUIRY PAGE
   =================================================== */
.ci-page-section {
    background: #f7f3ec;
    min-height: 80vh;
}

.ci-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 48px 44px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.08);
}
.ci-form-header { margin-bottom: 32px; }
.ci-form-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.ci-form-header h2 span { color: #f28c1b; }
.ci-form-header p { color: #6b7a8d; font-size: 16px; }
.ci-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}
.ci-field { display: flex; flex-direction: column; gap: 7px; }
.ci-field.ci-full { grid-column: span 2; }
.ci-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #8a95a3;
    text-transform: uppercase;
}
.ci-req { color: #f28c1b; }
.ci-input-wrap { position: relative; }
.ci-dot {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #f28c1b;
    pointer-events: none;
    z-index: 1;
}
.ci-dot--ta { top: 16px; transform: none; }
.ci-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #f28c1b;
    pointer-events: none;
    z-index: 1;
}
.ci-icon--ta { top: 16px; transform: none; }
.ci-input-wrap input,
.ci-input-wrap select,
.ci-input-wrap textarea,
.ci-input-wrap input.form-control,
.ci-input-wrap select.form-control,
.ci-input-wrap textarea.form-control {
    width: 100% !important;
    padding: 13px 16px 13px 38px !important;
    border: 1.5px solid #eaecf0 !important;
    border-radius: 12px !important;
    background: #fafbfc !important;
    color: #1a1a1a !important;
    font-size: 16px !important;
    transition: border-color 0.2s !important;
    box-shadow: none !important;
    height: auto !important;
    line-height: 1.5 !important;
}
.ci-input-wrap input:focus,
.ci-input-wrap select:focus,
.ci-input-wrap textarea:focus,
.ci-input-wrap input.form-control:focus,
.ci-input-wrap select.form-control:focus,
.ci-input-wrap textarea.form-control:focus {
    border-color: #f28c1b !important;
    outline: none !important;
    background: #fff !important;
    box-shadow: none !important;
}
.ci-input-wrap textarea { resize: none; min-height: 100px; }
.ci-input-wrap select { appearance: none; -webkit-appearance: none; }
.ci-select-wrap .ci-select-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #8a95a3;
    font-size: 12px;
    pointer-events: none;
}
.ci-submit-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.ci-submit-btn {
    background: #f28c1b;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.02em;
}
.ci-submit-btn:hover { background: #d97b0e; }
.ci-back-link {
    color: #6b7a8d;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.ci-back-link:hover { color: #f28c1b; }
@media (max-width: 767px) {
    .ci-form-card { padding: 28px 20px; }
    .ci-form-grid { grid-template-columns: 1fr; }
    .ci-field.ci-full { grid-column: span 1; }
    .ci-form-header h2 { font-size: 26px; }
}

/* Hide custom select arrow icons when nice-select is active (prevents double arrow) */
.field-input-wrap.select-wrap .select-icon { display: none !important; }
.ci-input-wrap.ci-select-wrap .ci-select-icon { display: none !important; }

/* nice-select override inside cargo inquiry form */
.ci-input-wrap .nice-select {
    width: 100% !important;
    padding: 0 16px 0 38px !important;
    border: 1.5px solid #eaecf0 !important;
    border-radius: 12px !important;
    background: #fafbfc !important;
    color: #1a1a1a !important;
    font-size: 16px !important;
    height: 50px !important;
    line-height: 50px !important;
    box-shadow: none !important;
}
.ci-input-wrap .nice-select.open,
.ci-input-wrap .nice-select:focus {
    border-color: #f28c1b !important;
    background: #fff !important;
}
.ci-input-wrap .nice-select .list {
    width: 100% !important;
    border-radius: 12px !important;
    box-shadow: 0 6px 24px rgba(0,0,0,0.10) !important;
    top: calc(100% + 4px) !important;
}
.ci-input-wrap .nice-select .option:hover,
.ci-input-wrap .nice-select .option.selected { color: #f28c1b !important; }

/* nice-select override inside hero card form (cargo hero) */
.field-input-wrap .nice-select {
    width: 100% !important;
    padding: 0 14px 0 36px !important;
    border: 1.5px solid #eaecf0 !important;
    border-radius: 14px !important;
    background: #fafbfc !important;
    color: #1a1a1a !important;
    font-size: 16px !important;
    height: 48px !important;
    line-height: 48px !important;
    box-shadow: none !important;
}
.field-input-wrap .nice-select.open,
.field-input-wrap .nice-select:focus {
    border-color: #f28c1b !important;
    background: #fff !important;
}
.field-input-wrap .nice-select .list {
    width: 100% !important;
    border-radius: 14px !important;
    box-shadow: 0 6px 24px rgba(0,0,0,0.10) !important;
}
.field-input-wrap .nice-select .option:hover,
.field-input-wrap .nice-select .option.selected { color: #f28c1b !important; }

/* ===================================================
   CARGO & EXCESS BAGGAGE PAGE
   =================================================== */

/* ── SECTION 1: Hero Split ── */
.cg-split-section {
    display: flex;
    min-height: 500px;
}
.cg-split-left {
    flex: 0 0 55%;
    background: url('../img/inner-banner-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    position: relative;
}
.cg-split-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,15,40,0.52);
}
.cg-form-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 560px;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 28px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}
.cg-book-form { display: flex; flex-direction: column; gap: 10px; }
.cg-row-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.cg-row-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.cg-field-wrap { position: relative; }
.cg-field-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #f28c1b;
    font-size: 13px;
    pointer-events: none;
    z-index: 1;
}
.cg-input {
    width: 100%;
    padding: 11px 12px 11px 32px;
    border: 1.5px solid #e8e3db;
    border-radius: 10px;
    background: #fafafa;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
    font-family: "Urbanist", sans-serif;
    height: 42px;
}
.cg-input:focus { border-color: #f28c1b; background: #fff; }
.cg-input::placeholder { color: #bbb; font-size: 13px; }
.cg-full { grid-column: 1 / -1; }
.cg-select { appearance: none; -webkit-appearance: none; padding-right: 28px; }
.cg-textarea {
    height: auto !important;
    border-radius: 10px !important;
    resize: none;
    padding-top: 11px !important;
    min-height: 70px;
}
.cg-inquire-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f28c1b;
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    font-family: "Urbanist", sans-serif;
    margin-top: 4px;
}
.cg-inquire-btn:hover { background: #d97a0e; }

/* Right orange panel */
.cg-split-right {
    flex: 0 0 45%;
    background: #f28c1b;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.cg-split-right::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    top: -80px; right: -80px;
}
.cg-split-right::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    bottom: -60px; left: -40px;
}
.cg-split-right-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.cg-split-title {
    color: #ffffff !important;
    font-size: 46px !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    letter-spacing: -1px !important;
    margin-bottom: 32px !important;
}
.cg-split-title span { color: rgba(255,255,255,0.82) !important; }
.cg-book-now-btn {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    padding: 18px 52px;
    border-radius: 10px;
    text-decoration: none;
    letter-spacing: 2px;
    transition: background 0.2s, transform 0.2s;
}
.cg-book-now-btn:hover { background: #fff; color: #f28c1b; text-decoration: none; transform: translateY(-2px); }

/* ── SECTION 2: Services Intro ── */
.cg-svc-intro { background: #fff; }
.cg-svc-label {
    font-size: 16px;
    color: #888;
    font-weight: 500;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
section.cg-svc-intro.padding {
    padding-bottom: 60px !important;
}
.cg-svc-by {
    font-size: 22px;
    font-weight: 700;
    color: #f28c1b;
    margin-bottom: 10px;
}
.cg-svc-title {
    font-size: 42px !important;
    font-weight: 900 !important;
    color: #1a1a1a !important;
    letter-spacing: -1px;
    margin: 0;
}

/* ── SECTION 3: What We Do ── */
.cg-what-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}
.cg-promo-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #eeebe6;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: sticky;
    top: 100px;
}
.cg-promo-logo {
    width: 120px;
    margin: 0 auto 20px;
    display: block;
}
.cg-promo-tagline {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}
.cg-what-heading {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    text-transform: uppercase;
}
.cg-what-intro {
    font-size: 15px;
    color: #666;
    line-height: 1.85;
    margin-bottom: 28px;
}
.cg-service-list { display: flex; flex-direction: column; gap: 0; }
.cg-service-item {
    padding: 18px 0;
    border-bottom: 1px solid #e8e3db;
}
.cg-service-item:last-child { border-bottom: none; }
.cg-service-name {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 6px !important;
    line-height: 1.3 !important;
}
.cg-service-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.78;
    margin: 0;
}

/* ── SECTION 4: Destination Cards ── */
.cg-dest-section { background: #fff; }
.cg-dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
/* Last 2 cards center them if fewer than 3 */
.cg-dest-card:nth-child(4) { grid-column: 1; }
.cg-dest-card:nth-child(5) { grid-column: 2; }

.cg-dest-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eeebe6;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
}
.cg-dest-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.10); }

/* Image area */
.cg-dest-img {
    height: 180px;
    overflow: hidden;
    position: relative;
    background: #1a2d5a;
}
.cg-dest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.75;
    transition: transform 0.4s ease;
}
.cg-dest-card:hover .cg-dest-img img { transform: scale(1.05); }

/* Pakistan promo card special */
.cg-dest-card--promo .cg-dest-img {
    background: linear-gradient(135deg, #1a2d5a 0%, #0d4f3c 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 16px;
}
.cg-dest-promo-badge {
    font-size: 11px;
    font-weight: 700;
    color: #f28c1b;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.cg-dest-promo-tag {
    font-size: 10px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
    text-align: center;
}
.cg-dest-country {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.cg-dest-promo-logo {
    width: 60px;
    margin-top: 8px;
    opacity: 0.9;
}

/* Card body */
.cg-dest-body {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}
.cg-dest-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}
.cg-dest-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.75;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cg-explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f28c1b;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 1px;
    align-self: flex-start;
    transition: background 0.2s;
    margin-top: 4px;
}
.cg-explore-btn:hover { background: #d97a0e; color: #fff; text-decoration: none; }

/* ── Responsive ── */
@media (max-width: 1199px) {
    .cg-split-title { font-size: 36px !important; }
    .cg-svc-title { font-size: 32px !important; }
}
@media (max-width: 991px) {
    .cg-split-section { flex-direction: column; }
    .cg-split-left { flex: none; width: 100%; padding: 36px 20px; }
    .cg-split-right { flex: none; width: 100%; padding: 48px 20px; }
    .cg-split-title { font-size: 36px !important; }
    .cg-dest-grid { grid-template-columns: repeat(2,1fr); }
    .cg-dest-card:nth-child(4), .cg-dest-card:nth-child(5) { grid-column: auto; }
    .cg-what-grid { grid-template-columns: 1fr; gap: 36px; }
    .cg-promo-card { position: static; }
}
@media (max-width: 767px) {
    .cg-row-3 { grid-template-columns: 1fr; }
    .cg-row-2 { grid-template-columns: 1fr; }
    .cg-form-card { padding: 22px 18px; }
    .cg-inquire-btn { width: 100%; justify-content: center; }
    .cg-dest-grid { grid-template-columns: 1fr; }
    .cg-split-title { font-size: 30px !important; }
    .cg-svc-title { font-size: 26px !important; }
    .cg-book-now-btn { font-size: 16px; padding: 14px 36px; }
}

/* ── All Packages listing (event-listing-section) ── */
.event-listing-section {
    background: #f7f3ec !important;
    padding: 60px 0 80px !important;
}
.event-listing-items { display: flex; flex-direction: column; gap: 24px; }
.event-listing-item {
    background: #fff !important;
    border-radius: 18px !important;
    border: 1px solid #eeebe6 !important;
    box-shadow: none !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: stretch !important;
    transition: box-shadow 0.3s !important;
}
.event-listing-item:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.09) !important; }
.event-listing-carousel {
    flex-shrink: 0 !important;
    width: 280px !important;
}
.event-listing-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 0 !important;
}
.event-text.feature {
    background: #f28c1b !important;
    color: #fff !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 5px 16px !important;
    position: absolute !important;
    top: 14px !important;
    left: 14px !important;
}
.event-text.feature span { color: #fff !important; }
.event-listing-content {
    flex: 1 !important;
    padding: 28px 30px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    background: #fff !important;
}
.event-listing-content .post-meta {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 10px !important;
    display: flex !important;
    gap: 10px !important;
    font-size: 14px !important;
    color: #999 !important;
}
.event-listing-content .post-meta li i { color: #f28c1b; margin-right: 4px; }
.event-listing-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    line-height: 1.4 !important;
    margin-bottom: 14px !important;
}
.event-price-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    margin-top: auto !important;
    padding-top: 18px !important;
    border-top: 1px solid #f0ebe5 !important;
}
.event-price-wrap .price {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    margin: 0 !important;
}
.event-price-wrap .pxs-primary-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: #f28c1b !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 10px 22px !important;
    border-radius: 999px !important;
    text-decoration: none !important;
    border: none !important;
    white-space: nowrap !important;
    transition: background 0.2s !important;
}
.event-price-wrap .pxs-primary-btn:hover { background: #d97a0e !important; }
@media (max-width: 767px) {
    .event-listing-item { flex-direction: column !important; }
    .event-listing-carousel { width: 100% !important; height: 200px !important; }
    .event-listing-content { padding: 20px !important; }
    .event-price-wrap { flex-direction: column; align-items: flex-start; }
}

/* ── Package Detail Page ─────────────────────────────────── */
.pkg-detail-section { background: #f8f7f4; }
.pkg-detail-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    max-width: 860px;
    margin: 0 auto;
}
.pkg-detail-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 28px;
}
.pkg-detail-img img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}
.pkg-detail-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f28c1b;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 24px;
}
.pkg-detail-location i { font-size: 17px; }
.pkg-snapshot-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}
.pkg-snapshot-row {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding-bottom: 28px;
    border-bottom: 1px solid #f0ebe5;
    margin-bottom: 28px;
}
.pkg-snapshot-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 120px;
}
.pkg-snapshot-item > i {
    font-size: 20px;
    color: #f28c1b;
    margin-top: 2px;
    flex-shrink: 0;
}
.pkg-snapshot-text {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}
.pkg-snapshot-text strong { color: #1a1a1a; font-size: 14px; }
.pkg-detail-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0ebe5;
    margin-bottom: 24px;
}
.pkg-detail-nodesc {
    font-size: 15px;
    color: #888;
    font-style: italic;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0ebe5;
    margin-bottom: 24px;
}
.pkg-section { margin-bottom: 28px; }
.pkg-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f28c1b;
    display: inline-block;
}
.pkg-itinerary-item {
    padding: 14px 16px;
    margin-bottom: 10px;
    border-left: 3px solid #f28c1b;
    background: #fafafa;
    border-radius: 4px;
    font-size: 14px;
}
.pkg-itinerary-item p { margin: 6px 0 0; color: #666; }
.pkg-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.pkg-features-list li {
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 7px;
    background: #fff8f0;
    border: 1px solid #fde8c8;
    border-radius: 999px;
    padding: 6px 14px;
}
.pkg-features-list li i { color: #f28c1b; font-size: 12px; }
.pkg-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.pkg-gallery-grid img {
    width: 180px;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
}
.pkg-prices {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pkg-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border: 1px solid #f0ebe5;
    border-radius: 8px;
    background: #fafafa;
}
.pkg-price-label {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}
.pkg-price-amount {
    display: flex;
    align-items: center;
    gap: 8px;
}
.pkg-price-old {
    font-size: 14px;
    color: #aaa;
    text-decoration: line-through;
}
.pkg-price-sale {
    font-size: 18px;
    font-weight: 800;
    color: #f28c1b;
}
.pkg-price-amount strong {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
}
.pkg-price-per {
    font-size: 13px;
    color: #888;
}
.pkg-book-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #f28c1b;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    margin-top: 8px;
}
.pkg-book-btn:hover { background: #e07a0e; color: #fff; }
@media (max-width: 767px) {
    .pkg-detail-card { padding: 24px 18px; }
    .pkg-snapshot-row { gap: 20px; }
    .pkg-snapshot-item { min-width: 100px; }
}

/* ── Cargo Inquiry Page ─────────────────────────────────── */
.cargo-inq-section { background: #f8f7f4; }
.cargo-inq-card {
    background: #fff;
    border-radius: 16px;
    padding: 44px 48px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    max-width: 780px;
    margin: 0 auto;
}
.cargo-inq-head { margin-bottom: 28px; }
.cargo-inq-title {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.cargo-inq-title span { color: #f28c1b; }
.cargo-inq-sub { font-size: 14px; color: #888; margin: 0; }

.cargo-inq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 24px;
}
.cargo-inq-full { grid-column: 1 / -1; }

.cargo-inq-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #555;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}
.cargo-inq-label span { color: #f28c1b; }

.cargo-inq-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.cargo-inq-icon {
    position: absolute;
    left: 14px;
    color: #f28c1b;
    font-size: 15px;
    pointer-events: none;
    z-index: 1;
}
.cargo-inq-icon-top { top: 14px; align-self: flex-start; }

.cargo-inq-input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    background: #fafafa;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
    font-family: "Urbanist", sans-serif;
}
.cargo-inq-input:focus {
    border-color: #f28c1b;
    background: #fff;
}
.cargo-inq-input::placeholder { color: #bbb; }

.cargo-inq-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
.cargo-inq-textarea {
    resize: vertical;
    min-height: 100px;
    border-radius: 8px;
    align-self: stretch;
}
.cargo-inq-textarea-wrap { align-items: flex-start; }

.cargo-inq-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.cargo-inq-btn {
    background: #f28c1b;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
    font-family: "Urbanist", sans-serif;
}
.cargo-inq-btn:hover { background: #e07a0e; }
.cargo-inq-back {
    color: #555;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.cargo-inq-back:hover { color: #f28c1b; }

@media (max-width: 767px) {
    .cargo-inq-card { padding: 28px 18px; }
    .cargo-inq-grid { grid-template-columns: 1fr; }
}
