@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');

:root {
    --primary-color: #f37002;
    --secondry-color: #f7d046;
    --white-color: #FFFFFF;
    --text-color: #5a5a5a;
    --dark-color: #0a0a0a;
    --transition: ease-in-out .6s;
    --border-radius: 5px;
    --border-color: #e3e3e3;
    --bg-color: #edf3ff;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: Poppins, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Arial, sans-serif;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

img {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: var(--dark-color);
}

p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 20px;
}

.mt {
    margin-top: 100px;
}

.mb {
    margin-bottom: 100px;
}

.pt {
    padding-top: 100px;
}

.pt-small {
    padding-top: 33px;
}

.pb-small {
    padding-bottom: 33px;
}


.pb {
    padding-bottom: 100px;
}

.mt1 {
    margin-top: 80px;
}

.mb1 {
    margin-bottom: 80px;
}

.pt1 {
    padding-top: 80px;
}

.pb1 {
    padding-bottom: 80px;
}


/*--------- Enquiry Modal  ---------*/
.enquiry-modal.modal.fade {
    background: rgb(0 0 0 / 70%);
}

.enquiry-modal .modal-content {
    display: flex;
    flex-direction: row;
}

.enquiry-modal .modal-dialog {
    max-width: 900px;
}

.enquiry-img {
    height: auto;
    width: 45%;
}

.enquiry-main {
    width: 55%;
    padding: 30px;
    position: relative;
}

.enquiry-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.enquiry-main h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 12px;
    /* color: rgba(15, 23, 42, .55);   */
}

.thin {
    font-weight: 700;
    color: rgba(15, 23, 42, .55);
}

.sub {
    margin: 0 0 18px;
    font-weight: 500;
    line-height: 1.6;
    color: rgba(15, 23, 42, .65);
}

.note {
    margin: 9px 0 0;
    color: rgba(15, 23, 42, .55);
    font-weight: 500;
    font-size: 10.5px;
    line-height: 1.45;
}

.btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
}

.enquiry-main .form-group {
    margin-bottom: 15px;
}

.enquiry-main .form-control {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    height: 34px;
    font-size: 13px;
}

.enquiry-main textarea.form-control {
    height: 100px;
}

.enquiry-main .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--primary-color);
}

.enquiry-main .btns-sub {
    width: 100%;
    background: var(--primary-color);
    border: none;
    padding: 10px 15px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    border-radius: 10px;
    margin-top: 10px;
    transition: var(--transition);
}


.enquiry-main .btns-sub:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.inq-span {
    font-weight: 700;
    color: rgba(15, 23, 42, 0.718);
    font-size: 13px;
}

.float-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 1018;
}

.float-btn ul li a {
    display: block;
    background: var(--primary-color);
    color: var(--dark-color);
    /* padding: 12px 15px; */
    padding: 21px 3px;
    /* border-top-left-radius: 5px;
    border-bottom-left-radius: 5px; */
    font-size: 18px;

    writing-mode: vertical-lr;
    text-transform: uppercase;
    transform: rotate(180deg);
}

/* .float-btn ul li {
    position: relative;
    right: -113px;
    transition: var(--transition);
} */

.float-btn ul li a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.float-btn ul li:hover {
    right: 0;
}

.float-btn ul li+li a {
    margin-top: 10px;
}

.float-btn ul li a i {
    font-size: 25px;
    vertical-align: middle;
    margin-right: 10px;
}

/*--------- Enquiry Modal End ---------*/


/*--------- Header Top ---------*/

.header-top {
    background: #072957;
}

.th-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 35px;
    /* justify-content: space-between; */
}

.th-left ul {
    display: flex;
}

.th-left ul li a {
    display: block;
    color: var(--white-color);
    transition: var(--transition);
}

.th-left ul li a:hover {
    color: var(--primary-color);
}

.th-right {
    display: flex;
    align-items: center;
}

.header-info {
    display: flex;
}

.header-info li a {
    display: block;
    color: var(--white-color);
    transition: var(--transition);
}

.header-info li a:hover {
    color: var(--primary-color);
}

.header-info li {
    display: flex;
    align-items: center;
    margin-right: 10px;
    padding-right: 18px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 2px 8px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(8px);
}

.header-top {
    font-size: 12px;
}

.header-info li i {
    color: var(--white-color);
    margin-right: 8px;
    font-size: 17px;
}

.social-media {
    display: flex;
    align-items: center;
}

.social-media span {
    display: flex;
    color: var(--white-color);
    margin-right: 10px;
}

.social-media ul {
    display: flex;
}

.social-media ul li a {
    display: block;
    color: var(--white-color);
    transition: var(--transition);
    font-size: 18px;

    width: 25px;
    height: 25px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    transition: .2s ease;
}

.social-media ul li+li a {
    margin-left: 12px;
}

.social-media ul li a:hover {
    color: var(--primary-color);
}

/*--------- Header Top End ---------*/


/*--------- Header ---------*/

.header {
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1020;
    background: transparent;
    /* background: var(--dark-color); */
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: var(--white-color);
    box-shadow: 0px 3px 50px rgba(0, 0, 0, 0.10);
}

/* Navbar WhatsApp */
.navbar-whatsapp {
    display: flex;
    align-items: center;
    gap: 6px;
}

.wa-country-select select {
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 20px;
    padding: 4px 6px;
    width: 52px;
    height: 34px;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    text-align: center;
    transition: background 0.3s, border-color 0.3s;
}

.header.scrolled .wa-country-select select {
    background: #f5f5f5;
    color: #333;
    border-color: #ddd;
}

.wa-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}

.wa-btn:hover {
    background: #1ebe5d;
}

.wa-btn i {
    font-size: 16px;
}

/* Navbar WhatsApp End */

.header-wrap {
    display: flex;
    /* justify-content: space-between; */
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}

/* ── Nav Search ── */
.nav-search {
    flex-shrink: 0;
}

.nav-search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 6px 8px 6px 18px;
    width: 240px;
    transition: background 0.3s, border-color 0.3s, width 0.3s;
}

.nav-search-form:focus-within {
    width: 280px;
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.45);
}

.nav-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 13px;
    color: #fff;
    min-width: 0;
}

.nav-search-input::placeholder {
    color: rgba(255, 255, 255, 0.70);
}

.nav-search-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.80);
    font-size: 17px;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.nav-search-btn:hover {
    color: #fff;
}

/* Scrolled state — dark text on white header */
.header.scrolled .nav-search-form {
    background: #f2f2f2;
    border-color: #e5e5e5;
}

.header.scrolled .nav-search-form:focus-within {
    background: #ebebeb;
    border-color: #d0d0d0;
}

.header.scrolled .nav-search-input {
    color: #333;
}

.header.scrolled .nav-search-input::placeholder {
    color: #999;
}

.header.scrolled .nav-search-btn {
    color: #555;
}

.header.scrolled .nav-search-btn:hover {
    color: #222;
}

/* ── Nav Login ── */
.nav-login-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .15);
    border: 1.5px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: background .22s, border-color .22s, color .22s, transform .18s;
}

.nav-login-btn:hover {
    background: #f37002;
    border-color: #f37002;
    color: #fff;
    transform: translateY(-1px);
}

.nav-login-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Scrolled state */
.header.scrolled .nav-login-btn {
    background: #f5f5f5;
    border-color: #e0e0e0;
    color: #333;
}

.header.scrolled .nav-login-btn:hover {
    background: #f37002;
    border-color: #f37002;
    color: #fff;
}

/* ── Nav Search End ── */

.logo a {
    display: block;
}

.logo img {
    height: 38px;
    width: auto;
    transition: filter 0.3s ease;
}

/* White logo becomes dark on white sticky header */
.header.scrolled .logo img {
    filter: brightness(0);
}

.header-menus {
    padding-left: 25px;
}

.header-menus>ul {
    display: flex;
}

.header-menus>ul>li>a {
    display: block;
    color: var(--white-color);
    font-size: 15px;
    font-weight: 600;
    padding: 20px 16px;
    transition: var(--transition);
}

.header-menus>ul>li:hover>a {
    color: var(--primary-color);
}

.header.scrolled .header-menus>ul>li>a {
    color: var(--dark-color);
}

.header.scrolled .header-menus>ul>li:hover>a {
    color: var(--primary-color);
}

.header-menus>ul>li>a>i {
    font-size: 12px;
    vertical-align: middle;
    margin-left: 3px;
}

.main-btn a {
    display: block;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 17px;
    font-weight: 500;
    position: relative;
    z-index: 0;
    overflow: hidden;

    border-radius: 5px;
    padding: 15px 35px;
    margin: 10px;

    text-transform: uppercase;
    border-radius: 2.25rem;
    transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out, padding 0.4s ease-in-out;
    padding: 0.9rem 1rem 0.9rem 3.5rem;
}

.main-btn {
    display: inline-block;

    /* padding: 0.9rem 1rem 0.9rem 3.5rem; */
}

/* ------------------------ */
.main-btn .btn-orange {
    background-color: #f7d046;
    color: #0a0a0a;
}

.main-btn .btn-orange:hover {
    background: #ffcd06 !important;
    color: #FFFF !important;
}


.main-btn .btn-blue {
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    transition: .2s ease;
}

/* ------------------------ */

.main-btn a i {
    font-size: 19px;
    vertical-align: middle;
    margin-left: 7px;
}

.main-btn a::before {
    content: "";
    background-color: var(--primary-color);
    width: 0;
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.main-btn a::after {
    content: "";
    background-color: var(--primary-color);
    width: 0;
    height: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.main-btn a:hover::before,
.main-btn a:hover::after {
    width: 100%;
}

.drop-menu {
    position: relative;
}

/*--------- LEVEL 2 — Dropdown Clip-path reveal from top -------*/
.sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    width: 240px;
    border-radius: 10px;
    overflow: hidden;
    padding: 8px 0;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.07),
        0 10px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    z-index: 200;
    transition:
        opacity 250ms ease,
        transform 250ms ease,
        visibility 250ms;
}

.sub-menu::before {
    display: none;
}

.sub-menu::after {
    display: none;
}

.drop-menu:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Level 2 items */
.sub-menu ul li {
    position: relative;
    margin: 2px 6px;
    border-radius: 8px;
    overflow: hidden;
}

.sub-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px 10px 14px;
    color: #444;
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(6px);
    transition:
        opacity 250ms ease,
        transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1),
        color 200ms ease,
        background 200ms ease,
        padding-left 200ms ease;
    z-index: 1;
}

/* arrow icon on right */
.sub-menu a::after {
    content: '\f105';
    font-family: 'Line Awesome Free', 'Line Awesome Brands';
    font-weight: 900;
    font-size: 13px;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 200ms ease, transform 200ms ease;
}

.sub-menu a:hover {
    color: var(--primary-color);
    background: rgba(255, 83, 0, 0.07);
    padding-left: 18px;
}

.sub-menu a:hover::before {
    transform: scaleY(1);
}

.sub-menu a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.sub-menu>ul>li:hover>a {
    color: var(--primary-color);
}

.drop-menu:hover .sub-menu a {
    opacity: 1;
    transform: translateY(0);
}

/* stagger */
.drop-menu:hover .sub-menu ul li:nth-child(1) a {
    transition-delay: 30ms;
}

.drop-menu:hover .sub-menu ul li:nth-child(2) a {
    transition-delay: 60ms;
}

.drop-menu:hover .sub-menu ul li:nth-child(3) a {
    transition-delay: 90ms;
}

.drop-menu:hover .sub-menu ul li:nth-child(4) a {
    transition-delay: 120ms;
}

.drop-menu:hover .sub-menu ul li:nth-child(5) a {
    transition-delay: 150ms;
}

.drop-menu:hover .sub-menu ul li:nth-child(6) a {
    transition-delay: 180ms;
}

.drop-menu:hover .sub-menu ul li:nth-child(7) a {
    transition-delay: 210ms;
}

.drop-menu:hover .sub-menu ul li:nth-child(8) a {
    transition-delay: 240ms;
}

/*--------- LEVEL 3 — Flyout Clip-path reveal from left -------*/
.mega-menus-item {
    position: relative;
}

.mega-menus-item>a {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.mega-menus {
    position: absolute;
    top: -6px;
    left: calc(100% + 4px);
    background: #fff;
    width: 210px;
    border-radius: 10px;
    padding: 8px 0;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.07),
        0 10px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    z-index: 300;
    clip-path: inset(0 100% 0 0 round 10px);
    transition:
        opacity 260ms cubic-bezier(0.34, 1.56, 0.64, 1),
        clip-path 280ms cubic-bezier(0.34, 1.56, 0.64, 1),
        visibility 280ms;
}

.mega-menus-item:hover>.mega-menus {
    opacity: 1;
    visibility: visible;
    clip-path: inset(0 0% 0 0 round 10px);
}

.mega-menus>ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menus>ul>li>a {
    display: block;
    padding: 9px 18px 9px 18px;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    position: relative;
    opacity: 0;
    transform: translateX(6px);
    transition:
        opacity 200ms ease,
        transform 230ms cubic-bezier(0.34, 1.56, 0.64, 1),
        color 130ms ease;
}

/* underline for level 3 */
.mega-menus>ul>li>a::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 1.5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mega-menus>ul>li>a:hover {
    color: var(--primary-color);
}

.mega-menus>ul>li>a:hover::after {
    transform: scaleX(1);
}

.mega-menus-item:hover .mega-menus>ul>li>a {
    opacity: 1;
    transform: translateX(0);
}

.mega-menus>ul>li:nth-child(1) a {
    transition-delay: 30ms;
}

.mega-menus>ul>li:nth-child(2) a {
    transition-delay: 60ms;
}

.mega-menus>ul>li:nth-child(3) a {
    transition-delay: 90ms;
}

.mega-menus>ul>li:nth-child(4) a {
    transition-delay: 120ms;
}

/* === Mega Menu Base === */
.mega-menu-parent {
    position: static;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    transform-origin: top center;
    background: #fff;
    width: 720px;
    border-radius: 14px;
    display: flex;
    gap: 0;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.06),
        0 8px 24px rgba(0, 0, 0, 0.10),
        0 32px 64px rgba(0, 0, 0, 0.10);
    opacity: 0;
    visibility: hidden;
    z-index: 200;
    overflow: hidden;
    transition:
        opacity 220ms cubic-bezier(0.4, 0, 0.2, 1),
        transform 260ms cubic-bezier(0.4, 0, 0.2, 1),
        visibility 260ms;
}

.mega-menu-parent:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* === Two-Panel Mega Menu === */
.mega-menu.mega-panel {
    width: 860px;
    align-items: stretch;
}

.mega-panel-left {
    width: 220px;
    flex-shrink: 0;
    background: #f8f8f8;
    border-right: 1px solid rgba(0, 0, 0, 0.07);
    padding: 8px 0;
}

.mega-panel-left ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-panel-cat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 18px;
    font-size: 13.5px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    /* border-left: 3px solid transparent; */
    transition: background 150ms, color 150ms, border-color 150ms;
}

.mega-panel-cat i {
    font-size: 11px;
    opacity: 0.4;
    transition: opacity 150ms, transform 150ms;
}

.mega-panel-cat:hover,
.mega-panel-cat.active {
    background: #fff;
    color: var(--primary-color);
    /* border-left-color: var(--primary-color); */
}

.mega-panel-cat:hover i,
.mega-panel-cat.active i {
    opacity: 1;
    transform: translateX(3px);
}

.mega-panel-right {
    flex: 1;
    padding: 10px 0;
    position: relative;
    min-height: 300px;
}

.mega-panel-items {
    display: none;
    padding: 4px 0;
}

.mega-panel-items.active {
    display: block;
}

.mega-panel-items ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-panel-items ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mega-panel-items ul li:last-child {
    border-bottom: none;
}

.mega-panel-items ul li a {
    display: block;
    padding: 10px 20px;
    font-size: 13.5px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: color 150ms, background 150ms, padding 150ms;
}

.mega-panel-items ul li a:hover {
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.02);
    padding-left: 26px;
}

.mega-col {
    flex: 1;
    padding: 22px 20px 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.mega-col:last-child {
    border-right: none;
}

.mega-col-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 10px;
    margin-bottom: 8px;
    border-bottom: 2px solid var(--primary-color);
}

.mega-flag {
    font-size: 20px;
    line-height: 1;
}

.mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-col ul li a {
    display: block;
    padding: 8px 12px;
    font-size: 13.5px;
    color: #333;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(8px);
    transition:
        background 150ms ease,
        color 150ms ease,
        opacity 220ms cubic-bezier(0.4, 0, 0.2, 1),
        transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mega-menu-parent:hover .mega-col ul li a {
    opacity: 1;
    transform: translateY(0);
}

.mega-col ul li:nth-child(1) a {
    transition-delay: 40ms;
}

.mega-col ul li:nth-child(2) a {
    transition-delay: 70ms;
}

.mega-col ul li:nth-child(3) a {
    transition-delay: 100ms;
}

.mega-col ul li:nth-child(4) a {
    transition-delay: 130ms;
}

.mega-col ul li:nth-child(5) a {
    transition-delay: 160ms;
}

.mega-col ul li:nth-child(6) a {
    transition-delay: 190ms;
}

.mega-col ul li a:hover {
    background: rgba(var(--primary-color-rgb, 236, 29, 35), 0.07);
    color: var(--primary-color);
}

/* === Destination Mega Menu End === */

.mega-menus>ul>li>a::before {
    position: absolute;
    content: '';
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 7px;
    width: 7px;
    background: var(--dark-color);
    border-top-right-radius: 50px;
    transition: var(--transition);
}

.mega-menus>ul>li:hover>a {
    background: var(--primary-color);
    color: var(--white-color);
}

.mega-menus>ul>li:hover>a::before {
    background: var(--white-color);
}

.mega-menus-item>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mega-menus-item>a i {
    font-size: 12px;
}

/* Header End  */


/* heading-login */
/* .login-btn a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 8px 8px 20px;
    background: #2f6fcf;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.login-btn a:hover {
    background: #1a5bbf;
    box-shadow: 0 4px 14px rgba(47, 111, 207, 0.4);
    transform: translateY(-1px);
}

.login-btn a:active {
    transform: translateY(0);
    box-shadow: none;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

.icon-circle svg {
    width: 18px;
    height: 18px;
    fill: white;
} */

/* heading-login */


/* Slider  */
/* ===== Video Banner ===== */
.video-banner {
    position: relative;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The video itself fills the container */
.vb-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Dark gradient overlay */
.vb-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.38) 0%,
            rgba(0, 0, 0, 0.22) 45%,
            rgba(0, 0, 0, 0.60) 100%);
}

/* Text sits just above the search bar */
.vb-content {
    position: absolute;
    /* bottom: 155px; */
    bottom: 130px;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

/* .vb-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 7px 20px;
    border-radius: 30px;
    margin-bottom: 22px;
} */

.vb-title {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    white-space: nowrap;
    /* margin-bottom: 18px; */
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.vb-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

/* Search bar pinned to bottom */
.banner-search-overlay {
    position: absolute;
    bottom: 48px;
    left: 0;
    right: 0;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Scroll hint */
.vb-scroll-hint {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: vbScrollBounce 2s infinite;
}

.vb-scroll-hint i {
    font-size: 14px;
}

@keyframes vbScrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(5px);
    }
}

/* ===== Video Banner End ===== *

/* Trip Search Bar */
.trip-search {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 60px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.22);
    padding: 6px 6px 6px 8px;
    display: inline-block;
    width: 100%;
}

.trip-search-inner {
    display: flex;
    align-items: center;
    gap: 0;
}

.trip-search-field {
    flex: 1;
    padding: 8px 18px;
    text-align: left;
}

.trip-search-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.trip-search-field label i {
    color: var(--primary-color);
    margin-right: 3px;
}

.trip-search-field select {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #555;
    font-family: inherit;
    width: 100%;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.trip-search-divider {
    width: 1px;
    height: 36px;
    background: #e0e0e0;
    flex-shrink: 0;
}

.trip-search-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 4px;
}

.trip-search-btn:hover {
    background: #c0111a;
    transform: scale(1.03);
}

.trip-search-btn i {
    margin-right: 4px;
}

/* Slider End  */


/* Trust Section  */

.trust-img img {
    height: 32px;
    width: auto;
}

.trust-title h3 {
    font-size: 18px;
    font-weight: 600;
    border-right: 1px solid var(--border-color);
}

.trust-setion {
    background: #f4f4f4;
    padding: 20px 0;
}

/* Trust Section End  */


/* Program  */
.service-section-3 {
    position: relative;
    z-index: 0;
}

.service-section-3 .line-shape-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.service-section-3 .line-shape-2 img {
    width: 100%;
    height: 100%;
}

.section-title {
    position: relative;
    z-index: 99;
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0;
}

.section-title img {
    height: 36px;
    width: auto;
    margin-right: 6px;
}

.service-box-items {
    background-color: var(--white-color);
    padding: 40px 30px;
    position: relative;
    z-index: 9;
    margin-top: 25px;
}

.service-section-3 .section-title {
    margin-bottom: 25px;
}

.service-box-items.style-3 {
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.10);
    border-radius: 10px;
    background-color: var(--white-color);
}

.service-box-items::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--primary-color);
    transform: scale(1, 0);
    transition: transform 500ms ease;
    transform-origin: bottom center;
    z-index: -1;
}

.service-box-items.style-3::before {
    background: linear-gradient(180deg, var(--primary-color) -23.85%, #8f40f3 100%);
    border-radius: 10px;
}

.service-box-items:hover::before {
    transform: scale(1, 1);
    transform-origin: top center;
}

.service-box-items .icon {
    position: relative;
    z-index: 2;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
}

.service-box-items .icon img {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.service-box-items .icon::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    content: "";
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/shape.png);
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.service-box-items.style-3 .icon::before {
    background-image: url(../img/shape-2.png);
}

.service-box-items.style-3:hover .icon::before {
    background-image: url(../img/shape.png);
}

.service-box-items .content {
    margin-top: 25px;
}

.service-box-items .content h4 {
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 24px;
}

.service-box-items .content h4 a {
    display: block;
    color: var(--dark-color);
    transition: all 0.4s ease-in-out;
}

.service-box-items:hover .content h4 a {
    color: var(--white-color);
}

.service-box-items .content p {
    margin-bottom: 0;
    transition: all 0.4s ease-in-out;
    line-height: 1.5;
}

.service-box-items:hover .content p {
    color: var(--white-color);
}

.theme-btn-2 {
    font-size: 17px;
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}

.service-box-items.style-3 .theme-btn-2 {
    border: 1px solid var(--border-color);
    padding: 12px 25px;
    border-radius: 100px;
    line-height: 1;
    margin-top: 30px;
    color: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

.theme-btn-2 i {
    margin-left: 8px;
    vertical-align: middle;
}

.service-box-items:hover .content .theme-btn-2 {
    color: var(--white-color);
}

.view-btn {
    margin-top: 50px;
    text-align: center;
}

.view-btn a {
    display: inline-block;
    border: 1px solid var(--border-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    transition: var(--transition);
}

.view-btn a:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.service-section-3.pb {
    padding-bottom: 60px;
}

/* Program End  */


/* About Section  */
.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
}

.about-wrapper .about-image-items {
    position: relative;
}

.about-wrapper.style-2 .about-image-items .circle-shape {
    position: absolute;
    top: 0;
    right: 15%;
    animation: cir36 10s linear infinite;
}

@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}

.about-wrapper .about-image-items .counter-shape {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background-color: var(--primary-color);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
    position: absolute;
    bottom: -60px;
    left: 50px;
    z-index: 1;
}

.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

.about-wrapper.style-2 .about-image-items .counter-shape .icon {
    filter: grayscale(100%) brightness(300%);
}

.about-wrapper.style-2 .about-image-items .counter-shape .content h3 {
    color: var(--white-color);
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1;
}

.about-wrapper.style-2 .about-image-items .counter-shape .content h3 span {
    font-size: 28px;
    font-weight: 700;
    margin-right: 5px;
}

.about-wrapper.style-2 .about-image-items .counter-shape .content p {
    font-size: 15px;
    color: var(--white-color);
    margin-bottom: 0;
}

.about-wrapper.style-2 .about-image-items .about-image-1 {
    max-width: 400px;
    /* height: 450px; */
    height: 500px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.about-wrapper.style-2 .about-image-items .about-image-1 .about-image-2 {
    border: 10px solid var(--white-color);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
    right: -40%;
    position: absolute;
    bottom: -22%;
    border-radius: 10px;
    overflow: hidden;
}

.about-image-2 {
    position: absolute;
    right: -5px;
    bottom: -10px;
    background: white;
    border-radius: 60px;
    padding: 14px 24px;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--dark-color);
    box-shadow: 0 10px 20px -5px rgba(0, 40, 50, 0.2);
    border: 1px solid #cfdde5;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.85);
    /* font-family: 'EB Garamond', serif; */
    letter-spacing: 0.3px;
    z-index: 5;
}

.about-wrapper .about-content .about-icon-items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-wrapper .about-content .about-icon-items .icon-items {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin-top: 20px;
}

.about-wrapper .about-content .about-icon-items .icon-items .icon {
    width: 50px;
    height: 50px;
    line-height: 42px;
    text-align: center;
    border-radius: 100%;
    background-color: var(--white-color);
    color: var(--primary-color);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.09);
}

.about-wrapper .about-content .about-icon-items .icon-items .icon img {
    height: 28px;
    width: auto;
}

.about-wrapper .about-content .about-icon-items .icon-items .content {
    width: calc(100% - 50px);
    /* padding-left: 15px; */
}

.fas.fa-quote-left {
    font-size: 1.5rem;
    color: #2068A8;
    opacity: 0.9;
    top: 25px;
}

.fas.fa-quote-right {
    font-size: 1.5rem;
    color: #2068A8;
    opacity: 0.9;
    top: 25px;
}


.about-content {
    padding-left: 40px;
}

.about-content>span {
    display: block;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.about-content>p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 0;
}

.about-wrapper .about-content .about-icon-items .icon-items .content h4 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.about-wrapper .about-content .about-icon-items .icon-items .content p {
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 24px;
    font-family: Poppins, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Arial, sans-serif;
    font-style: italic;
    font-weight: 400;
}

section.case-style.pt.pb {
    background: #eeebda85;
}

/* About Section End  */

/*---------- 7 UNESCO Sites --------*/
.unesco-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Header */
.unesco-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.unesco-header-left {
    flex: 1;
    text-align: center;
}

.unesco-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.unesco-main-title {
    font-size: 30px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0 0 10px;
    line-height: 1.15;
}

.unesco-sub {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
    margin: 0 auto;
    text-align: center;
    max-width: 540px;
}

.unesco-view-all {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    border: 1.5px solid var(--primary-color);
    padding: 10px 22px;
    border-radius: 30px;
    flex-shrink: 0;
    transition: background 0.22s, color 0.22s, gap 0.2s;
}

.unesco-view-all:hover {
    background: var(--primary-color);
    color: #fff;
    gap: 9px;
}

/* ---- 3 + 4 Grid Layout ---- */
.unesco-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
    position: relative;
    z-index: 1;
}

/* First 3 cards — span 4 cols each, taller */
.ub-card {
    grid-column: span 4;
    height: 270px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

/* Cards 4–7 — span 3 cols each, shorter */
.ub-card:nth-child(n+4) {
    grid-column: span 3;
    height: 195px;
}

.ub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.55);
}

.ub-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    filter: brightness(0.88);
}

.ub-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.9) blur(1px);
}

/* Dark overlay */
.ub-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(160deg, rgba(0, 0, 0, 0.05) 0%, rgb(0 0 0 / 0%) 60%, rgba(0, 0, 0, 0.85) 100%); */

    transition: opacity 0.3s;
}

/* Large faded number — top LEFT */
.ub-num {
    position: absolute;
    top: 10px;
    left: 14px;
    font-size: 52px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.10);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 1;
    letter-spacing: -2px;
    transition: color 0.3s;
}

.ub-card:hover .ub-num {
    color: rgba(255, 83, 0, 0.25);
}

/* UNESCO badge — top RIGHT */
.ub-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    /* background: var(--primary-color); */
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 4px;
    z-index: 2;
}

/* Bottom info */
.ub-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 16px;
    z-index: 2;
    /* border-top: 1px solid rgba(255,255,255,0.08); */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    transform: translateY(2px);
    transition: transform 0.3s;
}

.ub-card:hover .ub-info {
    transform: translateY(0);
}

.ub-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.3;
}

.ub-card:nth-child(-n+3) .ub-info h4 {
    font-size: 16px;
}

.ub-info p {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ub-info p i {
    color: var(--primary-color);
}

/* Orange left-border accent on hover */
.ub-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.35s ease;
    z-index: 3;
}

.ub-card:hover::after {
    height: 100%;
}

/* Responsive */
/* ===== UNESCO Section End ===== */

.additional-destination.section_padding {
    padding-bottom: 70px;
}


/* News & Events  */
.news-events {
    position: relative;
}

.news-events-img {
    height: 150px;
    overflow: hidden;
    /* border-radius: 10px; */
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.news-events-img a {
    display: block;
    height: 100%;
    width: 100%;
}

.news-events-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: ease-in-out .9s;
}

.news-event-wrap:hover .news-events-img img {
    transform: scale(1.10);
}

/* .news-event-content {
    margin-top: 20px;
} */


.news-event-content {
    /* padding: 20px; */
    padding: 2px 20px;
    border: 1px solid var(--border-color);
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

/* Meta row */
.news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px !important;
    font-weight: 400;
    color: rgba(11, 27, 58, .55);
    margin-bottom: 10px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
    padding: 10px 1px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    color: var(--dark-color);
    /* background: linear-gradient(135deg, #0874e7, #4a6cf7); */
    /* box-shadow: 0 16px 40px rgba(8, 116, 231, .22); */
    transition: transform .2s ease, box-shadow .2s ease;
}


.news-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(11, 27, 58, .35);
}

.news-event-content span {
    display: block;
    font-size: 12px;
}

.news-event-content span i {
    margin-right: 3px;
    color: var(--primary-color);
    font-size: 22px;
    vertical-align: middle;
}

.events-inner {
    display: flex;
    align-items: flex-start;
    margin-top: 4px;
}


.event-title {
    /* width: calc(100% - 60px); */
    /* padding-left: 20px; */
}

.event-title p {
    margin-bottom: 0;
    margin-top: 15px;
}


.event-title h3 {
    font-size: 17px;
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1.3;
}

.event-title h3 a {
    display: block;
    color: var(--dark-color);
    transition: var(--transition);
}

.event-title h3 a:hover {
    color: var(--primary-color);
}

/*------ News & Events End  ------*/


/*-------- Partner  ---------*/
.marquee {
    display: flex;
    mask-image: linear-gradient(90deg, transparent 5%, #000 30%, #000 70%, transparent 95%);
    overflow: hidden;
}

.marquee-list {
    align-items: center;
    animation: marquee 30s linear infinite;
    display: flex;
    flex-shrink: 0;
    gap: calc(clamp(10rem, 1rem + 40vmin, 30rem) / 5);
    justify-content: space-around;
    min-width: 100%;
    margin-left: 1.25rem;
}

.partner-img {
    min-width: 7.5rem;
    text-align: center;
}

.partner img {
    max-width: 120px;
}

.marquee-reverse .marquee-list {
    animation-direction: reverse;
}

.marquee-reverse {
    margin-top: 50px;
}

.partner {
    position: relative;
    z-index: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - clamp(10rem, 1rem + 40vmin, 30rem) / 14));
    }
}

/* Partner End  */


/* Footer-header */

.footer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #cccccc;
}

.social-media ul {
    display: flex;
}

.social-media ul li a {
    display: block;
    color: #444444;
    font-size: 18px;
    transition: var(--transition);
    height: 36px;
    width: 36px;
    line-height: 36px;
    text-align: center;
    background: #ffffff;
    border-radius: 100%;
    border: 1px solid #cccccc;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.social-media ul li a:hover {
    background: var(--main-color);
    color: #ffffff;
    border-color: var(--main-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.social-media ul li a i {
    line-height: 36px;
}

.social-media ul li+li a {
    margin-left: 8px;
}


.newsletter {
    width: 450px;
    position: relative;
}

.newsletter .form-control {
    height: 40px;
    border: none;
    border-radius: 3px;
    font-size: 15px;
}

.newsletter button {
    height: 40px;
    border: none;
    background: var(--primary-color);
    color: var(--dark-color);
    border-radius: 3px;
    padding: 5px 15px;
    font-weight: 500;
    margin-left: 5px;
    transition: var(--transition);
}


.newsletter .form-group {
    display: flex;
    align-items: center;
}

.store {
    display: flex;
}

.store a {
    display: block;
    border-radius: 5px;
    padding: 5px 15px;
    transition: var(--transition);
    background-color: #ffffff;
    font-size: 14px;
    color: #343435;
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.3);
    border-style: solid;
    border-width: 1px;
    border-color: #cccccc;
    border-radius: 5px;
}

.store a+a {
    margin-left: 10px;
}

.store a i {
    margin-right: 5px;
    font-size: 17px;
    vertical-align: middle;
}

.store a:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    border-color: var(--primary-color);
}


.newsletter {
    width: 450px;
    position: relative;
}

.newsletter .form-control {
    height: 40px;
    border: none;
    border-radius: 3px;
    font-size: 15px;
}

.newsletter button {
    height: 40px;
    border: none;
    background: var(--primary-color);
    color: var(--dark-color);
    border-radius: 3px;
    padding: 5px 15px;
    font-weight: 500;
    margin-left: 5px;
    transition: var(--transition);
}

/* .newsletter button:hover {
    background-color: var(--button-hover);
} */

.newsletter .form-group {
    display: flex;
    align-items: center;
}

/* End Footer-header */
/* Footer  */
.footer {
    background: rgba(255, 83, 0, 0.07);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.footer .pattern-layer .pattern-1 {
    position: absolute;
    right: -100px;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    margin: auto;
    opacity: .8;
    z-index: -1;
}

.footer .pattern-layer .pattern-2 {
    position: absolute;
    left: 50px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    opacity: .8;
    z-index: -1;
}

.footer-logo a {
    display: block;
}

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-wrap h3 {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 25px;
    font-size: 20px;
}

.footer-wrap h3 a {
    display: block;
    color: var(--primary-color);
    transition: var(--transition);
}

.footer-wrap h3 a:hover {
    color: var(--primary-color);
}

.footer-wrap ul li a {
    display: block;
    color: #555;
    transition: var(--transition);
}

.footer-wrap ul li a:hover {
    color: var(--primary-color);
    letter-spacing: .5px;
}


.footer-contact li {
    display: flex;
}

.footer-contact li i {
    font-size: 22px;
    margin-right: 12px;
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-contact li span {
    display: block;
    font-size: 15px;
    line-height: 1.3;
    color: #555;
    transition: var(--transition);
}

.footer-contact li span:hover {
    color: var(--primary-color);
}

.footer-contact li span a {
    display: block;
    color: #555;
    transition: var(--transition);
}

.footer-contact li span a:hover {
    color: var(--primary-color);
}

.footer-contact li+li {
    margin-top: 15px;
}

.footer-menu li+li {
    margin-top: 15px;
}

.footer-menu li a {
    color: #555;
    font-size: 14px;
    /* padding-left: 25px; */
    position: relative;
    display: block;
    transition: var(--transition);
}

/* .footer-menu li a::before {
    position: absolute;
    content: '\f101';
    left: 0;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 10px;
    top: 50%;
    transform: translateY(-50%);
} */

.footer-menu li a:hover {
    color: var(--primary-color);
}

.footer-bottom-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    margin-bottom: 0;
    font-size: 15px;
    color: #555 !important;
}

.develop span {
    display: block;
    font-size: 15px;
    color: #555;
}

.develop span img {
    height: 30px;
    width: auto;
    margin-left: 5px;
}

.footer-bottom {
    padding: 12px 0;
    background: rgba(255, 83, 0, 0.12);
}

.footer .col-lg-4:nth-child(2) .footer-wrap {
    padding-left: 20px;
}

/* Footer End  */


/* About Us Page  */
.banner {
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.banner::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #000;
    opacity: 0.60;
    z-index: -1;
}

.banner-wrap {
    display: flex;
    justify-content: center;
    /* justify-content: flex-start; */
    /* align-items: center; */
    flex-direction: column;
    height: 350px;

}

.banner-wrap h2 {
    font-size: 45px;
    color: var(--white-color);
    font-weight: 500;
    margin-bottom: 0;
    text-shadow: 1px 0 2px #595959;
}

.breadcrumb {
    background-color: var(--primary-color);
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style-type: none;
    margin-bottom: 0;
    margin-top: 60px;
    padding: 6px 10px;
    position: relative;
    z-index: 0;
}

.breadcrumb::after,
.breadcrumb::before {
    background-color: inherit;
    bottom: 0;
    content: "";
    position: absolute;
    top: 0;
    width: 50%;
    z-index: -1;
}

.breadcrumb::before {
    transform: skewX(-30deg);
    left: -25px;
}

.breadcrumb::after {
    transform: skewX(30deg);
    right: -25px;
}

.banner-wrap nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
}

.breadcrumb-item {
    font-size: 19px;
    font-weight: 500;
    padding: 7px 0;
}

.breadcrumb-item a {
    color: var(--white-color);
}

.breadcrumb-item.active {
    color: rgb(214 214 214);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '\f101';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 14px;
    color: var(--white-color);
    margin-top: 5px;
}

.about-us-page .about-content p {
    margin-top: 25px;
}

.about-point-content {
    margin-right: 40px;
    padding-right: 10px;
    height: 530px;
    overflow-x: hidden;
    overflow-y: auto;
}

.about-point-content h3 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.about-point-content p {
    margin-bottom: 0;
    margin-top: 20px;
    line-height: 1.7;
}

.about-point-content ul {
    margin-top: 25px;
}

.about-point-content ul li {
    font-size: 15px;
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

.about-point-content ul li::before {
    position: absolute;
    content: '';
    left: 0;
    height: 8px;
    width: 8px;
    background: var(--primary-color);
    top: 10px;
}

.about-point-content ul li+li {
    margin-top: 10px;
}

.about-point-img {
    height: 470px;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.about-point-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.about-point .nav-tabs {
    position: absolute;
    bottom: 30px;
    right: 55px;
    border: none;
    background: var(--white-color);
    border-radius: 5px;
    box-shadow: 0 10px 20px #ededf1;
    z-index: 10;
}

.about-point-wrap {
    position: relative;
}

.about-point .nav-tabs .nav-item {
    width: 33.3333%;
    white-space: nowrap;
}

.about-point .nav-tabs .nav-item .nav-link {
    padding: 15px 30px;
    font-size: 20px;
    font-weight: 500;
    color: var(--dark-color);
    border: none;
    width: 100%;
    border-radius: 0;
    background: transparent;
}

.about-point .nav-tabs .nav-item:first-child .nav-link {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.about-point .nav-tabs .nav-item:last-child .nav-link {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.about-point .nav-tabs .nav-item+.nav-item .nav-link {
    /* border-left: 1px solid var(--border-color); */
}

.about-point .nav-tabs .nav-link.active {
    background: var(--primary-color);
    color: var(--white-color);
}

.about-point.mb {
    margin-bottom: 70px;
}

/* ABout Us Page End  */


/* Team Page  */
.inner-title img {
    height: 38px;
    width: auto;
    margin-right: 7px;
}

.inner-title h2 {
    margin-bottom: 0;
    font-size: 38px;
}

.inner-title {
    text-align: center;
    margin-bottom: 10px;
}

.team-img {
    height: 218px;
    width: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin: auto;
}

.team-img a {
    display: block;
}

.team-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.team-content {
    margin-top: 15px;
}

.team-wrap {
    text-align: center;
    margin-top: 30px;
}

.team-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
}

.team-content h3 a {
    display: block;
    color: var(--dark-color);
    transition: var(--transition);
}

.team-content h3 a:hover {
    color: var(--primary-color);
}

.team-content span {
    display: block;
    margin-top: 3px;
    font-size: 15px;
    color: #838383;
}

.team-col+.team-col {
    border-top: 1px solid var(--border-color);
    margin-top: 50px;
    padding-top: 50px;
}

/* Team Page End  */


/* Message Page  */
.message-content .inner-title {
    text-align: left;
    margin-bottom: 30px;
}

.message-content span {
    display: block;
    font-size: 22px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.4;
}

.message-content p {
    margin-bottom: 0;
    margin-top: 25px;
    font-size: 18px;
}

.message-page .row {
    align-items: center;
}

.feature-page.mt {
    margin-top: 70px;
}

.program-page .service-box-items {
    margin-top: 25px;
}

.program-page.pt {
    padding-top: 75px;
}

/* Message Page End  */


/* Program Details  */
.program-details-head {
    background: var(--primary-color);
    position: sticky;
    top: 87px;
    z-index: 10;
}

.program-details-head ul {
    display: flex;
    align-items: center;
}

.program-details-head ul li a {
    display: block;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 500;
    padding: 15px 30px;
    transition: var(--transition);
}

.program-details-head ul li a:hover {
    background: #1427de;
}

.program-details-head ul li a i {
    margin-right: 5px;
}

.program-details-head ul li.active a {
    background: #1427de;
}

.program-details-wrap {
    margin-top: 50px;
}

.program-details-list h3 {
    font-size: 35px;
    margin-bottom: 20px;
}

.program-details-wrap p {
    font-size: 18px;
}

.program-details-wrap p:last-child {
    margin-bottom: 0;
}

.program-details-list+.program-details-list {
    border-top: 15px solid rgba(225, 225, 225, 0.2);
    margin-top: 50px;
    padding-top: 50px;
}

.program-info-wrap {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.program-info-icon {
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    background: var(--bg-color);
    border-radius: 100%;
}

.program-info-icon i {
    font-size: 32px;
    line-height: 60px;
    color: var(--primary-color);
}

.program-info-content {
    width: calc(100% - 60px);
    padding-left: 18px;
}

.program-info-content span {
    display: block;
    font-size: 18px;
}

.program-info-content h4 {
    margin-bottom: 0;
    font-size: 25px;
    margin-top: 5px;
}

.program-details-info h3 {
    margin-bottom: 0;
}

.infos-list li {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    padding-left: 28px;
}

.infos-list li::before {
    position: absolute;
    content: '\f058';
    left: 0;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    color: var(--primary-color);
}

.infos-list li+li {
    margin-top: 15px;
}

.career-outcome {
    background-image: url(../img/career.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 80px;
    padding-top: 80px !important;
    border-top: none !important;
}

.program-facilities {
    border-top: none !important;
    margin-top: 0 !important;
}

.program-gallery-wrap {
    height: 200px;
    overflow: hidden;
    margin-top: 25px;
    cursor: pointer;
    border-radius: 5px;
}

.program-gallery-wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: ease-in-out .9s;
}

.program-gallery-wrap:hover img {
    transform: scale(1.10);
}

.program-gallery h3 {
    margin-bottom: 5px;
}

.program-facilities h3 {
    margin-bottom: 10px;
}

/* Program Details End  */


/* General Page  */
.general-featured-img {
    height: 340px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 35px;
}

.general-featured-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.geneal-content h3 {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 15px;
    margin-top: 30px;
}

.list-design {
    margin-top: 25px;
    margin-bottom: 20px;
}

.list-design li {
    font-size: 18px;
    line-height: 1.5;
    color: var(--dark-color);
    padding-left: 30px;
    position: relative;
}

.list-design li::before {
    position: absolute;
    content: '\f058';
    left: 0;
    top: 2px;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    color: var(--primary-color);
}

.list-design li+li {
    margin-top: 15px;
}

.general-page-sidebar {
    margin-left: 20px;
}

.general-page-menu {
    /* padding: 30px; */
    background: var(--white-color);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.general-page-menu h3 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
    line-height: 1.1;
}

.general-page-menu h3::before {
    position: absolute;
    content: '';
    left: 0;
    top: 6px;
    height: 25px;
    width: 4px;
    /* background: var(--primary-color); */
}

.general-page-menu ul li a {
    font-size: 14px;
    font-weight: 400;
    color: var(--dark-color);
    display: block;
    transition: var(--transition);
    /* border-bottom: 0.5px solid #0a0a0a4a; */
}

.general-page-menu ul li a:hover {
    color: var(--primary-color);
    letter-spacing: .5px;
}

.general-page-menu ul li a i {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 7px;
    vertical-align: middle;
}

.general-page-menu ul li+li a {
    /* margin-top: 12px; */
    padding: 7px;
}

.call-to-action {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--primary-color);
}

.cta-content {
    padding: 30px;
}

.cta-img {
    height: 250px;
    overflow: hidden;
}

.cta-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-content h3 {
    font-size: 25px;
    color: var(--white-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.cta-content p {
    color: #ebebeb;
    line-height: 1.4;
}

.call-us a {
    display: block;
    color: var(--white-color);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -.3px;
}

.call-us a i {
    vertical-align: middle;
    margin-right: 5px;
    font-size: 34px;
}

.cta-btn {
    display: flex;
    margin-top: 20px;
}

.cta-btn a {
    display: block;
    flex: 1;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 17px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 50px;
    text-align: center;
    transition: var(--transition);
}

.cta-btn a:first-child:hover {
    background: #eb7800;
}

.cta-btn a+a {
    margin-left: 10px;
    background: var(--white-color);
    color: var(--primary-color);
}

.cta-btn a+a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/* General Page End  */

/* Blogs search */
.blog-search-bar {
    background: #fff;
    border-radius: 14px;
    padding: 18px 18px;
    margin-bottom: 20px;
    box-shadow: 0 12px 30px rgba(16, 24, 40, .08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.blog-search-bar .search-left h3 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 800;
    color: #0b1b33;
}

.blog-search-bar .search-left p {
    margin: 0;
    font-size: 13px;
    color: #667085;
}

.blog-search-bar .search-right {
    min-width: 320px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-search-bar .search-input {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f6f8fb;
    border: 1px solid #e6eaf0;
    border-radius: 12px;
    padding: 10px 12px;
}

.blog-search-bar .search-input i {
    font-size: 18px;
    color: #667085;
}

.blog-search-bar .search-input input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #111827;
}

.blog-search-bar .clear-btn {
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 10px;
    color: #667085;
}

.blog-search-bar .clear-btn:hover {
    background: rgba(0, 0, 0, .06);
    color: #111827;
}

.blog-search-bar .search-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #667085;
}

#noResults {
    color: #b42318;
    font-weight: 700;
}


/* Mobile */
/* @media(max-width: 768px) {
    .blog-search-bar {
        padding: 16px;
    }

    .blog-search-bar .search-right {
        min-width: 100%;
    }
} */

/* End Blogs search */


/* Contact Us Page  */
.contact-cards {
    padding-top: 10px;
}

.contact-card {
    position: relative;
    border-radius: 22px;
    padding: 34px 26px 30px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.08);
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.06);
    min-height: 230px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 55px rgba(2, 6, 23, 0.12);
}

.contact-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: var(--dark-color);
}

.contact-card__text {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: #64748b;
    /* font-weight: 500; */
}

.contact-card__accent {
    margin: 6px 0 4px;
    /* font-weight: 700; */
    font-size: 13px;
}

.contact-card__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: var(--primary-color);
}

.contact-card__link i {
    font-size: 18px;
}

.contact-card__link:hover {
    opacity: .9;
}

.contact-card__icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    box-shadow: 0 14px 28px rgba(2, 6, 23, 0.10);
}

.contact-card__icon i {
    font-size: 30px;
    color: #fff;
}

/* soft gradient backgrounds like your image */
.bg-lavender {
    background: linear-gradient(135deg, #e7e2ff 0%, #e9f0ff 55%, #efe9ff 100%);
}

.bg-mint {
    background: linear-gradient(135deg, #d6fff1 0%, #d7fbff 55%, #dff7ff 100%);
}

.bg-peach {
    background: linear-gradient(135deg, #ffe3d6 0%, #ffe7de 55%, #fff0e8 100%);
}

.bg-violet {
    background: linear-gradient(135deg, #e3e6ff 0%, #ece9ff 55%, #f0e6ff 100%);
}

/* icon colors */
.icon-purple {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

.icon-green {
    background: linear-gradient(135deg, #16a34a, #047857);
}

.icon-orange {
    background: linear-gradient(135deg, #f97316, #dc2626);
}

.icon-pink {
    background: linear-gradient(135deg, #a855f7, #db2777);
}

/* accent colors */
.accent-green {
    color: #0f766e;
}

.accent-orange {
    color: #ea580c;
}

/* spacing helper if your theme doesn't have row gap */
.row.g-4>* {
    padding-top: 0px;
    padding-bottom: 0px;
}

/* ===== Improve your existing form button ===== */
.btn-primary-modern {
    margin-top: 15px;
    background: var(--primary-color);
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-color);
    padding: 12px 30px;
    border-radius: 5px;
    transition: var(--transition);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.btn-primary-modern:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-1px);
}

/* ===== Keep your existing form styles (optional minor upgrade) ===== */
.contact-us-form {
    /* background: var(--bg-color);
  border: 1px solid var(--border-color); */
    /* border-radius: 14px; */
    padding: 30px;
    margin-top: 30px;

    border-color: #F5F5F5;
    border-radius: 12px 12px 12px 12px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.10196078431372549);
}

.contact-us-form .form-control {
    height: 45px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    font-size: 13px;
}

.contact-us-form textarea.form-control {
    height: 140px;
}

.contact-us-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--primary-color);
}

/* Responsive */
/* @media (max-width: 575px){
  .contact-card{ padding: 28px 20px 26px; }
  .contact-card h3{ font-size: 26px; }
  .contact-card__text, .contact-card__accent, .contact-card__link{ font-size: 17px; }
} */
/* Contact Us Page End  */


/* FAQs Page */

.faq-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 48px;
}

.faq-header h3 {
    font-size: 34px;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.4px;
}

.faq-header h3 em {
    font-style: italic;
    color: var(--main-color);
}

.faq-header p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.75;
}

.faq-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-color);
    border-radius: 14px;
    border: 1.5px solid rgba(0, 0, 0, 0.07);
    padding: 22px 32px;
    max-width: 660px;
    margin: 0 auto 50px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.faq-stat {
    flex: 1;
    text-align: center;
    padding: 0 14px;
}

.faq-stat strong {
    display: block;
    font-size: 21px;
    font-weight: 800;
    color: var(--main-color);
    line-height: 1.2;
    letter-spacing: -0.4px;
}

.faq-stat span {
    display: block;
    font-size: 10.5px;
    font-weight: 500;
    color: var(--text-color);
    letter-spacing: 0.4px;
    margin-top: 3px;
    text-transform: uppercase;
}

.faq-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.faq-wrap {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--white-color);
    border-radius: 14px;
    border: 1.5px solid rgba(0, 0, 0, 0.07);
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);

    /* Stagger entrance */
    opacity: 0;
    translate: 0 18px;
    animation: faqIn 650ms cubic-bezier(0.19, 1, 0.22, 1) forwards;

    transition:
        transform 500ms cubic-bezier(0.19, 1, 0.22, 1),
        box-shadow 500ms cubic-bezier(0.19, 1, 0.22, 1),
        border-color 400ms ease;
}

.faq-item:nth-child(1) {
    animation-delay: 0.06s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.12s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.18s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.24s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.30s;
}

.faq-item:nth-child(6) {
    animation-delay: 0.36s;
}

.faq-item:nth-child(7) {
    animation-delay: 0.42s;
}

.faq-item:nth-child(8) {
    animation-delay: 0.48s;
}

.faq-item:nth-child(9) {
    animation-delay: 0.54s;
}

.faq-item:nth-child(10) {
    animation-delay: 0.60s;
}

@keyframes faqIn {
    to {
        opacity: 1;
        translate: 0 0;
    }
}

/* Left accent bar grows on open */
.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--main-color);
    border-radius: 0 2px 2px 0;
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.faq-item.open::before {
    transform: scaleY(1);
}

.faq-item:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: rgba(0, 0, 0, 0.10);
}

.faq-item.open {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
    transform: translateY(-3px);
    border-color: rgba(0, 0, 0, 0.10);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 300ms ease;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.012);
}

.faq-num {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--main-color);
    opacity: 0.5;
    min-width: 22px;
    flex-shrink: 0;
    font-family: 'Courier New', monospace;
    transition: opacity 350ms ease;
}

.faq-item.open .faq-num {
    opacity: 1;
}

.faq-text {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.45;
    transition: color 350ms ease;
}

.faq-item.open .faq-text {
    color: var(--main-color);
}

.faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: var(--dark-color);
    transition:
        transform 550ms cubic-bezier(0.19, 1, 0.22, 1),
        background 350ms ease,
        color 350ms ease,
        box-shadow 350ms ease;
}

.faq-item:hover .faq-icon {
    background: rgba(0, 0, 0, 0.08);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    /* background: var(--primary-color); */
    color: var(--dark-color);
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.15); */
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 580ms cubic-bezier(0.19, 1, 0.22, 1);
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
    padding: 0 22px 0 60px;
    opacity: 0;
    translate: 0 8px;
    transition:
        padding 550ms cubic-bezier(0.19, 1, 0.22, 1),
        opacity 480ms ease 70ms,
        translate 550ms cubic-bezier(0.19, 1, 0.22, 1) 50ms;
}

.faq-item.open .faq-answer-inner {
    padding: 0 22px 20px 60px;
    opacity: 1;
    translate: 0 0;
}

/* Animated separator */
.faq-answer-inner::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.07) 0%, transparent 75%);
    margin-bottom: 14px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.faq-item.open .faq-answer-inner::before {
    transform: scaleX(1);
    transition-delay: 120ms;
}

.faq-answer-inner p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 10px;
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

.faq-list {
    list-style: none;
    padding: 4px 0;
    margin: 4px 0 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-list li {
    font-size: 14px;
    color: var(--text-color);
    padding-left: 18px;
    position: relative;
    line-height: 1.65;
}

.faq-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--main-color);
    opacity: 0.6;
}

.faq-cta {
    max-width: 1000px;
    margin: 36px auto 0;
}

.faq-cta-inner {
    display: flex;
    align-items: center;
    gap: 22px;
    background: var(--white-color);
    border-radius: 16px;
    padding: 26px 30px;
    border: 1.5px solid rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.07);
    transition:
        transform 500ms cubic-bezier(0.19, 1, 0.22, 1),
        box-shadow 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.faq-cta-inner:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 50px rgba(0, 0, 0, 0.10);
}

.faq-cta-glow {
    position: absolute;
    right: -50px;
    top: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 65%);
    pointer-events: none;
}

.faq-cta-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    flex-shrink: 0;
}

.faq-cta-text {
    flex: 1;
}

.faq-cta-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.faq-cta-text p {
    font-size: 13px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.faq-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.faq-btn svg {
    transition: translate 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.faq-btn:hover svg {
    translate: 4px 0;
}

/* @media (max-width: 768px) {
    .faq-header h3 { font-size: 26px; }
    .faq-stats { padding: 18px 16px; }
    .faq-stat strong { font-size: 17px; }
    .faq-stat span { font-size: 9.5px; }
    .faq-answer-inner,
    .faq-item.open .faq-answer-inner { padding-left: 22px; }
    .faq-num { display: none; }
    .faq-question { padding: 16px 18px; }
    .faq-cta-inner { flex-direction: column; text-align: center; gap: 16px; }
}
@media (max-width: 480px) {
    .faq-stat-divider { display: none; }
    .faq-stats { flex-wrap: wrap; gap: 12px; }
    .faq-stat { min-width: 45%; }
} */
/* End FAQs Page */

/* Events Details Page  */
.events-page .news-event-wrap {
    margin-top: 40px;
    border: 1px solid var(--dark-color);
}

.events-page.mt1 {
    margin-top: 40px;
}


.events-details-page ul li a {
    display: flex;
    line-height: 1.4;
}

.events-details-page ul li a i {
    margin-top: 4px;
    margin-right: 12px;
}

.events-details-page ul li+li a {
    margin-top: 20px;
}

/* Events Details Page End  */


/* Enquiry Page  */
.enquiry-page-content h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.enquiry-page-form {
    background: var(--primary-color);
    padding: 35px;
}

.enquiry-page-form h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 20px;
}

.enquiry-page-content {
    padding: 60px 0;
}

.enquiry-page-form .form-control {
    background-color: var(--white-color);
    border: 1px solid var(--white-color);
    border-radius: 0;
    height: 50px;
    color: #818181;
}

.enquiry-page-form .form-control::placeholder {
    color: #818181;
}

.enquiry-page-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid var(--primary-color);
}

.enquiry-page-form .form-group {
    margin-bottom: 20px;
}

.enquiry-page-form button {
    width: 100%;
    border: none;
    background: var(--primary-color);
    font-size: 20px;
    padding: 10px 15px;
    font-weight: 500;
    color: var(--white-color);
    transition: var(--transition);
}

.enquiry-page-form button:hover {
    background: #e67600;
}

/* Enquiry Page End  */


/* Apply Online  */
.apply-form-wrap {
    background: var(--white-color);
    max-width: 900px;
    margin: auto;
    box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.15);
    padding: 30px;
    border-radius: 7px;
}

.apply-form-head {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.apply-logo img {
    height: 50px;
    width: auto;
}

.apply-form-head-info h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.apply-form-head-info p {
    margin-bottom: 0;
    line-height: 1.3;
}

.apply-form-head-info span {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 10px;
}

.apply-form-photo {
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 7px;
    width: 150px;
    padding: 20px 15px;
    cursor: pointer;
    position: relative;
}

.apply-form-photo span {
    display: block;
    line-height: 1.1;
}

.apply-form-photo span+span {
    margin-top: 7px;
}

.apply-form-body>span {
    display: block;
    font-size: 18px;
    color: red;
    font-weight: 500;
    margin-bottom: 15px;
}

.apply-form-body {
    margin-top: 20px;
}

.apply-form-list h3 {
    background: var(--primary-color);
    font-size: 18px;
    text-transform: uppercase;
    color: var(--white-color);
    font-weight: 600;
    padding: 5px 12px;
    margin-bottom: 5px;
}

.apply-form-list label {
    color: var(--dark-color);
    display: block;
    margin-bottom: 5px;
}

.apply-form-list .form-control {
    border: 1px solid var(--border-color);
    border-radius: 3px;
    height: 36px;
}

.apply-form-list .form-group {
    margin-top: 10px;
}

.apply-form-list .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--primary-color);
}

.apply-form-list+.apply-form-list {
    margin-top: 30px;
}

.apply-form-list textarea.form-control {
    height: 100px;
}

.apply-btn {
    margin-top: 25px;
}

.apply-btn button {
    width: 100%;
    border: none;
    background: var(--primary-color);
    padding: 10px 15px 12px;
    font-size: 20px;
    font-weight: 600;
    color: var(--white-color);
    border-radius: 3px;
    transition: var(--transition);
}

.apply-btn button:hover {
    background: var(--primary-color);
}

.apply-page {
    margin: 50px 0;
}

#file-upload {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
}

/* Apply Online End  */


/* Skip Ads */
.only-mobile {
    display: none;
}

.skip-ads {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 9999;
    background: rgb(0 0 0 / 80%);
    padding: 20px 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.skip-ads-wrap {
    height: 100vh;
    position: relative;
    max-width: 800px;
    margin: auto;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skip-ads-col {
    position: relative;
}

.skip-ads-head {
    position: absolute;
    top: -10px;
    right: -10px;
}

.skip-ads-head img {
    width: auto;
    height: 50px;
}

.skip-ads-head .btn {
    background-image: linear-gradient(to right, #30318B 0%, #30318B 50%, #30318B 100%);
    border: none;
    padding: 0;
    font-weight: 500;
    font-size: 14px;
    height: 30px;
    width: 30px;
    line-height: 31px;
    text-align: center;
    border-radius: 100%;
}

.skip-ads-head .btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

.skip-ads.active {
    opacity: 0;
    visibility: hidden;
    transition: ease-in-out .5s;
}

/* Skip Ads End */


/* Notice Page  */
.notice-wrap {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    margin-top: 25px;
}

.notice-page.mt1 {
    margin-top: 55px;
}

/* Notice Page End  */


/*----- Yatra Trip Section - Smooth Animations ----*/
.yatra-trip-section {
    background: var(--white-color);
    padding-top: 70px;
    padding-bottom: 70px;
}

.yatra-trip-explore {
    position: relative;
}

/* Heading */
.yatra-trip-heading {
    text-align: left;
    margin-bottom: 40px;
    position: relative;
}

.yatra-trip-heading h2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--black-color);
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.yatra-trip-heading h2 span:first-child {
    color: var(--main-color);
    display: block;
    margin-bottom: 5px;
}

/* Featured Card */
.yatra-trip-featured-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    min-height: 360px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    will-change: transform, box-shadow;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.yatra-trip-featured-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-12px);
}

/* Grid Card */
.yatra-trip-grid-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 195px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    will-change: transform, box-shadow;
    transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.yatra-trip-grid-card:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    transform: translateY(-10px);
}

/* Card Link */
.yatra-trip-card-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

/* Images - Smooth Slow Zoom */
.yatra-trip-featured-image,
.yatra-trip-grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
    transition: transform 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.yatra-trip-featured-card:hover .yatra-trip-featured-image {
    transform: scale(1.12) translateZ(0);
}

.yatra-trip-grid-card:hover .yatra-trip-grid-image {
    transform: scale(1.1) translateZ(0);
}

/* Card Overlay - Smooth Fade & Slide */
.yatra-trip-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            transparent 100%);
    padding: 35px 20px 20px;
    z-index: 2;
    will-change: padding;
    transition: padding 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.yatra-trip-featured-card:hover .yatra-trip-card-overlay {
    padding: 40px 20px 25px;
}

.yatra-trip-grid-card:hover .yatra-trip-card-overlay {
    padding: 30px 18px 18px;
}

/* Card Content */
.yatra-trip-card-content {
    position: relative;
    z-index: 3;
}

.yatra-trip-card-title,
.yatra-trip-card-subtitle {
    margin: 0;
    color: var(--white-color);
    font-weight: 500;
    line-height: 1.4;
    will-change: color;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.yatra-trip-card-title {
    font-size: 24px;
    margin-bottom: 10px;
    overflow: hidden;
}

.yatra-trip-card-title a {
    color: var(--white-color);
    text-decoration: none;
    display: block;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.yatra-trip-featured-card:hover .yatra-trip-card-title a {
    color: var(--main-color);
}

.yatra-trip-card-subtitle {
    font-size: 13px;
}

.yatra-trip-card-subtitle a {
    color: var(--white-color);
    text-decoration: none;
    display: block;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.yatra-trip-grid-card:hover .yatra-trip-card-subtitle a {
    color: var(--main-color);
}

/* Count Info - Smooth Appearance */
.yatra-trip-count-info {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-top: 8px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
    will-change: opacity;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.yatra-trip-featured-card:hover .yatra-trip-count-info {
    opacity: 1;
}

.yatra-trip-count-info i {
    margin-right: 0;
    color: var(--main-color);
    font-size: 12px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.yatra-trip-featured-card:hover .yatra-trip-count-info i {
    transform: scale(1.2);
}

.yatra-trip-count-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 11px;
    margin-top: 8px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    will-change: background, transform;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.yatra-trip-grid-card:hover .yatra-trip-count-badge {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
}

/* Badge - Smooth Scale & Color */
.yatra-trip-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--main-color);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    will-change: transform, background-color, color, box-shadow;
    transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateZ(0);
}

.yatra-trip-featured-badge {
    padding: 10px 14px;
    font-size: 13px;
}

.yatra-trip-card-link:hover .yatra-trip-badge {
    background: var(--main-color);
    color: var(--white-color);
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.yatra-trip-badge i {
    font-size: 14px;
    color: #f4b400;
    will-change: color, transform;
    transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.yatra-trip-card-link:hover .yatra-trip-badge i {
    color: var(--white-color);
    transform: rotate(15deg) scale(1.15);
}

/* Empty State */
.yatra-trip-empty-state {
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f4f8 100%);
    border-radius: 14px;
    padding: 60px 40px;
    text-align: center;
    border: 2px dashed #e0e8f0;
    animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.yatra-trip-empty-state i {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 20px;
    display: block;
    opacity: 0.6;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.yatra-trip-empty-state:hover i {
    opacity: 0.8;
    transform: scale(1.1) rotateZ(-5deg);
}

.yatra-trip-empty-state h5 {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    margin-bottom: 10px;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.yatra-trip-empty-state:hover h5 {
    color: var(--main-color);
}

.yatra-trip-empty-state p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

/* Section subtitle */
.section-sub {
    font-size: 16px;
    color: #666;
    margin-top: 8px;
}

/* Featured card category tag */
.yatra-trip-cat-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-color);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 30px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.4px;
}

/* Featured card description */
.yatra-trip-card-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
    margin: 6px 0 14px;
    letter-spacing: 0.3px;
}

/* Featured card explore button */
.yatra-trip-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 30px;
    text-decoration: none;
    /* border: 1px solid rgba(255, 255, 255, 0.35); */
    backdrop-filter: blur(6px);
    transition: background 0.3s, border-color 0.3s;
}

.yatra-trip-explore-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Section CTA button */
.yatra-trip-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--dark-color);
    font-size: 15px;
    font-weight: 600;
    padding: 13px 32px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid var(--dark-color);
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.yatra-trip-cta-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* ========================================
   Keyframe Animations
   ======================================== */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* End  */


/* ========================================
   YATRA GENERAL & REVIEWS - ULTRA COMPACT
   ======================================== */

.yatra-general-section {
    padding: 40px 0;
    /* background: linear-gradient(135deg, #fafbfc 0%, #f3f5f9 50%, #ffffff 100%); */
    background: linear-gradient(135deg, #1a1a1a 0%, #242424 50%, #1f1f1f 100%);
    position: relative;
    overflow: hidden;
}

.yatra-bg-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    pointer-events: none;
}

.yatra-bg-1 {
    width: 400px;
    height: 400px;
    background: #FF5300;
    top: -100px;
    right: -50px;
    animation: float 8s ease-in-out infinite;
}

.yatra-bg-2 {
    width: 300px;
    height: 300px;
    background: #FF5300;
    bottom: -50px;
    left: -80px;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }
}

.yatra-general-wrapper {
    position: relative;
    z-index: 1;
}

.yatra-general-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 18px;
    text-align: center;
    /* background: linear-gradient(135deg, #1a1a1a 0%, #FF5300 100%); */
    background: linear-gradient(135deg, #fff 0%, #FF5300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideDown 0.6s ease 0.2s backwards;
    letter-spacing: -1px;
}

.yatra-general-intro {
    font-size: 15px;
    line-height: 1.7;
    color: #aaa;
    text-align: center;
    margin-bottom: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: slideDown 0.6s ease 0.3s backwards;
}

.yatra-reviews-wrapper {
    margin-top: 35px;
    position: relative;
    z-index: 1;
}

.yatra-reviews-header {
    text-align: center;
    margin-bottom: 25px;
}

.yatra-reviews-title {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 6px;
    animation: slideDown 0.6s ease 0.4s backwards;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.yatra-reviews-title i {
    font-size: 20px;
    color: #FF5300;
}

.yatra-reviews-subtitle {
    font-size: 12px;
    color: #888;
    margin: 0;
    animation: slideDown 0.6s ease 0.5s backwards;
}

.yatra-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.yatra-review-item {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: slideUp 0.6s ease backwards;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
    position: relative;
}

.yatra-review-item:nth-child(1) {
    animation-delay: 0.6s;
}

.yatra-review-item:nth-child(2) {
    animation-delay: 0.7s;
}

.yatra-review-item:nth-child(3) {
    animation-delay: 0.8s;
}

.yatra-review-item:nth-child(4) {
    animation-delay: 0.9s;
}

.yatra-review-item:nth-child(5) {
    animation-delay: 1s;
}

.yatra-review-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF5300, #ff6b1a, #FF5300);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.yatra-review-item:hover::before {
    transform: scaleX(1);
}

.yatra-review-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(255, 83, 0, 0.08);
    border-color: rgba(255, 83, 0, 0.1);
}

.yatra-review-inner {
    /* padding: 12px 10px; */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
}

.yatra-review-platform {
    width: 45px;
    height: 45px;
    background: #f5f7fa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.yatra-review-item:hover .yatra-review-platform {
    background: linear-gradient(135deg, rgba(255, 83, 0, 0.1) 0%, rgba(255, 83, 0, 0.05) 100%);
    transform: scale(1.08);
}

.yatra-review-platform img {
    max-width: 28px;
    max-height: 28px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.yatra-review-item:hover .yatra-review-platform img {
    transform: scale(1.1);
}

.yatra-platform-name {
    font-size: 11px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
    transition: color 0.4s ease;
}

.yatra-review-item:hover .yatra-platform-name {
    color: #FF5300;
}

.yatra-review-badge {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.yatra-score {
    display: inline-block;
    font-size: 14px;
    font-weight: 800;
    color: #FF5300;
}

.yatra-stars {
    display: inline-block;
    font-size: 10px;
    color: #ffc107;
    letter-spacing: 0.8px;
    transition: all 0.4s ease;
}

.yatra-review-item:hover .yatra-stars {
    text-shadow: 0 0 6px rgba(255, 193, 7, 0.4);
    transform: scale(1.04);
}

.yatra-review-count {
    font-size: 9px;
    color: #888;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    line-height: 1.2;
}

.yatra-review-count i {
    color: #FF5300;
    font-size: 8px;
}

.yatra-trust-card {
    background: linear-gradient(135deg, #FF5300 0%, #ff6b1a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.yatra-trust-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.yatra-trust-card .yatra-review-inner {
    position: relative;
    z-index: 2;
}

.yatra-trust-icon-wrapper {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size: 20px;
    color: #fff;
    animation: float 3s ease-in-out infinite;
    flex-shrink: 0;
}

.yatra-trust-card .yatra-platform-name {
    color: #fff;
}

.yatra-trust-card:hover .yatra-platform-name {
    color: rgba(255, 255, 255, 0.9);
}

.yatra-trust-stats {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.yatra-stat {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.yatra-stat-number {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.yatra-stat-label {
    font-size: 7px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.2px;
    line-height: 1;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.05;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Travel Story Section */
.travel-story-section {
    background: #fff;
    overflow: hidden;
    position: relative;
}

.travel-story-section::before,
.travel-story-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.travel-story-section::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.travel-story-section::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.travel-story-heading {
    text-align: center;
    margin-bottom: 22px;
}

.travel-story-heading h2 {
    font-size: 30px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0 0 8px;
    line-height: 1.2;
}

/* Carousel override */
.travel-story-carousel.owl-carousel {
    padding: 0 20px;
}

.travel-story-carousel .owl-stage-outer {
    overflow: visible;
}

/* Portrait card */
.travel-story-slide-card {
    height: 260px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.travel-story-slide-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.travel-story-slide-card a {
    display: block;
    height: 100%;
}

.travel-story-slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.travel-story-slide-card:hover img {
    transform: scale(1.06);
}

/* Where to Next Destination Section */
.destination-next-section {
    background: #fff;
}

.destination-next-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 28px;
}

.destination-next-header h2 {
    font-size: 30px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
    text-align: center;
}

.destination-next-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.destination-next-more:hover {
    color: var(--primary-color);
}

.destination-next-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    height: 280px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-next-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.destination-next-card a {
    display: block;
    height: 100%;
    text-decoration: none;
}

.destination-next-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.destination-next-card:hover img {
    transform: scale(1.07);
}

.destination-next-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 16px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 100%);
}

.destination-next-info h4 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 3px;
    line-height: 1.2;
}

.destination-next-info span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
}

.destination-next-carousel.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50% !important;
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--dark-color) !important;
    transition: background 0.2s, color 0.2s;
}

.destination-next-carousel.owl-carousel .owl-nav button.owl-next:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.destination-next-carousel.owl-carousel .owl-nav button.owl-prev {
    display: none;
}

/* Video Section */
.video-bg-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 130px 0;
    text-align: center;
}

.video-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
}

.video-bg-inner {
    position: relative;
    z-index: 2;
}

.video-tag-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
}

.video-bg-inner h2 {
    color: #fff;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.video-bg-inner p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Play Button */
.video-play-btn {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.video-play-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.play-icon {
    font-size: 30px;
    color: var(--primary-color);
    margin-left: 4px;
    position: relative;
    z-index: 2;
}

.play-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: ripple-play 2s ease-out infinite;
}

@keyframes ripple-play {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* Popular Tours & Activities */
.popular-tours-section {
    background: #fff;
}

.popular-tours-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 28px;
}

.popular-tours-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.popular-tours-title {
    font-size: 30px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.popular-tours-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    white-space: nowrap;
    margin-bottom: 4px;
}

.popular-tours-more:hover {
    text-decoration: underline;
}

/* Tour Card */
.tour-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ebebeb;
    transition: box-shadow 0.2s, transform 0.2s;
    height: 100%;
}

.tour-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.tour-card-img {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f0f0f0;
}

.tour-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.tour-card:hover .tour-card-img img {
    transform: scale(1.05);
}

.tour-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #555;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.tour-wishlist:hover {
    background: #fff;
    color: #e53935;
}

.tour-card-body {
    padding: 14px 14px 16px;
}

.tour-card-cat {
    font-size: 11.5px;
    color: #888;
    margin-bottom: 5px;
}

.tour-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 8px;
}

.tour-tag {
    font-size: 11px;
    background: #f3f3f3;
    color: #444;
    border-radius: 4px;
    padding: 2px 8px;
    font-weight: 500;
}

.tour-card-rating {
    font-size: 12.5px;
    color: #555;
    margin-bottom: 8px;
}

.tour-card-rating i {
    color: #f5a623;
    font-size: 13px;
}

.tour-card-rating strong {
    color: var(--dark-color);
}

.tour-card-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.tour-card-price small {
    font-size: 12px;
    font-weight: 500;
    color: #777;
    margin-right: 2px;
}

/* Popular Tours & Activities End */

/* Tour Page */

/* Hero */
.tour-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 130px 0 60px;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
}

.tour-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.30) 60%, transparent 100%);
}

.tour-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.tour-hero-content h1 {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.tour-hero-content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.tour-hero-more {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
}

.tour-hero-more:hover {
    color: var(--primary-color);
}

/* Tab Nav */
.tour-tab-nav {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.tour-tab-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tour-tabs {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
}

.tour-tabs li a {
    display: block;
    padding: 16px 22px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.tour-tabs li a:hover {
    color: var(--primary-color);
}

.tour-tabs li a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    font-weight: 600;
}

.tour-share-btn {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: background 0.2s;
}

.tour-share-btn:hover {
    background: #f5f5f5;
    color: #333;
}

/* Filter Bar */
.tour-filter-bar {
    background: #fff;
    border-bottom: 1px solid #ebebeb;
    padding: 12px 0;
}

.tour-filter-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-filter-pills {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    overflow: hidden;
    flex: 1;
}

.tour-filter-pill {
    white-space: nowrap;
    padding: 7px 16px;
    border-radius: 50px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.tour-filter-pill:hover,
.tour-filter-pill.active {
    background: var(--dark-color);
    color: #fff;
    border-color: var(--dark-color);
}

.tour-filter-pill.pill-outline {
    font-weight: 600;
}

.tour-filter-arrows {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.tour-arrow-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 13px;
    color: #444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.tour-arrow-btn:hover {
    background: #f0f0f0;
}

/* Results Bar */
.tour-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.tour-results-count {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.tour-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-sort label {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.tour-sort-select {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 7px 32px 7px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23333' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat right 10px center;
    cursor: pointer;
}

.tour-sort-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Load More */
.tour-load-more {
    text-align: center;
    margin-top: 40px;
}

.tour-load-btn {
    padding: 12px 36px;
    border-radius: 50px;
    border: 1px solid #777474;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, color 0.2s;
}

.tour-load-btn:hover {
    background: var(--dark-color);
    color: #fff;
}

/* Tour Page End */

/* See More Trips */
.see-more-trips-wrap {
    text-align: center;
    padding: 10px 0 48px;
}

.see-more-trips-btn {
    display: inline-block;
    padding: 13px 40px;
    border-radius: 50px;
    border: 1.5px solid #222;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.see-more-trips-btn:hover {
    background: #222;
    color: #fff;
}

/* Top Attractions */
.top-attractions-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 28px;
}

.top-attractions-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ta-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    font-size: 16px;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, box-shadow 0.2s;
    z-index: 5;
}

.ta-nav-btn:hover {
    background: #f7f7f7;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
}

.top-attractions-carousel {
    flex: 1;
    min-width: 0;
}

.ta-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.ta-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.ta-card:hover img {
    transform: scale(1.05);
}

.ta-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.10) 55%, transparent 100%);
}

.ta-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.92);
    color: #222;
    font-size: 11.5px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.ta-card-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    color: #fff;
}

.ta-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.92);
    color: #222;
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.ta-rating-badge span {
    font-weight: 400;
    color: #555;
}

.ta-card-bottom h4 {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1.3;
}

.ta-card-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.80);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Reviews */
.ta-reviews-section {
    background: #f9f9f9;
}

.ta-review-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ta-review-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
}

.ta-reviewer-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3px;
}

.ta-review-date {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.ta-review-score {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.ta-score-label {
    font-size: 13px;
    font-weight: 700;
    color: #2a7a3b;
}

.ta-score-badge {
    background: #2a7a3b;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 6px;
}

.ta-review-text {
    font-size: 13.5px;
    color: #444;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.ta-review-tour {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #ebebeb;
    padding-top: 14px;
}

.ta-review-tour img {
    width: 48px;
    height: 38px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.ta-review-tour span {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

/* Top Attractions & Reviews End */

/* Explore More on Yatrasansar */
.explore-more-section {
    background: #fff;
}

.explore-more-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 28px;
}

.explore-more-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
}

.explore-tag {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid #ffe1d6;
    border-radius: 50px;
    background: #fff;
    text-decoration: none;
    overflow: hidden;
    font-size: 13.5px;
    font-weight: 500;
    color: #333;
    padding-right: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.explore-tag:hover {
    border-color: #f9d0c2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    color: #333;
}

.explore-tag-num {
    background: #fff3ef;
    color: #e6734d;
    font-size: 12px;
    font-weight: 700;
    min-width: 32px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-right: 1.5px solid #ffe1d6;
    flex-shrink: 0;
    margin-right: 10px;
}

/* Explore More End */

/* ===== Blog Section ===== */
.blog-section {
    background: #fff;
}

.blog-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 28px;
}

.blog-section-title {
    font-size: 30px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0 0 8px;
    line-height: 1.2;
}

.blog-section-line {
    width: 44px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.blog-view-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transition: gap 0.2s;
}

.blog-view-all:hover {
    gap: 9px;
}

/* Main 2-col grid */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

/* Colored category tags */
.blog-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 30px;
    line-height: 1;
}

.blog-tag--guide {
    background: #dcfce7;
    color: #15803d;
}

.blog-tag--recruit {
    background: #dbeafe;
    color: #1d4ed8;
}

.blog-tag--career {
    background: #ffedd5;
    color: #c2410c;
}

.blog-tag--employer {
    background: #ede9fe;
    color: #6d28d9;
}

.blog-tag--depart {
    background: #cffafe;
    color: #0e7490;
}

/* ---- Featured (Big) Card ---- */
.blog-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ebebeb;
    height: 100%;
    transition: box-shadow 0.25s, transform 0.25s;
}

.blog-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
    transform: translateY(-3px);
}

.blog-card-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
}

.blog-card-img-wrap--lg {
    height: 300px;
}

.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-img-wrap img {
    transform: scale(1.05);
}

.blog-cat-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    line-height: 1;
}

.blog-card-body {
    padding: 18px 20px 22px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11.5px;
    color: #aaa;
    margin-bottom: 10px;
}

.blog-card-meta i {
    color: var(--primary-color);
    margin-right: 3px;
}

.blog-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.45;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-title--lg {
    font-size: 20px;
    -webkit-line-clamp: 3;
    margin-bottom: 12px;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    font-size: 13.5px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}

.blog-card-link:hover {
    gap: 8px;
}

/* ---- Small Cards Column ---- */
.blog-smalls-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.blog-card-sm {
    display: flex;
    border-radius: 12px;
    border: 1px solid #ebebeb;
    overflow: hidden;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.25s, transform 0.25s;
}

.blog-card-sm:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.09);
    transform: translateY(-2px);
    color: inherit;
}

.blog-card-sm-img {
    position: relative;
    flex-shrink: 0;
    width: 130px;
    height: 105px;
    overflow: hidden;
}

.blog-card-sm-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.blog-card-sm:hover .blog-card-sm-img img {
    transform: scale(1.06);
}

.blog-card-sm-img .blog-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 9.5px;
    padding: 3px 8px;
}

.blog-card-sm-body {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.blog-card-sm-body .blog-card-meta {
    margin-bottom: 0;
    font-size: 11px;
}

.blog-card-sm-body .blog-card-title {
    font-size: 13.5px;
    margin-bottom: 0;
    -webkit-line-clamp: 2;
}

.blog-card-sm:hover .blog-card-sm-body .blog-card-title {
    color: var(--primary-color);
}

/* ===== Blog Section End ===== */

/* ===== Yatrasansar Experience Video Section ===== */

/* Section clips left overflow of stagePadding so only right peek is visible */
.ys-exp-section {
    background: #fff;
    overflow: hidden;
}

/* Header: title left, nav arrows right */
.ys-exp-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    margin-bottom: 36px;
}

.ys-exp-header-left {
    flex: 1;
    text-align: center;
}

.ys-exp-title {
    font-size: 30px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.ys-exp-sub {
    font-size: 14.5px;
    color: #666;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 560px;
    text-align: center;
}

/* Nav arrows — in header, right side */
.ys-exp-header-nav {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    padding-bottom: 4px;
}

.ys-exp-nav {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.22s, border-color 0.22s, color 0.22s, box-shadow 0.22s;
}

.ys-exp-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 14px rgba(255, 83, 0, 0.28);
}

/* Carousel wrap — allows right overflow for peek effect */
.ys-exp-wrap {
    position: relative;
}

/* Cards */
.ys-exp-card {
    cursor: pointer;
}

.ys-exp-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 14px;
    overflow: hidden;
    background: #111;
}

.ys-exp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s;
    opacity: 0.9;
}

.ys-exp-card:hover .ys-exp-thumb img {
    transform: scale(1.06);
    opacity: 0.72;
}

/* Play Button */
.ys-exp-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 22px;
    padding-left: 3px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s, box-shadow 0.25s;
}

.ys-exp-card:hover .ys-exp-play-btn {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.32);
}

/* Info below card */
.ys-exp-info {
    padding: 14px 2px 0;
    text-align: center;
}

.ys-exp-card-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 4px;
    line-height: 1.4;
}

.ys-exp-card-sub {
    font-size: 13px;
    color: #888;
}

/* Hide owl defaults */
.ys-exp-carousel .owl-nav,
.ys-exp-carousel .owl-dots {
    display: none !important;
}

/* ===== Yatrasansar Experience Video Section End ===== */

/* ===== Why Choose Us Section ===== */
.why-us-section {
    background: #f6f6f4;
}

/* Header */
.why-us-header {
    max-width: 720px;
    margin: 0 auto 48px;
}

.why-us-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.why-us-underline {
    width: 48px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    margin: 0 auto 18px;
}

.why-us-sub {
    font-size: 14.5px;
    color: #666;
    line-height: 1.75;
    margin: 0;
}

/* Cards */
.why-us-card {
    background: #fff;
    border-radius: 14px;
    padding: 36px 28px 32px;
    text-align: center;
    height: 100%;
    border: 1px solid #ebebeb;
    transition: box-shadow 0.25s, transform 0.25s;
}

.why-us-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.09);
    transform: translateY(-5px);
}

/* Icon */
.why-us-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #f0f0ec;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: background 0.25s;
}

.why-us-icon i {
    font-size: 30px;
    color: var(--dark-color);
    transition: color 0.25s;
}

.why-us-card:hover .why-us-icon {
    background: var(--primary-color);
}

.why-us-card:hover .why-us-icon i {
    color: #fff;
}

/* Accent card (highlighted) */
.why-us-card--accent {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.why-us-card--accent .why-us-icon--accent {
    background: rgba(255, 255, 255, 0.2);
}

.why-us-card--accent .why-us-icon--accent i {
    color: #fff;
}

.why-us-card--accent .why-us-card-title {
    color: #fff;
}

.why-us-card--accent .why-us-card-text {
    color: rgba(255, 255, 255, 0.85);
}

.why-us-card--accent:hover {
    box-shadow: 0 10px 30px rgba(255, 83, 0, 0.3);
    transform: translateY(-5px);
}

.why-us-card--accent:hover .why-us-icon--accent {
    background: rgba(255, 255, 255, 0.3);
}

/* Text */
.why-us-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    line-height: 1.35;
}

.why-us-card-text {
    font-size: 13.5px;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

/* CTA Button */
.why-us-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 2px solid var(--dark-color);
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-color);
    text-decoration: none;
    transition: background 0.22s, color 0.22s, border-color 0.22s, gap 0.2s;
}

.why-us-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    gap: 10px;
}

/* Responsive */
/* ===== Why Choose Us End ===== */

/* ===== Why Choose Us — Trip Vibe Style ===== */
.wcu-section {
    background: #212121;
    padding-bottom: 70px;
}

/* ── Centered Header ── */
.wcu-head {
    text-align: center;
    padding: 64px 0 44px;
    max-width: 620px;
    margin: 0 auto;
}

.wcu-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.wcu-title {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 14px;
}

.wcu-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin: 0;
}

/* ── Feature Cards Grid ── */
.wcu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.wcu-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    padding: 10px 10px 10px;
    text-align: center;
    transition: background 0.3s, transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.wcu-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--icon-color, var(--primary-color));
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: left;
}

.wcu-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-6px);
}

.wcu-card:hover::before {
    transform: scaleX(1);
}

/* Icon */
.wcu-card-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--icon-color, var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s;
}

.wcu-card:hover .wcu-card-icon-wrap {
    transform: rotate(-8deg) scale(1.1);
}

.wcu-card-icon-wrap i {
    font-size: 28px;
    color: #fff;
}

/* Text */
.wcu-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.3;
}

.wcu-card-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.75;
    margin: 0;
}

/* Responsive */
/* ===== Why Choose Us — Trip Vibe Style End ===== */

/* ===== Advanced Footer ===== */

/* Newsletter Strip */
.adv-footer-newsletter {
    background: rgba(255, 83, 0, 0.07);
    border-bottom: 1px solid rgba(255, 83, 0, 0.12);
    padding: 26px 0;
}

.afn-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.afn-text {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #111;
    flex-shrink: 0;
}

.afn-text>i {
    font-size: 30px;
    color: var(--primary-color);
    opacity: 1;
}

.afn-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 2px;
    color: #111;
}

.afn-text p {
    font-size: 13px;
    margin: 0;
    color: #666;
}

.afn-form {
    display: flex;
    flex: 1;
    max-width: 420px;
    min-width: 280px;
}

.afn-form input {
    flex: 1;
    border: 1px solid #ffe1d6;
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 11px 16px;
    font-size: 13.5px;
    outline: none;
    font-family: inherit;
    background: #fff;
    color: #222;
    transition: border-color 0.2s;
}

.afn-form input:focus {
    border-color: var(--primary-color);
}

.afn-form button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 11px 20px;
    font-size: 13.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
    font-family: inherit;
}

.afn-form button:hover {
    background: #e04800;
}

/* Footer Main Body */
.adv-footer-body {
    background: rgba(255, 83, 0, 0.07);
    padding: 60px 0 44px;
}

/* Brand Column */
.aff-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.aff-logo img {
    height: 38px;
    width: auto;
}

.aff-about {
    font-size: 13.5px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 22px;
}

.aff-social {
    display: flex;
    gap: 8px;
    margin-bottom: 26px;
}

.aff-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 15px;
    transition: background 0.22s, border-color 0.22s, color 0.22s;
    text-decoration: none;
}

.aff-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.aff-apps {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.aff-app-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 9px;
    padding: 9px 14px;
    text-decoration: none;
    color: #222;
    transition: border-color 0.22s, background 0.22s;
    flex: 1;
    min-width: 130px;
}

.aff-app-btn:hover {
    border-color: var(--primary-color);
    background: rgba(255, 83, 0, 0.07);
    color: var(--primary-color);
}

.aff-app-btn i {
    font-size: 24px;
    opacity: 0.85;
    flex-shrink: 0;
}

.aff-app-btn span {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.aff-app-btn span small {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.6;
}

/* Link Columns */
.aff-col-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.aff-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.aff-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aff-links li {
    margin-bottom: 10px;
}

.aff-links li a {
    font-size: 13.5px;
    color: #555;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
    position: relative;
}

.aff-links li a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.aff-links li a::before {
    content: '›';
    position: absolute;
    left: 0;
    font-size: 15px;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s, transform 0.2s;
}

.aff-links li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact List */
.aff-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.aff-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 13px;
    font-size: 13px;
    color: #555;
    line-height: 1.55;
}

.aff-contact-list li i {
    font-size: 16px;
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.aff-contact-list li a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.aff-contact-list li a:hover {
    color: #111;
}

/* Trust Badges */
.aff-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.aff-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: #555;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    padding: 5px 10px;
}

.aff-badge i {
    color: var(--primary-color);
    font-size: 13px;
}

/* Trust & Stats Bar */
.adv-footer-trust {
    background: rgba(255, 83, 0, 0.10);
    border-top: 1px solid rgba(255, 83, 0, 0.14);
    padding: 20px 0;
}

.aft-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.aft-stats {
    display: flex;
    align-items: center;
}

.aft-stat {
    text-align: center;
    padding: 0 24px;
}

.aft-stat:first-child {
    padding-left: 0;
}

.aft-stat strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 3px;
}

.aft-stat span {
    font-size: 11px;
    color: #666;
    display: block;
    white-space: nowrap;
}

.aft-divider {
    width: 1px;
    height: 34px;
    background: rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.aft-pay {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.aft-pay-label {
    font-size: 11.5px;
    color: #666;
    white-space: nowrap;
}

.aft-pay-icons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}

.pay-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s, box-shadow 0.18s;
    cursor: default;
}

.pay-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-radius: 5px;
}

.pay-icon svg {
    height: 34px;
    width: auto;
    display: block;
    border-radius: 5px;
}

/* Bottom Bar */
.adv-footer-bottom {
    background: rgba(255, 83, 0, 0.12);
    padding: 15px 0;
}

.afb-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.afb-copy {
    font-size: 12.5px;
    color: #444;
    margin: 0;
}

.afb-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.afb-links a {
    font-size: 12.5px;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.afb-links a:hover {
    color: #111;
}

.afb-dev {
    font-size: 12.5px;
    color: #666;
    margin: 0;
}

.afb-dev i {
    color: var(--primary-color);
}

/* Advanced Footer Responsive */
/* ===== Advanced Footer End ===== */


/* ============================================================
   TOUR SHOW DETAIL PAGE  (tsd-*)
   ============================================================ */

/* ── Gallery Hero ── */
.tsd-gallery-section {
    line-height: 0;
    padding: 80px 40px 0;
    background: #fff;
    max-width: 1368px;
    margin: 0 auto;
    box-sizing: border-box;
}

.tsd-gallery-grid {
    display: grid;
    grid-template-columns: 55fr 45fr;
    grid-template-rows: 400px;
    gap: 8px;
    overflow: hidden;
}

/* Main large image */
.tsd-main-img {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border-radius: 9px;
}

.tsd-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.tsd-main-img:hover img {
    transform: scale(1.04);
}

/* Right 2×2 grid */
.tsd-side-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    position: relative;
    height: 100%;
    min-height: 0;
}

.tsd-side-img {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border-radius: 9px;
    min-height: 0;
}

.tsd-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.tsd-side-img:hover img {
    transform: scale(1.06);
}

/* Category label – bottom-left of side images */
.tsd-side-label {
    position: absolute;
    bottom: 12px;
    left: 14px;
    z-index: 5;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 1px 6px rgba(0,0,0,0.8), 0 2px 12px rgba(0,0,0,0.5);
    pointer-events: none;
}

/* Hover overlay */
.tsd-img-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    pointer-events: none;
    border-radius: inherit;
}

.tsd-img-hover-overlay i {
    font-size: 26px;
    color: #fff;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.3s, transform 0.3s;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.tsd-main-img:hover .tsd-img-hover-overlay,
.tsd-side-img:hover .tsd-img-hover-overlay {
    background: rgba(0, 0, 0, 0.18);
}

.tsd-main-img:hover .tsd-img-hover-overlay i,
.tsd-side-img:hover .tsd-img-hover-overlay i {
    opacity: 1;
    transform: scale(1);
}

/* View All Images button – bottom-right of last image */
.tsd-gallery-btn {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 10;
    background: #fff;
    border: none;
    border-radius: 10px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
    font-family: inherit;
    line-height: 1.4;
}

.tsd-gallery-btn i {
    font-size: 17px;
    color: #444;
}

.tsd-gallery-btn:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
    transform: translateY(-1px);
}

/* ── Lightbox ── */
.tsd-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.tsd-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.tsd-lb-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tsd-lb-img-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 90px 10px;
    width: 100%;
}

.tsd-lb-img {
    max-width: 100%;
    max-height: 74vh;
    object-fit: contain;
    border-radius: 6px;
    transition: opacity 0.25s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.tsd-lb-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}

.tsd-lb-close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.tsd-lb-prev,
.tsd-lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 20px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 10;
}

.tsd-lb-prev {
    left: 20px;
}

.tsd-lb-next {
    right: 20px;
}

.tsd-lb-prev:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-50%) scale(1.05);
}

.tsd-lb-next:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-50%) scale(1.05);
}

.tsd-lb-counter {
    position: absolute;
    top: 26px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.tsd-lb-thumbs {
    display: flex;
    gap: 8px;
    padding: 10px 20px 22px;
    overflow-x: auto;
    max-width: 90%;
    scrollbar-width: none;
}

.tsd-lb-thumbs::-webkit-scrollbar {
    display: none;
}

.tsd-lb-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 52px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.45;
    border: 2px solid transparent;
    transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
}

.tsd-lb-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tsd-lb-thumb:hover {
    opacity: 0.75;
    transform: scale(1.06);
}

.tsd-lb-thumb.active {
    opacity: 1;
    border-color: var(--primary-color);
    transform: scale(1.06);
}

/* ── Header Bar ── */
.tsd-header-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 0;
    position: sticky;
    top: 70px;
    z-index: 90;
}

.tsd-header-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 16px;
}

.tsd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 14px;
    flex-wrap: wrap;
}

.tsd-breadcrumb a {
    color: #555;
    text-decoration: none;
    padding: 14px 18px;
    font-weight: 500;
    transition: color 0.2s;
}

.tsd-breadcrumb a:hover {
    color: var(--primary-color);
}

.tsd-breadcrumb i {
    display: none;
}

.tsd-breadcrumb span {
    color: var(--primary-color);
    font-weight: 600;
    padding: 14px 18px;
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: -1px;
}

.tsd-header-actions {
    display: flex;
    gap: 8px;
    align-self: center;
    padding-right: 4px;
}

.tsd-action-btn {
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.tsd-action-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(255, 83, 0, 0.05);
}

/* ── Body Layout ── */
.tsd-body-section {
    padding: 40px 0 60px;
    background: #fafafa;
}

.tsd-body-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}

/* ── Left Content ── */
.tsd-content {
    min-width: 0;
}

.tsd-section {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
}

.tsd-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f5f5f5;
    position: relative;
}

.tsd-section-title::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 42px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Tour Title Block */
.tsd-title-block {
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px 24px;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
}

.tsd-tags-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.tsd-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 83, 0, 0.08);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.3px;
}

.tsd-cat-badge--green {
    background: rgba(5, 150, 105, 0.08);
    color: #059669;
}

.tsd-title {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    line-height: 1.25;
    margin: 0 0 14px;
}

.tsd-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.tsd-rating-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tsd-stars i {
    color: #f59e0b;
    font-size: 14px;
}

.tsd-rating-wrap strong {
    color: #111;
    font-weight: 700;
}

.tsd-review-count {
    color: #888;
}

.tsd-meta-divider {
    color: #ddd;
}

.tsd-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tsd-meta-item i {
    color: var(--primary-color);
}

/* Quick Info Pills */
.tsd-quick-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #f0f0f0;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
}

.tsd-qi-item {
    background: #fff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.2s;
}

.tsd-qi-item:hover {
    background: rgba(255, 83, 0, 0.04);
}

.tsd-qi-item>i {
    font-size: 22px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.tsd-qi-label {
    display: block;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.tsd-qi-item>div strong {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #111;
}

/* Overview */
.tsd-overview-text p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 14px;
}

.tsd-overview-text p:last-child {
    margin-bottom: 0;
}

/* See more / extra content */
.tsd-ov-extra {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
}

.tsd-ov-extra.open {
    max-height: 600px;
    opacity: 1;
}

.tsd-ov-extra p:first-child {
    margin-top: 14px;
}

.tsd-ov-seemore {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    /* margin-top: 14px; */
    margin-bottom: 22px;
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    transition: color 0.2s;
}

.tsd-ov-seemore:hover {
    color: var(--primary-color);
}

.tsd-ov-seemore i {
    font-size: 13px;
    transition: transform 0.35s ease;
}

.tsd-ov-seemore.open i {
    transform: rotate(180deg);
}

/* ── Overview Slider ── */
.tsd-ov-slider {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-top: 18px;
    user-select: none;
}

.tsd-ov-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.tsd-ov-slide {
    flex: 0 0 calc(100% / 3);
    padding: 0 5px;
    box-sizing: border-box;
}

.tsd-ov-slide:first-child {
    padding-left: 0;
}

.tsd-ov-slide:last-child {
    padding-right: 0;
}

.tsd-ov-slide img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    transition: transform 0.4s ease;
}

.tsd-ov-slide:hover img {
    transform: scale(1.03);
}

.tsd-ov-btn {
    position: absolute;
    top: 44%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #333;
    z-index: 5;
    transition: background 0.2s, color 0.2s, opacity 0.3s, transform 0.2s;
}

.tsd-ov-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.tsd-ov-prev {
    left: 8px;
}

.tsd-ov-next {
    right: 8px;
}

.tsd-ov-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.tsd-ov-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, width 0.3s, border-radius 0.3s;
}

.tsd-ov-dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 4px;
}

/* Highlights */
.tsd-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tsd-highlights-list li {
    padding: 11px 0 11px 24px;
    position: relative;
    font-size: 14px;
    color: #444;
    line-height: 1.55;
    border-bottom: 1px solid #f0f0f0;
}

.tsd-highlights-list li:last-child {
    border-bottom: none;
}

.tsd-highlights-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-color);
}

/* Itinerary */
.tsd-itinerary {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tsd-day-item {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.tsd-day-item.active {
    border-color: var(--primary-color);
}

.tsd-day-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    cursor: pointer;
    background: #fff;
    transition: background 0.2s;
    user-select: none;
}

.tsd-day-header:hover {
    background: #fafafa;
}

.tsd-day-item.active .tsd-day-header {
    background: rgba(255, 83, 0, 0.04);
}

.tsd-day-badge {
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}

.tsd-day-info {
    flex: 1;
}

.tsd-day-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin: 0 0 3px;
}

.tsd-day-meta {
    font-size: 12px;
    color: #888;
}

.tsd-day-meta--highlight {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 12px;
}

.tsd-day-arrow {
    font-size: 14px;
    color: #aaa;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.tsd-day-item.active .tsd-day-arrow {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.tsd-day-body {
    display: none;
    padding: 4px 20px 18px 56px;
    /* background: #fafafa; */
    border-top: 1px solid #f0f0f0;
}

.tsd-day-item.active .tsd-day-body {
    display: block;
}

.tsd-day-body p {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 12px;
}

.tsd-day-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.tsd-day-stats span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 4px 10px;
}

.tsd-day-stats span i {
    color: var(--primary-color);
}

/* Include / Exclude */
.tsd-inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tsd-inc-card,
.tsd-exc-card {
    border-radius: 12px;
    padding: 22px;
}

.tsd-inc-card {
    background: rgba(5, 150, 105, 0.05);
    border: 1px solid rgba(5, 150, 105, 0.15);
}

.tsd-exc-card {
    background: rgba(239, 68, 68, 0.04);
    border: 1px solid rgba(239, 68, 68, 0.12);
}

.tsd-inc-heading,
.tsd-exc-heading {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tsd-inc-heading {
    color: #059669;
}

.tsd-exc-heading {
    color: #dc2626;
}

.tsd-inc-list,
.tsd-exc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tsd-inc-list li,
.tsd-exc-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13.5px;
    color: #444;
    line-height: 1.5;
}

.tsd-inc-list li i {
    color: #059669;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.tsd-exc-list li i {
    color: #dc2626;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* FAQ */
.tsd-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tsd-faq-item {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.tsd-faq-item.active {
    border-color: rgba(255, 83, 0, 0.3);
}

.tsd-faq-q {
    width: 100%;
    background: #fff;
    border: none;
    padding: 16px 20px;
    text-align: left;
    font-size: 14.5px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: background 0.2s;
    font-family: inherit;
}

.tsd-faq-q:hover {
    background: #fafafa;
}

.tsd-faq-item.active .tsd-faq-q {
    background: rgba(255, 83, 0, 0.04);
    color: var(--primary-color);
}

.tsd-faq-q i {
    font-size: 16px;
    color: #aaa;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.tsd-faq-item.active .tsd-faq-q i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.tsd-faq-a {
    display: none;
    padding: 4px 20px 18px;
    /* background: #fafafa; */
    border-top: 1px solid #f0f0f0;
}

.tsd-faq-item.active .tsd-faq-a {
    display: block;
}

.tsd-faq-a p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin: 12px 0 0;
}

/* Reviews */
.tsd-review-summary {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    background: #fafafa;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid #f0f0f0;
}

.tsd-review-score-big {
    text-align: center;
}

.tsd-big-score {
    font-size: 52px;
    font-weight: 900;
    color: #111;
    line-height: 1;
    margin-bottom: 6px;
}

.tsd-score-stars i {
    color: #f59e0b;
    font-size: 18px;
}

.tsd-review-score-big p {
    font-size: 12px;
    color: #888;
    margin: 6px 0 0;
}

.tsd-rating-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tsd-rb-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
}

.tsd-rb-row>span:first-child {
    width: 28px;
    text-align: right;
    font-weight: 600;
}

.tsd-rb-row>span:last-child {
    width: 24px;
}

.tsd-rb-track {
    flex: 1;
    height: 6px;
    background: #e5e5e5;
    border-radius: 3px;
    overflow: hidden;
}

.tsd-rb-fill {
    height: 100%;
    background: #f59e0b;
    border-radius: 3px;
}

.tsd-rating-cats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.tsd-rc-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    border: 1px solid #eee;
}

.tsd-rc-item span {
    font-size: 11px;
    color: #888;
}

.tsd-rc-item strong {
    font-size: 14px;
    font-weight: 700;
    color: #f59e0b;
}

/* Review Cards */
.tsd-reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tsd-review-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 22px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.tsd-review-card:hover {
    border-color: rgba(255, 83, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.tsd-rv-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.tsd-rv-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

.tsd-rv-meta {
    flex: 1;
}

.tsd-rv-meta strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.tsd-rv-meta span {
    font-size: 12px;
    color: #888;
}

.tsd-rv-score {
    text-align: right;
}

.tsd-rv-stars i {
    color: #f59e0b;
    font-size: 12px;
}

.tsd-rv-score span {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: #111;
    margin-top: 2px;
}

.tsd-rv-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px;
}

.tsd-rv-text {
    font-size: 13.5px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 14px;
}

.tsd-rv-imgs {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.tsd-rv-img-wrap {
    position: relative;
    width: 90px;
    height: 68px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}

.tsd-rv-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.tsd-rv-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
}

.tsd-rv-img-overlay i {
    font-size: 18px;
    color: #fff;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.25s, transform 0.25s;
}

.tsd-rv-img-wrap:hover img {
    transform: scale(1.08);
}

.tsd-rv-img-wrap:hover .tsd-rv-img-overlay {
    background: rgba(0, 0, 0, 0.38);
}

.tsd-rv-img-wrap:hover .tsd-rv-img-overlay i {
    opacity: 1;
    transform: scale(1);
}

/* ── Itinerary Day Images ── */
.tsd-day-imgs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 16px;
}

.tsd-day-imgs .tsd-rv-img-wrap {
    width: 110px;
    height: 78px;
    border-radius: 10px;
    flex-shrink: 0;
}

.tsd-day-imgs .tsd-rv-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

/* ── Itinerary Image Slider (active when JS adds .itin-slider) ── */
.tsd-day-imgs.itin-slider {
    display: block;
    position: relative;
    overflow: hidden;
    margin: 14px 0 0;
    flex-wrap: unset;
}

.itin-track {
    display: flex;
    gap: 6px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.tsd-day-imgs.itin-slider .tsd-rv-img-wrap {
    flex-shrink: 0;
    width: 110px;
    height: 78px;
    border-radius: 10px;
    cursor: pointer;
}

.tsd-day-imgs.itin-slider .tsd-rv-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.itin-btn {
    display: none;
}

.itin-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 7px 0 12px;
}

.itin-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, width 0.25s, border-radius 0.25s;
}

.itin-dot.active {
    background: #FF5300;
    width: 16px;
    border-radius: 3px;
}

.tsd-rv-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tsd-rv-verified {
    font-size: 12px;
    color: #059669;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tsd-load-reviews-btn {
    margin-top: 20px;
    width: 100%;
    padding: 13px;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    font-family: inherit;
}

.tsd-load-reviews-btn:hover {
    background: rgba(255, 83, 0, 0.06);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ── Right Sidebar ── */
.tsd-sidebar {
    position: sticky;
    top: 130px;
}

.tsd-booking-card {
    background: #fff;
    border: 1.5px solid #eee;
    border-radius: 20px;
    padding: 26px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.tsd-bc-price-wrap {
    margin-bottom: 18px;
}

.tsd-bc-price-main {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
}

.tsd-bc-from {
    font-size: 12px;
    color: #888;
}

.tsd-bc-amount {
    font-size: 30px;
    font-weight: 900;
    color: #111;
    line-height: 1;
}

.tsd-bc-per {
    font-size: 13px;
    color: #888;
}

.tsd-bc-old-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.tsd-bc-old-price del {
    font-size: 14px;
    color: #aaa;
}

.tsd-bc-discount {
    background: #FEF2F2;
    color: #DC2626;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 50px;
}

.tsd-bc-rating-mini {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #666;
}

.tsd-bc-rating-mini i {
    color: #f59e0b;
}

.tsd-bc-rating-mini strong {
    color: #111;
    font-weight: 700;
}

.tsd-bc-field {
    margin-bottom: 12px;
}

.tsd-bc-field label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 6px;
}

.tsd-bc-select,
.tsd-bc-input {
    width: 100%;
    border: 1.5px solid #e5e5e5;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 14px;
    color: #111;
    outline: none;
    font-family: inherit;
    background: #fafafa;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.tsd-bc-select:focus,
.tsd-bc-input:focus {
    border-color: var(--primary-color);
    background: #fff;
}

.tsd-bc-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 15px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    margin-bottom: 10px;
}

.tsd-bc-cta-btn:hover {
    background: #e04800;
    transform: translateY(-1px);
    color: #fff;
}

.tsd-bc-inquiry-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    border-radius: 12px;
    padding: 13px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 18px;
}

.tsd-bc-inquiry-btn:hover {
    background: rgba(255, 83, 0, 0.06);
    color: var(--primary-color);
}

.tsd-bc-trust {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
}

.tsd-bc-trust li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #444;
    font-weight: 500;
}

.tsd-bc-trust li i {
    color: #059669;
    font-size: 16px;
}

.tsd-bc-contact {
    background: #fafafa;
    border-radius: 12px;
    padding: 14px 16px;
    border-top: 1px solid #f0f0f0;
}

.tsd-bc-contact p {
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

.tsd-bc-phone,
.tsd-bc-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    padding: 8px 12px;
    transition: background 0.2s;
    margin-bottom: 6px;
}

.tsd-bc-phone {
    color: #111;
    background: #fff;
    border: 1px solid #e5e5e5;
}

.tsd-bc-phone:hover {
    border-color: #111;
    color: #111;
}

.tsd-bc-whatsapp {
    color: #25D366;
    background: rgba(37, 211, 102, 0.06);
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.tsd-bc-whatsapp:hover {
    background: rgba(37, 211, 102, 0.12);
    color: #25D366;
}

/* Similar Tours */
.tsd-similar-tours {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 22px;
}

.tsd-similar-title {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
}

.tsd-similar-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    text-decoration: none;
    transition: opacity 0.2s;
}

.tsd-similar-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tsd-similar-item:hover {
    opacity: 0.8;
}

.tsd-similar-item img {
    width: 70px;
    height: 54px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.tsd-similar-info strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin-bottom: 3px;
}

.tsd-similar-info span {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 3px;
}

.tsd-similar-stars {
    font-size: 12px;
    color: #f59e0b;
    font-weight: 700;
}

.tsd-similar-stars i {
    font-size: 11px;
}

.tsd-similar-stars small {
    color: #888;
    font-weight: 400;
}

/* ── Speak to an Expert Card ── */
.tsd-expert-card {
    background: #fff;
    border: 1.5px solid #eee;
    border-radius: 20px;
    padding: 26px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    text-align: center;
}

.tsd-expert-title {
    font-size: 17px;
    font-weight: 800;
    color: #111;
    margin: 0 0 20px;
    letter-spacing: -0.2px;
}

.tsd-expert-avatars {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 18px;
    /* background: #f4f6fb; */
}

.tsd-expert-map {
    position: absolute;
    inset: 0;
    /* background-image: radial-gradient(circle, #b8c4e0 1.2px, transparent 1.2px); */
    background-size: 14px 14px;
    opacity: 0.5;
}

.tsd-ea-row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 10px;
    position: relative;
    z-index: 1;
}

.tsd-ea-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    margin: 0 -7px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #c8d2e8, #e8ecf5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, width 0.3s ease, height 0.3s ease, border-color 0.25s ease, box-shadow 0.25s ease, font-size 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aac8;
    font-size: 20px;
    cursor: pointer;
}

.tsd-ea-item:hover {
    transform: translateY(-4px);
    z-index: 3;
}

.tsd-ea-item.tsd-ea-featured {
    width: 70px;
    height: 70px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 6px 22px rgba(255, 83, 0, 0.28);
    z-index: 2;
    font-size: 28px;
    transform: translateY(-2px);
}

.tsd-expert-name,
.tsd-expert-country,
.tsd-expert-whatsapp {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.tsd-ea-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.tsd-expert-name {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0 0 5px;
}

.tsd-expert-country {
    font-size: 13.5px;
    color: #777;
    margin: 0 0 18px;
}

.tsd-expert-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: rgba(37, 211, 102, 0.07);
    border: 1px solid rgba(37, 211, 102, 0.22);
    border-radius: 10px;
    padding: 11px 14px;
    text-decoration: none;
    transition: background 0.2s;
}

.tsd-expert-whatsapp:hover {
    background: rgba(37, 211, 102, 0.14);
}

.tsd-expert-whatsapp i {
    font-size: 22px;
    color: #25D366;
    flex-shrink: 0;
}

.tsd-expert-whatsapp span {
    font-size: 13px;
    color: #555;
}

.tsd-expert-whatsapp strong {
    display: block;
    color: #111;
    font-size: 14.5px;
    font-weight: 700;
    margin-top: 1px;
}

/* ── Rating & Review Card ── */
.tsd-review-card {
    background: #fff;
    border: 1.5px solid #eee;
    border-radius: 20px;
    padding: 26px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    text-align: center;
}

.tsd-rc-score {
    font-size: 42px;
    font-weight: 900;
    color: #111;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.tsd-rc-stars {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 6px;
    letter-spacing: 3px;
}

.tsd-rc-based {
    font-size: 13px;
    color: #999;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.tsd-rc-bars {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 22px;
    text-align: left;
}

.tsd-rc-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tsd-rc-label {
    font-size: 12.5px;
    color: #666;
    width: 66px;
    flex-shrink: 0;
}

.tsd-rc-track {
    flex: 1;
    height: 7px;
    background: #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
}

.tsd-rc-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 6px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.tsd-rc-count {
    font-size: 12.5px;
    color: #555;
    font-weight: 600;
    width: 22px;
    text-align: right;
    flex-shrink: 0;
}

.tsd-rc-btns {
    display: flex;
    gap: 10px;
}

.tsd-rc-btn-outline {
    flex: 1;
    padding: 12px 8px;
    border: 1.5px solid var(--primary-color);
    border-radius: 10px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.1px;
}

.tsd-rc-btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.tsd-rc-btn-solid {
    flex: 1;
    padding: 12px 8px;
    background: var(--primary-color);
    border-radius: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.1px;
}

.tsd-rc-btn-solid:hover {
    background: #e04800;
    transform: translateY(-1px);
}

/* ── Responsive ── */
/* ── Map & Elevation Section ── */
.tsd-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 10px;
}

.tsd-map-download {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: #f37002;
    border: 1.5px solid #f37002;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.tsd-map-download:hover {
    background: #f37002;
    color: #fff;
}

.tsd-map-download i {
    font-size: 15px;
}

/* Stats bar */
.tsd-map-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background: #fafafa;
    border: 1.5px solid #f0f0f0;
    border-radius: 14px;
    padding: 14px 22px;
    margin-bottom: 20px;
    gap: 0;
}

.tsd-map-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 110px;
    padding: 6px 16px;
}

.tsd-map-stat:first-child {
    padding-left: 0;
}

.tsd-map-stat>i {
    font-size: 22px;
    color: #f37002;
    flex-shrink: 0;
}

.tsd-map-stat strong {
    display: block;
    font-size: 15px;
    font-weight: 900;
    color: #111;
    line-height: 1.2;
}

.tsd-map-stat span {
    font-size: 11.5px;
    color: #aaa;
}

.tsd-map-stat-div {
    width: 1px;
    height: 36px;
    background: #ebebeb;
    flex-shrink: 0;
}

/* Map + waypoints layout */
.tsd-map-body {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 18px;
    align-items: start;
}

/* Google Maps embed */
.tsd-map-embed-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid #e8e8e8;
    line-height: 0;
}

.tsd-map-embed {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border: none;
}

.tsd-map-fullscreen {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(6px);
    border: 1px solid #ddd;
    color: #333;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.tsd-map-fullscreen:hover {
    background: #f37002;
    color: #fff;
    border-color: #f37002;
}

.tsd-map-fullscreen i {
    font-size: 14px;
}

/* Waypoints panel */
.tsd-map-waypoints {
    background: #fff;
    border: 1.5px solid #f0f0f0;
    border-radius: 16px;
    padding: 18px;
    height: 420px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-sizing: border-box;
}

.tsd-wp-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    color: #111;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.tsd-wp-head i {
    color: #f37002;
    font-size: 17px;
}

.tsd-wp-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.tsd-wp-item {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

.tsd-wp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #ddd;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1.5px #ddd;
    margin-top: 4px;
    z-index: 1;
}

.tsd-wp--peak .tsd-wp-dot {
    background: #f37002;
    box-shadow: 0 0 0 1.5px #f37002;
    width: 12px;
    height: 12px;
    margin-top: 3px;
}

.tsd-wp--start .tsd-wp-dot {
    background: #22c55e;
    box-shadow: 0 0 0 1.5px #22c55e;
}

.tsd-wp--end .tsd-wp-dot {
    background: #ef4444;
    box-shadow: 0 0 0 1.5px #ef4444;
}

.tsd-wp-line {
    width: 1.5px;
    background: #e8e8e8;
    flex-shrink: 0;
    margin: 14px 0 0 4.25px;
    height: 28px;
}

.tsd-wp--peak .tsd-wp-line {
    background: linear-gradient(#f37002, #e8e8e8);
}

.tsd-wp-info {
    padding: 0 0 0 10px;
    padding-bottom: 0;
}

.tsd-wp-day {
    font-size: 10px;
    font-weight: 700;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: .04em;
    display: block;
}

.tsd-wp-info strong {
    font-size: 12.5px;
    font-weight: 800;
    color: #222;
    display: block;
    line-height: 1.3;
}

.tsd-wp-alt {
    font-size: 11px;
    color: #aaa;
}

.tsd-wp-alt--peak {
    color: #f37002;
    font-weight: 700;
}

/* Legend */
.tsd-map-legend {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
}

.tsd-leg-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #888;
    font-weight: 600;
}

.tsd-leg-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.tsd-leg-dot--normal {
    background: #ddd;
}

.tsd-leg-dot--peak {
    background: #f37002;
}

.tsd-leg-line {
    width: 18px;
    height: 2px;
    background: #e8e8e8;
    display: inline-block;
    border-radius: 2px;
}

/* ── Video Section ── */
.tsd-video-wrap {
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    position: relative;
    box-shadow: 0 6px 28px rgba(0, 0, 0, .18);
}

.tsd-video-thumb {
    position: relative;
    cursor: pointer;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.tsd-video-thumb>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.tsd-video-thumb:hover>img {
    transform: scale(1.02);
}

/* Top bar */
.tsd-vt-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .75) 0%, transparent 100%);
    z-index: 2;
}

.tsd-vt-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.tsd-vt-meta {
    display: flex;
    flex-direction: column;
    gap: 1px;
    overflow: hidden;
    flex: 1;
}

.tsd-vt-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .5);
}

.tsd-vt-channel {
    font-size: 11px;
    color: rgba(255, 255, 255, .75);
    font-weight: 500;
}

/* YouTube play button */
.tsd-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    cursor: pointer;
    z-index: 2;
    transition: transform .2s, filter .2s;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .4));
}

.tsd-play-btn svg {
    width: 68px;
    height: auto;
    display: block;
}

.tsd-video-thumb:hover .tsd-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    filter: drop-shadow(0 4px 16px rgba(255, 0, 0, .5));
}

/* Bottom bar */
.tsd-vt-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px 13px;
    background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, transparent 100%);
    z-index: 2;
}

.tsd-vt-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tsd-vt-action {
    color: rgba(255, 255, 255, .85);
    font-size: 18px;
    line-height: 1;
}

.tsd-vt-yt {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.tsd-vt-yt svg {
    width: 80px;
    height: auto;
}

/* Iframe */
.tsd-video-iframe {
    position: relative;
    aspect-ratio: 16/9;
}

.tsd-video-iframe iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================================
   TOUR SHOW DETAIL PAGE END
   ============================================================ */

/* ============================================================
   TEAM PAGE
   ============================================================ */

/* ── Hero ── */
.team-hero {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.team-hero-bg {
    position: absolute;
    inset: 0;
}

.team-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.team-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.78) 0%, rgba(255, 83, 0, 0.30) 100%);
}

.team-hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.team-hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    letter-spacing: 0.3px;
    margin-bottom: 20px;
}

.team-hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.team-hero-content h1 span {
    color: var(--primary-color);
}

.team-hero-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    max-width: 520px;
}

/* ── Stats Strip ── */
/* .team-stats-strip {
    background: #1a1a1a;
    padding: 28px 0;
}
.team-stats-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.team-stat-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 12px 24px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.team-stat-item:last-child { border-right: none; }
.team-stat-item strong {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 6px;
}
.team-stat-item span {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
} */

/* ── Team Section ── */
.team-section {
    padding: 80px 0;
    background: #f8f7f5;
}

.team-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

/* .team-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 12px;
} */
.team-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 14px;
}

.team-section-header h2 span {
    color: var(--primary-color);
}

.team-section-header p {
    font-size: 15px;
    color: #777;
    line-height: 1.7;
}

/* ── Team Grid ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 26px;
}

.team-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13);
}

.team-card-photo {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.team-card:hover .team-card-photo img {
    transform: scale(1.07);
}

.team-card-country {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 20px;
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.team-card-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--primary-color);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.team-card-badge--blue {
    background: #0A7EBD;
}

.team-card-badge--green {
    background: #2D8A3E;
}

.team-card-badge--purple {
    background: #7B5EA7;
}

.team-card-body {
    padding: 20px;
    flex: 1;
}

.team-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.team-card-role {
    font-size: 12px;
    color: #999;
    display: block;
    margin-bottom: 14px;
}

.team-card-trail {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    background: #fff5f0;
    padding: 7px 12px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.team-card-trail i {
    font-size: 14px;
}

.team-card-stats {
    display: flex;
    text-align: center;
    margin-bottom: 16px;
}

.team-card-stats>div {
    flex: 1;
    border-right: 1px solid #f0f0f0;
    padding: 0 4px;
}

.team-card-stats>div:last-child {
    border-right: none;
}

.team-card-stats strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 4px;
}

.team-card-stats small {
    font-size: 10px;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.team-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.team-card-tags span {
    font-size: 11px;
    background: #f3f3f3;
    color: #555;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.team-card-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 13px;
    transition: background 0.2s;
}

.team-card-wa:hover {
    background: #1ebe5d;
    color: #fff;
}

.team-card-wa i {
    font-size: 16px;
}

/* ── Gallery Strip ── */
.team-gallery-strip {
    overflow: hidden;
    height: 220px;
    display: flex;
}

.team-gallery-inner {
    display: flex;
    width: 100%;
    gap: 3px;
}

.team-gallery-inner img {
    flex: 1;
    min-width: 150px;
    height: 100%;
    object-fit: cover;
    transition: flex 0.4s ease;
    cursor: pointer;
}

.team-gallery-inner img:hover {
    flex: 2.5;
}

/* ── Join Section ── */
.team-join-section {
    padding: 80px 0;
    background: #fff;
}

.team-join-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.team-join-text h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    margin: 12px 0 16px;
}

.team-join-text h2 span {
    color: var(--primary-color);
}

.team-join-text p {
    font-size: 15px;
    color: #777;
    line-height: 1.75;
    margin-bottom: 28px;
}

.team-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 10px;
    transition: background 0.2s, transform 0.2s;
}

.team-join-btn:hover {
    background: #e04700;
    transform: translateY(-2px);
    color: #fff;
}

.team-join-img {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.team-join-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Filter Tabs ── */
.team-filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.team-filter-btn {
    padding: 7px 18px;
    border-radius: 50px;
    border: 1.5px solid #ddd;
    background: #fff;
    color: #444;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    letter-spacing: 0.2px;
}

.team-filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.team-filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* ── Featured CEO Card ── */
.team-card--featured {
    grid-column: span 2;
    flex-direction: row;
}

.team-card--featured .team-card-photo {
    width: 260px;
    flex-shrink: 0;
    aspect-ratio: unset;
}

.team-card--featured .team-card-body {
    padding: 28px;
}

.team-card--featured h3 {
    font-size: 22px;
}

.team-card-bio {
    font-size: 13px;
    color: #777;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 18px;
    padding-left: 14px;
    border-left: 3px solid var(--primary-color);
}

.team-card-badge--dark {
    background: #1a1a1a;
}

/* ── Team Responsive ── */
/* ============================================================
   TEAM PAGE END
   ============================================================ */

/* ============================================================
   TEAM SIMPLE (tm-)
   ============================================================ */
.tm-section {
    padding: 60px 0 80px;
    background: #fff;
}

.tm-header {
    max-width: 860px;
    margin: 0 0 56px;
}

.tm-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.tm-header p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 14px;
}

.tm-group {
    margin-bottom: 56px;
}

.tm-group-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 28px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.tm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.tm-grid--center .tm-card {
    grid-column: 1;
}

.tm-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    margin-bottom: 14px;
}

.tm-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.tm-card:hover .tm-photo img {
    transform: scale(1.04);
}

.tm-info strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #111;
    margin-bottom: 4px;
}

.tm-info span {
    font-size: 13px;
    color: #888;
}

/* ============================================================
   TEAM SIMPLE END
   ============================================================ */

/* ============================================================
   TEAM SIMPLE GRID (ts-)
   ============================================================ */
.ts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ts-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ts-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
}

.ts-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.ts-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.ts-card:hover .ts-photo img {
    transform: scale(1.05);
}

.ts-info {
    padding: 16px 18px 18px;
}

.ts-info strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #111;
    margin-bottom: 4px;
}

.ts-info span {
    font-size: 13px;
    color: #888;
}

/* ============================================================
   TEAM SIMPLE GRID END
   ============================================================ */

/* ============================================================
   BLOG PAGE (bl-)
   ============================================================ */

/* ── Hero ── */
.bl-hero {
    position: relative;
    height: 460px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bl-hero-bg {
    position: absolute;
    inset: 0;
}

.bl-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.bl-hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, rgba(10, 10, 10, 0.80) 0%, rgba(255, 83, 0, 0.28) 100%); */
    background: linear-gradient(191deg, rgb(8 12 30 / 23%) 45%, rgb(8 12 30 / 77%) 100%);
}

.bl-hero-content {
    position: relative;
    z-index: 2;
    max-width: 660px;
}

.bl-hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    margin-bottom: 20px;
}

.bl-hero-content h1 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 14px;
}

.bl-hero-content h1 span {
    color: var(--primary-color);
}

.bl-hero-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.7;
    margin-bottom: 28px;
}

.bl-search {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 50px;
    padding: 12px 22px;
    max-width: 480px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.bl-search i {
    font-size: 18px;
    color: #aaa;
    flex-shrink: 0;
}

.bl-search input {
    border: none;
    outline: none;
    font-size: 14px;
    color: #333;
    width: 100%;
    font-family: inherit;
    background: transparent;
}

/* ── Featured ── */
.bl-featured-section {
    padding: 60px 0 0;
    background: #f8f7f5;
}

.bl-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.08);
}

.bl-featured-photo {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.bl-featured-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bl-featured:hover .bl-featured-photo img {
    transform: scale(1.04);
}

.bl-featured-body {
    padding: 40px 40px 40px 0;
}

.bl-featured-meta {
    display: flex;
    gap: 18px;
    margin-bottom: 16px;
}

.bl-featured-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #999;
}

.bl-featured-body h2 {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    line-height: 1.35;
    margin-bottom: 14px;
}

.bl-featured-body>p {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
    margin-bottom: 24px;
}

/* .bl-featured-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.bl-featured-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.bl-featured-author strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #111;
}
.bl-featured-author span { font-size: 12px; color: #aaa; } */
.bl-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background 0.2s, transform 0.2s;
}

.bl-read-btn:hover {
    background: #e04700;
    transform: translateY(-2px);
    color: #fff;
}

/* ── Category badge ── */
.bl-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 20px;
    color: #fff;
}

.bl-cat--orange {
    background: var(--primary-color);
}

.bl-cat--blue {
    background: #0A7EBD;
}

.bl-cat--green {
    background: #2D8A3E;
}

.bl-cat--purple {
    background: #7B5EA7;
}

/* ── Blog Section ── */
.bl-section {
    padding: 48px 0 80px;
    background: #f8f7f5;
}

.bl-section-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.bl-section-top h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

.bl-filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.bl-filter-btn {
    padding: 7px 18px;
    border-radius: 50px;
    border: 1.5px solid #ddd;
    background: #fff;
    color: #555;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.bl-filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.bl-filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* ── Blog Grid ── */
.bl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bl-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.bl-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
}

.bl-card-photo {
    display: block;
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.bl-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.bl-card:hover .bl-card-photo img {
    transform: scale(1.06);
}

.bl-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bl-card-meta {
    display: flex;
    gap: 14px;
    margin-bottom: 10px;
}

.bl-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #bbb;
}

.bl-card-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    margin-bottom: 10px;
}

.bl-card-body h4 a {
    color: inherit;
    text-decoration: none;
}

.bl-card-body h4 a:hover {
    color: var(--primary-color);
}

.bl-card-body>p {
    font-size: 13px;
    color: #777;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
}

.bl-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}

/* .bl-author {
    display: flex;
    align-items: center;
    gap: 8px;
}
.bl-author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}
.bl-author span { font-size: 12px; font-weight: 600; color: #555; } */
.bl-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: gap 0.2s;
}

.bl-link:hover {
    gap: 8px;
    color: var(--primary-color);
}

/* ── Layout with Sidebar ── */
.bl-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* ── Sidebar ── */
.bl-sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.bl-widget {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.bl-widget-title {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.bl-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bl-cat-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #555;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.bl-cat-list li a:hover {
    background: #fff5f0;
    color: var(--primary-color);
}

.bl-cat-list li a em {
    font-style: normal;
    background: #f3f3f3;
    font-size: 11px;
    font-weight: 700;
    color: #888;
    padding: 2px 8px;
    border-radius: 20px;
}

.bl-cat-list li a:hover em {
    background: #ffe0d0;
    color: var(--primary-color);
}

.bl-recent-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bl-recent-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    align-items: flex-start;
    transition: opacity 0.2s;
}

.bl-recent-item:hover {
    opacity: 0.8;
}

.bl-recent-thumb {
    width: 70px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.bl-recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bl-recent-info p {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    margin-bottom: 5px;
}

.bl-recent-info span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #bbb;
}

/* ── Responsive ── */
/* ============================================================
   BLOG PAGE END
   ============================================================ */

/* ============================================================
   DESTINATION PAGE
   ============================================================ */

/* ── Hero Slider ── */
.dest-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
    background: #111;
}

.dest-slides-wrap {
    width: 100%;
    height: 100%;
}

.dest-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.dest-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.dest-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dest-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.38) 0%, rgb(0 0 0 / 2%) 55%, rgba(0, 0, 0, 0.65) 100%)
}

.dest-slide-content {
    position: absolute;
    bottom: 115px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    max-width: 960px;
    padding: 0 24px;
    color: #fff;
}

.dest-slide-sub {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0.4px;
}

.dest-slide-sub span {
    color: var(--primary-color);
    font-weight: 700;
}

.dest-slide-content h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
}

.dest-slide-content h1 span {
    color: var(--primary-color);
}

.dest-slide-price {
    font-size: 16px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.dest-slide-price del {
    opacity: 0.6;
    font-size: 15px;
    text-decoration-thickness: 1.5px;
}

.dest-slide-price strong {
    font-size: 22px;
    font-weight: 700;
}

.dest-sale-badge {
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 12px;
    font-weight: 800;
    padding: 5px 16px;
    border-radius: 20px;
    letter-spacing: 0.8px;
    font-style: normal;
}

.dest-slide-btn {
    display: none;
}

/* Arrows */
.dest-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    backdrop-filter: blur(4px);
}

.dest-arrow:hover {
    background: rgba(255, 255, 255, 0.32);
}

.dest-arrow-prev {
    left: 20px;
}

.dest-arrow-next {
    right: 20px;
}

/* Dots */
.dest-dots {
    position: absolute;
    bottom: 82px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 11;
}

.dest-dot {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, width 0.25s;
}

.dest-dot.active {
    background: #fff;
    width: 40px;
}

/* ── Rating Strip (inside hero, pinned to bottom) ── */
.dest-rating-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: rgba(0, 0, 0, 0.55); */
    backdrop-filter: blur(6px);
    /* -webkit-backdrop-filter: blur(6px); */
    padding: 16px 0;
    z-index: 10;
}

.dest-rating-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: nowrap;
}

.dest-rating-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dest-ri-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    flex-shrink: 0;
}

.dest-ri-ta {
    background: rgba(255, 255, 255, 0.15);
    color: #00E0A8;
}

.dest-ri-sj {
    background: rgba(255, 255, 255, 0.15);
    color: var(--primary-color);
}

.dest-ri-g {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 17px;
}

.dest-ri-rv {
    background: rgba(255, 255, 255, 0.15);
    color: var(--primary-color);
    font-size: 18px;
}

.dest-ri-info {
    display: flex;
    flex-direction: column;
}

.dest-ri-info strong {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.dest-ri-info span {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.8px;
}

/* ── Main Section ── */
.dest-main {
    padding: 30px 0 20px;
    background: #f7f8fa;
}

/* Tabs */
.dest-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 22px;
}

.dest-tab {
    background: none;
    border: none;
    padding: 12px 22px;
    font-size: 15px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s;
}

.dest-tab i {
    font-size: 16px;
}

.dest-tab.active {
    color: #FF5300;
    border-bottom-color: #FF5300;
}

.dest-tab:hover {
    color: #FF5300;
}

/* Filters Row */
.dest-filters-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.dest-filter-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.dest-pill {
    padding: 7px 18px;
    border: 1px solid #d1d5db;
    border-radius: 50px;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    transition: all 0.2s;
}

.dest-pill.active,
.dest-pill:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.dest-filter-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dest-sort-label {
    font-size: 13px;
    color: #777;
    font-weight: 500;
}

.dest-select {
    padding: 8px 32px 8px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z' fill='%23555'/%3E%3C/svg%3E") no-repeat right 10px center;
    appearance: none;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
}

/* ── Cards Grid ── */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dest-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s, box-shadow 0.25s;
}

.dest-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.dest-card-img {
    position: relative;
    display: block;
    height: 195px;
    overflow: hidden;
}

.dest-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.dest-card:hover .dest-card-img img {
    transform: scale(1.04);
}

.dest-card-heart {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    color: #aaa;
    transition: color 0.2s, background 0.2s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.dest-card-heart:hover {
    color: #FF5300;
}

.dest-badge-choice {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #00B86B;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 4px;
    letter-spacing: 0.3px;
}

.dest-card-body {
    padding: 14px 15px 16px;
}

.dest-card-meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
}

.dest-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    line-height: 1.45;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dest-card-info {
    font-size: 12px;
    color: #777;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dest-card-info i {
    color: #aaa;
}

.dest-card-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.dcs-stars {
    color: #F59E0B;
    font-size: 13px;
    letter-spacing: 1px;
}

.dest-card-stars strong {
    font-size: 13px;
    font-weight: 700;
    color: #111;
}

.dcs-count {
    font-size: 12px;
    color: #888;
}

.dest-card-price {
    font-size: 15px;
    font-weight: 800;
    color: #111;
}

/* Load More Button */
.dest-loadmore-wrap {
    display: flex;
    justify-content: center;
    margin: 36px 0 10px;
}

.dest-loadmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 40px;
    background: #fff;
    color: #FF5300;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #FF5300;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.22s, color 0.22s, transform 0.18s;
    letter-spacing: 0.3px;
}

.dest-loadmore-btn:hover {
    background: #FF5300;
    color: #fff;
    transform: translateY(-2px);
}

.dest-loadmore-btn i {
    font-size: 16px;
}

/* ============================================================
   BLOG SLIDER SECTION
   ============================================================ */
.blog-section {
    background: #f8f9fb;
    padding: 60px 0 70px;
}

.blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
}

.blog-label {
    font-size: 13px;
    font-weight: 700;
    color: #FF5300;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.blog-title {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin: 0;
}

/* Slider */
.blog-slider-wrap {
    overflow: hidden;
    width: 100%;
}

.blog-track {
    display: flex;
    gap: 22px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Dots */
.blog-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 28px;
}

.blog-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, width 0.25s, border-radius 0.25s;
}

.blog-dot.active {
    background: #FF5300;
    width: 22px;
    border-radius: 4px;
}

/* Card */
.blog-card {
    flex: 0 0 calc((100% - 66px) / 4);
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s, box-shadow 0.25s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.blog-card-img {
    display: block;
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.06);
}

.blog-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #FF5300;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.4px;
}

.blog-card-body {
    padding: 18px 20px 22px;
}

.blog-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.45;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    font-size: 13px;
    font-weight: 600;
    color: #FF5300;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}

.blog-read-more:hover {
    gap: 9px;
}

/* Responsive */
/* ============================================================
   TRAVELER REVIEWS SECTION
   ============================================================ */
.rev-section {
    background: #fff;
    padding: 60px 0 72px;
}

/* Header */
.rev-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 16px;
}

.rev-title {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin: 0;
}

.rev-overall {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff8f5;
    border: 1.5px solid #ffe0d3;
    border-radius: 14px;
    padding: 12px 20px;
}

.rev-big-score {
    font-size: 44px;
    font-weight: 900;
    color: #FF5300;
    line-height: 1;
}

.rev-big-stars {
    color: #FF9B00;
    font-size: 18px;
    letter-spacing: 2px;
}

.rev-big-count {
    font-size: 12px;
    color: #888;
    margin: 3px 0 0;
}

/* Filter Tags */
.rev-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.rev-tag {
    padding: 7px 18px;
    border-radius: 50px;
    border: 1.5px solid #e2e5ea;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.rev-tag:hover {
    border-color: #FF5300;
    color: #FF5300;
}

.rev-tag.active {
    background: #FF5300;
    border-color: #FF5300;
    color: #fff;
}

/* Slider wrapper */
.rev-slider-wrap {
    overflow: hidden;
    width: 100%;
}

/* Cards Slider */
.rev-grid {
    display: flex;
    gap: 22px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

@keyframes revFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rev-card {
    flex: 0 0 calc((100% - 44px) / 3);
    background: #fafafa;
    border: 1.5px solid #f0f0f0;
    border-radius: 16px;
    padding: 20px 22px 18px;
    transition: box-shadow 0.25s;
    animation: revFadeIn 0.35s ease;
}

.rev-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
}

/* Card Top Row */
.rev-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.rev-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rev-info {
    flex: 1;
}

.rev-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.rev-country {
    font-size: 12px;
    color: #888;
}

.rev-country i {
    margin-right: 2px;
}

/* Badge */
.rev-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.rev-badge.trekking {
    background: #fff0e8;
    color: #FF5300;
}

.rev-badge.cultural {
    background: #eef2ff;
    color: #4F46E5;
}

.rev-badge.adventure {
    background: #ecfdf5;
    color: #059669;
}

.rev-badge.daytrip {
    background: #f5f3ff;
    color: #7C3AED;
}

.rev-badge.wildlife {
    background: #fffbeb;
    color: #D97706;
}

/* Stars & Text */
.rev-stars {
    color: #FF9B00;
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.rev-text {
    font-size: 13.5px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 16px;
}

/* Review Images Strip – 4 visible */
.rev-images {
    display: flex;
    gap: 5px;
    margin-bottom: 14px;
    overflow: hidden;
}

.rev-img-track {
    display: flex;
    gap: 5px;
    width: 100%;
    transition: transform 0.5s ease;
}

.rev-img-track img {
    flex: 0 0 calc(25% - 4px);
    height: 68px;
    object-fit: cover;
    border-radius: 7px;
    display: block;
    transition: transform 0.3s;
}

.rev-img-track img:hover {
    transform: scale(1.04);
    cursor: pointer;
}

.rev-img-dots {
    display: none;
}

/* Lightbox */
.rev-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.rev-lightbox.active {
    display: flex;
}

.rev-lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.rev-lb-close {
    position: fixed;
    top: 18px;
    right: 22px;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.85;
    background: none;
    border: none;
    padding: 0;
}

.rev-lb-close:hover {
    opacity: 1;
}

.rev-lb-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: background 0.2s;
}

.rev-lb-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    opacity: 1;
}

.rev-lb-prev {
    left: 16px;
}

.rev-lb-next {
    right: 16px;
}

.rev-lb-counter {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

/* Footer */
.rev-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #eee;
    gap: 8px;
    flex-wrap: wrap;
}

.rev-trip {
    font-size: 12px;
    color: #FF5300;
    font-weight: 600;
}

.rev-trip i {
    margin-right: 3px;
}

.rev-date {
    font-size: 12px;
    color: #aaa;
}

/* Responsive */
/* ============================================================
   DESTINATION PAGE END
   ============================================================ */

/* End */

/* ============================================================
   NEWS & NEWSLETTER PAGE
   ============================================================ */

/* ── Shared ── */
.ns-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #f37002;
    margin-bottom: 10px;
}

.ns-label--light {
    color: #fbbf74;
}

.ns-section-head {
    text-align: center;
    margin-bottom: 50px;
}

.ns-section-head h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0a0a0a;
    margin: 0 0 10px;
}

.ns-section-head h2 span {
    color: #f37002;
}

.ns-section-head p {
    font-size: 15px;
    color: #777;
    margin: 0;
}

/* ── Hero ── */
.ns-hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ns-hero-bg {
    position: absolute;
    inset: 0;
}

.ns-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ns-hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(120deg, rgba(5, 5, 5, .88) 40%, rgba(5, 5, 5, .4)); */
    background: linear-gradient(191deg, rgb(8 12 30 / 23%) 45%, rgb(8 12 30 / 77%) 100%);
}

.ns-hero-card {
    position: absolute;
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: nsFloat 4s ease-in-out infinite;
}

.ns-hero-card i {
    color: #f37002;
}

.ns-hc-1 {
    top: 22%;
    right: 14%;
    animation-delay: 0s;
}

.ns-hc-2 {
    top: 50%;
    right: 8%;
    animation-delay: 1.2s;
}

.ns-hc-3 {
    top: 72%;
    right: 18%;
    animation-delay: 2.4s;
}

@keyframes nsFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.ns-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 600px;
}

.ns-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(243, 112, 2, .15);
    border: 1px solid rgba(243, 112, 2, .4);
    color: #fbbf74;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.ns-hero-content h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 16px;
}

.ns-hero-content h1 span {
    color: #f37002;
}

.ns-hero-content>p {
    font-size: 16px;
    color: rgba(255, 255, 255, .78);
    margin-bottom: 28px;
}

.ns-hero-form {
    display: flex;
    gap: 0;
    max-width: 520px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    backdrop-filter: blur(10px);
}

.ns-hero-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ns-hero-input-wrap i {
    color: rgba(255, 255, 255, .45);
    font-size: 14px;
}

.ns-hero-input-wrap input {
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    width: 100%;
}

.ns-hero-input-wrap input::placeholder {
    color: rgba(255, 255, 255, .45);
}

.ns-hero-btn {
    background: #f37002;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .25s, transform .25s;
    white-space: nowrap;
}

.ns-hero-btn:hover {
    background: #d96200;
    transform: scale(1.03);
}

.ns-hero-note {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ns-hero-note i {
    font-size: 11px;
}

/* ── Trust Bar ── */
.ns-trust {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
    padding: 20px 0;
}

.ns-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.ns-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 36px;
    font-size: 14px;
}

.ns-trust-item i {
    color: #f37002;
    font-size: 18px;
}

.ns-trust-item strong {
    color: #0a0a0a;
}

.ns-trust-item span {
    color: #555;
}

.ns-trust-sep {
    width: 1px;
    height: 36px;
    background: #e8e8e8;
}

/* ── Inside Grid ── */
.ns-inside {
    padding: 80px 0;
    background: #f5f6f8;
}

.ns-inside-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ns-inside-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid #ebebeb;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .055);
    transition: transform .28s, box-shadow .28s;
}

.ns-inside-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .1);
}

.ns-inside-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
}

.ns-inside-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 0 10px;
}

.ns-inside-card p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.68;
    margin: 0;
}

/* ── News Section ── */
.ns-news {
    padding: 80px 0;
    background: #fff;
}

.ns-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .1);
    border: 1px solid #ebebeb;
    margin-bottom: 48px;
}

.ns-feat-img {
    position: relative;
    min-height: 360px;
}

.ns-feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ns-feat-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #f37002;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.ns-feat-body {
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.ns-feat-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.ns-cat {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.ns-cat--orange {
    background: #fff3e6;
    color: #c25800;
}

.ns-cat--blue {
    background: #eff6ff;
    color: #1d4ed8;
}

.ns-cat--purple {
    background: #f5f3ff;
    color: #6d28d9;
}

.ns-cat--green {
    background: #f0fdf4;
    color: #15803d;
}

.ns-date,
.ns-read {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ns-feat-body h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0a0a0a;
    line-height: 1.4;
    margin: 0 0 14px;
}

.ns-feat-body>p {
    font-size: 14px;
    color: #666;
    line-height: 1.72;
    margin: 0 0 18px;
}

.ns-feat-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.ns-feat-tags span {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 20px;
}

.ns-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f37002;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 50px;
    text-decoration: none;
    transition: background .25s, transform .25s;
    align-self: flex-start;
}

.ns-read-btn:hover {
    background: #d96200;
    transform: translateX(3px);
    color: #fff;
}

.ns-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ns-news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #ebebeb;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .055);
    display: flex;
    flex-direction: column;
    transition: transform .28s, box-shadow .28s;
}

.ns-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .1);
}

.ns-news-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.ns-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.ns-news-card:hover .ns-news-img img {
    transform: scale(1.06);
}

.ns-news-img .ns-cat {
    position: absolute;
    top: 12px;
    left: 12px;
}

.ns-news-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ns-news-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #aaa;
}

.ns-news-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.45;
    margin: 0;
}

.ns-news-body p {
    font-size: 13px;
    color: #666;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.ns-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #f37002;
    text-decoration: none;
    margin-top: 4px;
    transition: gap .2s;
}

.ns-link:hover {
    gap: 10px;
    color: #f37002;
}

/* ── Subscribe Section ── */
.ns-subscribe {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.ns-subscribe-bg {
    position: absolute;
    inset: 0;
}

.ns-subscribe-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ns-subscribe-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(5, 5, 5, .90) 50%, rgba(5, 5, 5, .65));
}

.ns-subscribe-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.ns-sub-left h2 {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 24px;
}

.ns-sub-left h2 span {
    color: #f37002;
}

.ns-sub-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ns-sub-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, .80);
}

.ns-sub-perks li i {
    color: #f37002;
    font-size: 16px;
    flex-shrink: 0;
}

.ns-sub-social-proof {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ns-sub-avatars {
    display: flex;
}

.ns-sub-avatars span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .3);
    margin-left: -8px;
}

.ns-sub-avatars span:first-child {
    margin-left: 0;
}

.ns-sub-social-proof p {
    font-size: 13px;
    color: rgba(255, 255, 255, .60);
    margin: 0;
}

.ns-sub-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

.ns-sub-card-head {
    text-align: center;
    margin-bottom: 28px;
}

.ns-sub-icon {
    font-size: 36px;
    color: #f37002;
    display: block;
    margin-bottom: 12px;
}

.ns-sub-card-head h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0a0a0a;
    margin: 0 0 6px;
}

.ns-sub-card-head p {
    font-size: 14px;
    color: #888;
    margin: 0;
}

.ns-sub-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ns-sub-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ns-sub-field label {
    font-size: 12px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.ns-sub-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 0 14px;
    transition: border-color .2s;
}

.ns-sub-input-wrap:focus-within {
    border-color: #f37002;
}

.ns-sub-input-wrap i {
    color: #ccc;
    font-size: 14px;
    flex-shrink: 0;
}

.ns-sub-input-wrap input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
    font-family: inherit;
    padding: 13px 0;
    color: #0a0a0a;
}

.ns-interest-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ns-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 2px solid #e8e8e8;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all .2s;
    user-select: none;
}

.ns-pill input {
    display: none;
}

.ns-pill:has(input:checked) {
    background: #fff3e6;
    border-color: #f37002;
    color: #c25800;
}

.ns-sub-btn {
    background: linear-gradient(120deg, #f37002, #d96200);
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
    transition: transform .25s, box-shadow .25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(243, 112, 2, .35);
}

.ns-sub-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(243, 112, 2, .45);
}

.ns-sub-legal {
    font-size: 11.5px;
    color: #aaa;
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.ns-sub-legal i {
    font-size: 11px;
}

.ns-sub-success {
    display: none;
    text-align: center;
    padding: 20px 0;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.ns-sub-success i {
    font-size: 48px;
    color: #16a34a;
}

.ns-sub-success h4 {
    font-size: 20px;
    font-weight: 800;
    color: #0a0a0a;
    margin: 0;
}

.ns-sub-success p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* ── Past Issues ── */
.ns-past {
    padding: 80px 0;
    background: #f5f6f8;
}

.ns-past-list {
    display: flex;
    flex-direction: column;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .05);
}

.ns-past-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 22px 30px;
    border-bottom: 1px solid #f0f0f0;
    transition: background .2s;
}

.ns-past-item:last-child {
    border-bottom: none;
}

.ns-past-item:hover {
    background: #fef9f5;
}

.ns-past-num {
    font-size: 12px;
    font-weight: 800;
    color: #f37002;
    background: #fff3e6;
    border: 1px solid #fddab8;
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.ns-past-info {
    flex: 1;
}

.ns-past-info h5 {
    font-size: 15px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 0 4px;
}

.ns-past-info span {
    font-size: 12px;
    color: #999;
}

.ns-past-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #f37002;
    text-decoration: none;
    flex-shrink: 0;
    transition: gap .2s;
}

.ns-past-link:hover {
    gap: 10px;
    color: #f37002;
}

/* ── Filter Tabs ── */
.ns-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.ns-ftab {
    padding: 8px 22px;
    border-radius: 50px;
    border: 2px solid #e0e0e0;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    font-family: inherit;
    transition: all .22s;
}

.ns-ftab:hover,
.ns-ftab.active {
    background: #f37002;
    border-color: #f37002;
    color: #fff;
}

/* ── Load More ── */
.ns-load-more {
    text-align: center;
    margin-top: 48px;
}

.ns-load-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 2px solid #e0e0e0;
    color: #333;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 50px;
    cursor: pointer;
    font-family: inherit;
    transition: all .25s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}

.ns-load-btn:hover {
    background: #f37002;
    border-color: #f37002;
    color: #fff;
    box-shadow: 0 6px 20px rgba(243, 112, 2, .3);
}

.ns-load-btn i {
    transition: transform .3s;
}

.ns-load-btn:hover i {
    transform: translateY(3px);
}

/* ── News Responsive ── */
/* ============================================================
   NEWS & NEWSLETTER PAGE END
   ============================================================ */

/* ============================================================
   MOBILE NAVIGATION
   ============================================================ */
.mob-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    height: 62px;
    background: transparent;
    transition: background .3s, box-shadow .3s;
}

.mob-header.scrolled {
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .1);
}

.mob-header.scrolled .mob-logo img {
    filter: brightness(0);
}

.mob-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 62px;
    padding: 0 20px;
}

.mob-logo {
    display: flex;
    align-items: center;
}

.mob-logo img {
    height: 38px;
    transition: filter .3s;
}

.mob-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mob-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    text-decoration: none;
    transition: color .2s;
    line-height: 1;
}

.mob-header.scrolled .mob-login-btn {
    color: #222;
}

.mob-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 4px;
    width: 32px;
    margin-left: auto;
}

.mob-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: background .2s;
}

.mob-header.scrolled .mob-hamburger span {
    background: #222;
}

/* Drawer */
.mob-drawer {
    position: fixed;
    top: 0;
    left: -295px;
    width: 295px;
    height: 100%;
    background: #fff;
    z-index: 10000;
    transition: left .32s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mob-drawer.open {
    left: 0;
    box-shadow: 6px 0 32px rgba(0, 0, 0, .18);
}

.mob-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.mob-drawer-logo {
    height: 36px;
}

.mob-drawer-close {
    background: #f5f5f5;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #444;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.mob-drawer-close:hover {
    background: #f37002;
    color: #fff;
}

.mob-nav {
    flex: 1;
    padding: 6px 0;
}

.mob-nav>ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mob-nav>ul>li>a {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    border-bottom: 1px solid #f5f5f5;
    text-decoration: none;
    transition: color .2s;
    flex: 1;
}

.mob-nav>ul>li>a:hover {
    color: #f37002;
}

/* Drop row: text link + arrow button side by side */
.mob-drop-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f5f5f5;
}

.mob-drop-row > a {
    flex: 1;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    transition: color .2s;
    border-bottom: none;
}

.mob-drop-row > a:hover {
    color: #f37002;
}

.mob-drop-toggle {
    background: none;
    border: none;
    border-left: 1px solid #f0f0f0;
    padding: 0 18px;
    height: 48px;
    cursor: pointer;
    color: #888;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .2s, background .2s;
    flex-shrink: 0;
}

.mob-drop-toggle:hover {
    background: #fff8f3;
    color: #f37002;
}

.mob-drop-toggle i {
    transition: transform .25s;
}

.mob-drop.active .mob-drop-toggle i {
    transform: rotate(180deg);
}

/* ── Level 2 sub menu ── */
.mob-sub {
    display: none;
    list-style: none;
    background: #f7f7f7;
    padding: 4px 0;
    margin: 0;
    border-bottom: 1px solid #ebebeb;
    animation: mobSubOpen .22s ease;
}

.mob-drop.active > .mob-sub {
    display: block;
}

@keyframes mobSubOpen {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Level 2 plain link items */
.mob-sub > li > a {
    display: block;
    padding: 11px 20px 11px 28px;
    font-size: 13.5px;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    border-bottom: 1px solid #efefef;
    transition: color .2s, background .2s;
}
.mob-sub > li:last-child > a { border-bottom: none; }
.mob-sub > li > a:hover { color: #f37002; background: #fff8f3; }

/* ── Level 2 drop row (inside .mob-sub) ── */
.mob-drop-row--l2 {
    background: #f7f7f7;
    border-bottom: 1px solid #efefef;
}
.mob-drop-row--l2 > a {
    padding: 11px 14px 11px 28px;
    font-size: 13.5px;
    font-weight: 500;
    color: #444;
    border-bottom: none;
}
.mob-drop-row--l2 > a:hover { color: #f37002; }
.mob-drop-row--l2 .mob-drop-toggle {
    height: 44px;
    padding: 0 14px;
    font-size: 11px;
    border-left-color: #e8e8e8;
}

/* ── Level 3 sub menu ── */
.mob-sub--l3 {
    background: #fff;
    border-bottom: none;
    padding: 2px 0;
}
.mob-sub--l3 > li > a {
    padding: 9px 16px 9px 44px;
    font-size: 13px;
    font-weight: 400;
    color: #666;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
}
.mob-sub--l3 > li > a::before {
    content: '–';
    position: absolute;
    left: 30px;
    color: #ccc;
    font-size: 11px;
}
.mob-sub--l3 > li:last-child > a { border-bottom: none; }
.mob-sub--l3 > li > a:hover { color: #f37002; background: #fff8f3; }

.mob-sub li:last-child a {
    border-bottom: none;
}

.mob-sub li a:hover {
    color: #f37002;
    padding-left: 44px;
}

.mob-drawer-footer {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
}

.mob-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f37002;
    color: #fff;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background .2s;
}

.mob-cta-btn:hover {
    background: #d85e00;
    color: #fff;
}

.mob-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 9998;
    backdrop-filter: blur(2px);
}

.mob-overlay.show {
    display: block;
}

/* ============================================================
   TRIP SEARCH — HIDE ON MOBILE
   ============================================================ */
/* ============================================================
   INDEX PAGE — SECTION MOBILE TWEAKS
   ============================================================ */

/* Yatra Trip (Explore Amazing Tours section) */
/* Yatra General */
/* Popular Tours */
/* Destination Next */
/* Why Choose Us */
/* UNESCO */
/* Adventure Experience */
/* Travel Story */
/* Blog Section */
/* Section spacing on mobile */
/* ============================================================
   MOBILE NAVIGATION END
   ============================================================ */


/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* ===== Hero ===== */
.ct-hero {
    position: relative;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    align-items: center;
    color: #fff;
}

.ct-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ct-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
}

.ct-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(191deg, rgb(8 12 30 / 23%) 45%, rgb(8 12 30 / 77%) 100%)
}

.ct-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 80px 0;
}

.ct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(243, 112, 2, .2);
    border: 1px solid rgba(243, 112, 2, .4);
    color: #f37002;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.ct-hero-left h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    color: #fff;
}

.ct-hero-left h1 span {
    color: #f37002;
}

.ct-hero-left p {
    font-size: 16px;
    opacity: .75;
    line-height: 1.65;
    max-width: 440px;
    margin-bottom: 24px;
    color: #fff;
}

.ct-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    opacity: .65;
}

.ct-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.ct-breadcrumb span {
    opacity: .5;
}

.ct-hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.ct-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 11px 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: background .22s, transform .22s;
}

.ct-hero-pill:hover {
    background: rgba(243, 112, 2, .3);
    border-color: rgba(243, 112, 2, .5);
    transform: translateX(-4px);
}

.ct-pill-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f37002;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

/* ===== Info Cards ===== */
.ct-cards-section {
    background: #fff;
    padding: 0;
}

.ct-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid #f0f0f0;
}

.ct-info-card {
    padding: 32px 28px;
    border-right: 1px solid #f0f0f0;
    transition: background .25s;
    position: relative;
}

.ct-info-card:last-child {
    border-right: none;
}

.ct-info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #f37002;
    transition: width .3s ease;
}

.ct-info-card:hover::after {
    width: 100%;
}

.ct-info-card:hover {
    background: #fffaf5;
}

.ct-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.ct-icon-wrap.orange {
    background: rgba(243, 112, 2, .1);
    color: #f37002;
}

.ct-icon-wrap.blue {
    background: rgba(30, 100, 220, .1);
    color: #1e64dc;
}

.ct-icon-wrap.green {
    background: rgba(22, 160, 90, .1);
    color: #16a05a;
}

.ct-icon-wrap.purple {
    background: rgba(120, 60, 200, .1);
    color: #783cc8;
}

.ct-info-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.ct-info-card p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.ct-info-card a {
    color: #f37002;
    text-decoration: none;
    font-weight: 600;
    font-size: 13.5px;
}

.ct-info-card a:hover {
    color: #d45f00;
}

/* ===== Main Section ===== */
.ct-main {
    padding: 72px 0;
    background: #f5f6fa;
}

.ct-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}

/* Left Panel */
.ct-left-panel {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.ct-panel-heading .tag {
    display: inline-block;
    background: rgba(243, 112, 2, .1);
    color: #f37002;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.ct-panel-heading h2 {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.25;
    margin-bottom: 10px;
}

.ct-panel-heading p {
    font-size: 14.5px;
    color: #666;
    line-height: 1.7;
}

.ct-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ct-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: box-shadow .22s, border-color .22s;
}

.ct-contact-item:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
    border-color: rgba(243, 112, 2, .2);
}

.ct-ci-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.ct-ci-icon.orange {
    background: rgba(243, 112, 2, .1);
    color: #f37002;
}

.ct-ci-icon.blue {
    background: rgba(30, 100, 220, .1);
    color: #1e64dc;
}

.ct-ci-icon.green {
    background: rgba(22, 160, 90, .1);
    color: #16a05a;
}

.ct-ci-icon.wa {
    background: rgba(37, 211, 102, .12);
    color: #25d366;
}

.ct-ci-body strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #999;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.ct-ci-body a,
.ct-ci-body span {
    font-size: 14.5px;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
}

.ct-ci-body a:hover {
    color: #f37002;
}

.ct-social-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ct-social-row h6 {
    font-size: 12px;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 4px;
}

.ct-socials {
    display: flex;
    gap: 8px;
}

.ct-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    color: #fff;
    transition: transform .2s, opacity .2s;
}

.ct-social-btn:hover {
    transform: translateY(-2px);
    opacity: .85;
    color: #fff;
}

.ct-social-btn.fb {
    background: #1877f2;
}

.ct-social-btn.ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.ct-social-btn.yt {
    background: #ff0000;
}

.ct-social-btn.wa {
    background: #25d366;
}

.ct-social-btn.tt {
    background: #000;
}

/* Right: Form Card */
.ct-form-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .09);
    overflow: hidden;
}

.ct-form-header {
    /* background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%); */
    background: linear-gradient(135deg, #f37000 0%, #fcfcfc 100%);
    padding: 28px 32px;
    color: #fff;
}

.ct-form-header h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #fff;
}

.ct-form-header p {
    font-size: 14px;
    margin: 0;
    color: #fff;
    opacity: .85;
}

.ct-form-header p strong {
    color: #fff;
    opacity: 1;
    font-weight: 700;
}

.ct-form-body {
    padding: 32px;
}

.ct-form-group {
    margin-bottom: 18px;
}

.ct-form-group label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: #444;
    margin-bottom: 6px;
    letter-spacing: .3px;
}

.ct-form-group .ct-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: #333;
    background: #fafafa;
    outline: none;
    transition: border-color .22s, background .22s, box-shadow .22s;
}

.ct-form-group .ct-input:focus {
    border-color: #f37002;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(243, 112, 2, .1);
}

.ct-form-group .ct-input::placeholder {
    color: #bbb;
}

.ct-form-group textarea.ct-input {
    resize: vertical;
    min-height: 120px;
}

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ct-interest-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.ct-interest-chip {
    padding: 7px 16px;
    border-radius: 50px;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all .2s;
    user-select: none;
}

.ct-interest-chip:hover {
    border-color: #f37002;
    color: #f37002;
}

.ct-interest-chip.selected {
    background: #f37002;
    border-color: #f37002;
    color: #fff;
}

.ct-submit-btn {
    width: 100%;
    background: #f37002;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px 32px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .22s, transform .22s, box-shadow .22s;
    margin-top: 8px;
}

.ct-submit-btn:hover {
    background: #d45f00;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(243, 112, 2, .35);
}

.ct-form-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: #aaa;
    margin-top: 12px;
    justify-content: center;
}

.ct-form-note i {
    font-size: 13px;
}

/* ===== Map ===== */
.ct-map-section {
    position: relative;
}

.ct-map-section iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: none;
    filter: grayscale(15%);
}

/* ===== Contact Responsive ===== */
/* ============================================================
   CONTACT PAGE END
   ============================================================ */


/* ============================================================
   VIDEOS PAGE
   ============================================================ */

/* ===== Page Tab Nav ===== */
.pg-tab-nav {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.pg-tabs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0;
}

.pg-tab {
    display: inline-block;
    padding: 18px 32px;
    font-size: 15px;
    font-weight: 600;
    color: #444;
    text-decoration: none;
    position: relative;
    transition: color .25s;
    white-space: nowrap;
}

.pg-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: transform .25s;
}

.pg-tab:hover {
    color: var(--primary-color);
}

.pg-tab:hover::after {
    transform: scaleX(1);
}

.pg-tab.active {
    color: var(--primary-color);
}

.pg-tab.active::after {
    transform: scaleX(1);
}

/* ===== Videos Hero ===== */
.vd-hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.vd-hero-bg {
    position: absolute;
    inset: 0;
}

.vd-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vd-hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to right, rgba(0, 0, 0, .70) 40%, rgba(0, 0, 0, .30)); */
    background: linear-gradient(191deg, rgb(8 12 30 / 23%) 45%, rgb(8 12 30 / 77%) 100%)
}

.vd-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 20px 0;
}

.vd-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 14px;
    color: #fff;
}

.vd-hero-content h1 span {
    color: var(--primary-color);
}

.vd-hero-content p {
    font-size: 16px;
    opacity: .85;
    max-width: 500px;
    color: #fff;
}

/* ===== Section ===== */
.vd-section {
    padding: 70px 0 80px;
    background: #f9f9f9;
}

.vd-section-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.vd-section-top h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

/* ===== Filter Tabs ===== */
.vd-filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.vd-filter-btn {
    padding: 7px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all .25s;
}

.vd-filter-btn:hover,
.vd-filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* ===== Grid ===== */
.vd-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* ===== Card ===== */
.vd-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .07);
    cursor: pointer;
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
}

.vd-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .13);
}

.vd-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.vd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.vd-card:hover .vd-thumb img {
    transform: scale(1.06);
}

.vd-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .25);
    transition: background .3s;
}

.vd-card:hover .vd-play-btn {
    background: rgba(236, 29, 35, .55);
}

.vd-play-btn i {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, .92);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    padding-left: 4px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
    transition: transform .3s;
}

.vd-card:hover .vd-play-btn i {
    transform: scale(1.12);
}

.vd-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, .72);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
}

.vd-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 4px 10px;
    border-radius: 20px;
    color: #fff;
}

.vd-cat--orange {
    background: var(--primary-color);
}

.vd-cat--blue {
    background: #1a6fc4;
}

.vd-cat--purple {
    background: #7c3aed;
}

.vd-cat--green {
    background: #16a34a;
}

.vd-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vd-card-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    margin: 0;
}

.vd-card-body p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.vd-meta {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

.vd-meta i {
    margin-right: 4px;
    color: var(--primary-color);
}

/* ===== Modal ===== */
.vd-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .82);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vd-modal-overlay.active {
    display: flex;
}

.vd-modal {
    position: relative;
    width: 100%;
    max-width: 860px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.vd-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 10;
    background: rgba(255, 255, 255, .12);
    border: none;
    color: #fff;
    font-size: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.vd-modal-close:hover {
    background: var(--primary-color);
}

.vd-modal-iframe-wrap {
    aspect-ratio: 16/9;
    width: 100%;
}

.vd-modal-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ===== Videos Responsive ===== */
/* ============================================================
   VIDEOS PAGE END
   ============================================================ */

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* ── Hero ── */
.ab-hero {
    position: relative;
    height: 460px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ab-hero-bg {
    position: absolute;
    inset: 0;
}

.ab-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ab-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(191deg, rgb(8 12 30 / 23%) 45%, rgb(8 12 30 / 77%) 100%);

}

.ab-hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.ab-hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #f37002;
    border: 1px solid rgba(243, 112, 2, .4);
    background: rgba(243, 112, 2, .1);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.ab-hero-content h1 {
    font-size: 46px;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.ab-hero-content h1 span {
    color: #f37002;
}

.ab-hero-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, .78);
    margin: 0;
}

/* ── Tab Nav ── */
.ab-tab-nav {
    background: #fff;
    border-bottom: 1px solid #ebebeb;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.ab-tabs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0;
    overflow-x: auto;
}

.ab-tab {
    display: inline-block;
    padding: 18px 30px;
    font-size: 15px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    transition: color .25s;
}

.ab-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #f37002;
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: transform .25s;
}

.ab-tab:hover {
    color: #f37002;
}

.ab-tab:hover::after {
    transform: scaleX(1);
}

.ab-tab.active {
    color: #f37002;
}

.ab-tab.active::after {
    transform: scaleX(1);
}

/* ── Shared section ── */
.ab-section {
    padding: 80px 0;
    background: #fff;
}

.ab-section--gray {
    background: #f5f6f8;
}

.ab-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #f37002;
    margin-bottom: 14px;
}

.ab-section-head {
    text-align: center;
    margin-bottom: 56px;
}

.ab-section-head h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0a0a0a;
    margin: 0 0 12px;
}

.ab-section-head h2 span {
    color: #f37002;
}

.ab-section-head p {
    font-size: 15px;
    color: #777;
    margin: 0;
}

.ab-section-head--light h2 {
    color: #fff;
}

.ab-section-head--light p {
    color: rgba(255, 255, 255, .72);
}

/* ── Split layout ── */
.ab-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.ab-split--reverse {
    direction: rtl;
}

.ab-split--reverse>* {
    direction: ltr;
}

.ab-split-text h2 {
    font-size: 30px;
    font-weight: 800;
    color: #0a0a0a;
    line-height: 1.3;
    margin: 0 0 20px;
}

.ab-accent {
    color: #f37002;
}

.ab-accent--blue {
    color: #2563eb;
}

.ab-split-text p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.75;
    margin-bottom: 16px;
}

/* Stats */
.ab-stat-row {
    display: flex;
    gap: 32px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #f0f0f0;
}

.ab-stat strong {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: #f37002;
    line-height: 1;
}

.ab-stat span {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
    display: block;
}

/* Image collage */
.ab-split-images {
    display: flex;
    gap: 12px;
}

.ab-img-main {
    flex: 1.4;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
}

.ab-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ab-img-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ab-img-stack img {
    width: 100%;
    height: calc(50% - 6px);
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    display: block;
}

/* Button */
.ab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f37002;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 8px;
    transition: background .25s, transform .25s;
}

.ab-btn:hover {
    background: #d96200;
    transform: translateX(4px);
    color: #fff;
}

/* ── Community section ── */
.ab-community {
    padding: 80px 0;
    background: #f5f6f8;
}

.ab-article {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: center;
}

.ab-article-img {
    position: relative;
}

.ab-article-img img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
    display: block;
}

/* Decorative shapes */
.ab-deco {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    opacity: .85;
}

.ab-deco--teal {
    background: #0891b2;
    top: -18px;
    right: -18px;
}

.ab-deco--orange {
    background: #f37002;
    bottom: -16px;
    left: -16px;
    width: 44px;
    height: 44px;
}

.ab-article-body h3 {
    font-size: 24px;
    font-weight: 800;
    color: #0a0a0a;
    margin: 0 0 18px;
    line-height: 1.35;
}

.ab-article-body p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.78;
    margin-bottom: 14px;
}

/* ── About Responsive ── */
/* ============================================================
   ABOUT PAGE END
   ============================================================ */

/* ============================================================
   TRAVEL GUIDE PAGE
   ============================================================ */

/* Hero */
.tg-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.tg-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.tg-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.tg-hero:hover .tg-hero-bg img {
    transform: scale(1);
}

.tg-hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, rgba(10, 10, 30, .72) 0%, rgba(243, 112, 2, .45) 100%); */
    background: linear-gradient(191deg, rgb(8 12 30 / 23%) 45%, rgb(8 12 30 / 77%) 100%);

    z-index: 1;
}

.tg-hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 0 80px;
    color: #fff;
}

.tg-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(243, 112, 2, .85);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
    letter-spacing: .5px;
}

.tg-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.13;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .25);
    color: #FFFFFF;
}

.tg-hero-content h1 span {
    color: #f37002;
}

.tg-hero-content p {
    font-size: 17px;
    opacity: .88;
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.65;
    color: #FFFFFF;
}

.tg-hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.tg-hero-stat {
    text-align: center;
}

.tg-hero-stat strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #f37002;
}

.tg-hero-stat span {
    font-size: 13px;
    opacity: .82;
}

/* Breadcrumb */
.tg-breadcrumb {
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

.tg-breadcrumb ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
}

.tg-breadcrumb li+li::before {
    content: '/';
    color: #aaa;
    margin-right: 6px;
}

.tg-breadcrumb a {
    color: #f37002;
    text-decoration: none;
}

.tg-breadcrumb li:last-child {
    color: #555;
}

/* Section headings */
.tg-section-head {
    margin-bottom: 36px;
}

.tg-section-head .tg-tag {
    display: inline-block;
    background: rgba(243, 112, 2, .1);
    color: #f37002;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.tg-section-head h2 {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
    line-height: 1.25;
}

.tg-section-head p {
    font-size: 16px;
    color: #666;
    max-width: 560px;
    line-height: 1.65;
}

/* ===== Destination Guides ===== */
.tg-dest-section {
    padding: 72px 0;
    background: #fff;
}

.tg-filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.tg-filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tg-filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    color: #555;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all .22s;
}

.tg-filter-btn:hover {
    border-color: #f37002;
    color: #f37002;
}

.tg-filter-btn.active {
    background: #f37002;
    border-color: #f37002;
    color: #fff;
}

.tg-dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.tg-dest-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
    transition: transform .28s, box-shadow .28s;
    display: flex;
    flex-direction: column;
}

.tg-dest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .14);
}

.tg-dest-photo {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.tg-dest-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.tg-dest-card:hover .tg-dest-photo img {
    transform: scale(1.07);
}

.tg-dest-flag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: .4px;
}

.tg-dest-flag.flag-nepal {
    background: rgba(220, 60, 50, .82);
}

.tg-dest-flag.flag-bhutan {
    background: rgba(255, 140, 0, .82);
}

.tg-dest-flag.flag-india {
    background: rgba(19, 136, 8, .82);
}

.tg-dest-diff {
    position: absolute;
    bottom: 14px;
    right: 14px;
    display: flex;
    gap: 3px;
}

.tg-diff-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
}

.tg-diff-dot.filled {
    background: #f37002;
}

.tg-dest-body {
    padding: 22px 22px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tg-dest-meta {
    display: flex;
    gap: 14px;
    margin-bottom: 10px;
}

.tg-dest-meta span {
    font-size: 12.5px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tg-dest-meta span i {
    color: #f37002;
}

.tg-dest-body h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.35;
}

.tg-dest-body p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.tg-dest-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.tg-highlight-tag {
    font-size: 11.5px;
    background: #f5f5f5;
    color: #555;
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 500;
}

.tg-dest-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #f37002;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    margin-top: auto;
    transition: gap .2s;
}

.tg-dest-btn:hover {
    gap: 10px;
    color: #d45f00;
}

/* ===== Best Time Section ===== */
.tg-season-section {
    padding: 72px 0;
    background: #f9f9f9;
}

.tg-season-tabs {
    display: flex;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid #e0e0e0;
    margin-bottom: 36px;
    background: #fff;
    width: fit-content;
}

.tg-season-tab {
    padding: 12px 28px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    border: none;
    background: none;
    transition: all .22s;
    border-right: 1.5px solid #e0e0e0;
}

.tg-season-tab:last-child {
    border-right: none;
}

.tg-season-tab.active {
    background: #f37002;
    color: #fff;
}

.tg-season-tab:hover:not(.active) {
    background: #fff7f0;
    color: #f37002;
}

.tg-season-content {
    display: none;
}

.tg-season-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.tg-season-photo {
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
}

.tg-season-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tg-season-info h3 {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.tg-season-info p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.tg-season-months {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tg-month-chip {
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 600;
    background: #f0f0f0;
    color: #555;
}

.tg-month-chip.peak {
    background: #f37002;
    color: #fff;
}

.tg-month-chip.good {
    background: #e8f5e9;
    color: #2e7d32;
}

.tg-season-tips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.tg-season-tip {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13.5px;
    color: #444;
}

.tg-season-tip i {
    color: #f37002;
    margin-top: 2px;
    font-size: 14px;
}

/* ===== Travel Guide Responsive ===== */
/* ============================================================
   TRAVEL GUIDE PAGE END
   ============================================================ */

/* ============================================================
   REVIEWS PAGE
   ============================================================ */

/* Hero */
.rv-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.rv-hero-bg {
    position: absolute;
    inset: 0;
}

.rv-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rv-hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(120deg, rgba(10, 10, 10, .82) 35%, rgba(10, 10, 10, .35)); */
    background: linear-gradient(191deg, rgb(8 12 30 / 23%) 45%, rgb(8 12 30 / 77%) 100%)
}

.rv-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 580px;
}

.rv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(243, 112, 2, .15);
    border: 1px solid rgba(243, 112, 2, .4);
    color: #fbbf74;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.rv-hero-badge i {
    color: #f59e0b;
}

.rv-hero-content h1 {
    font-size: 46px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 14px;
}

.rv-hero-content h1 span {
    color: #f37002;
}

.rv-hero-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, .80);
    margin: 0;
}

/* Stats Strip */
.rv-stats-strip {
    background: #fff;
    border-bottom: 1px solid #efefef;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
    padding: 22px 0;
}

.rv-stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.rv-stat {
    text-align: center;
    padding: 0 36px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.rv-stat strong {
    font-size: 22px;
    font-weight: 800;
    color: #0a0a0a;
    line-height: 1;
}

.rv-stat span {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.rv-stat-stars {
    color: #f59e0b;
    font-size: 14px;
}

.rv-stat-div {
    width: 1px;
    height: 44px;
    background: #e8e8e8;
    flex-shrink: 0;
}

/* Section */
.rv-section {
    padding: 64px 0 80px;
    background: #f5f6f8;
}

.rv-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.rv-section-title h2 {
    font-size: 30px;
    font-weight: 800;
    color: #0a0a0a;
    margin: 0 0 4px;
}

.rv-section-title h2 span {
    color: #f37002;
}

.rv-section-title p {
    font-size: 13px;
    color: #999;
    margin: 0;
}

/* Filter */
.rv-filter-row {
    display: flex;
    gap: 8px;
}

.rv-filter {
    padding: 7px 20px;
    border-radius: 50px;
    border: 2px solid #e0e0e0;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all .22s;
    font-family: inherit;
}

.rv-filter:hover,
.rv-filter.active {
    background: #f37002;
    border-color: #f37002;
    color: #fff;
}

/* Grid */
.rv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Card */
.rv-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #ebebeb;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .055);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .28s, box-shadow .28s;
}

.rv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .11);
}

/* Card Header */
.rv-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px 0;
}

.rv-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
}

.rv-card-info {
    flex: 1;
    min-width: 0;
}

.rv-card-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 0 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rv-country {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.rv-card-score {
    text-align: right;
    flex-shrink: 0;
}

.rv-num {
    font-size: 20px;
    font-weight: 900;
    color: #0a0a0a;
    display: block;
    line-height: 1;
    margin-bottom: 3px;
}

.rv-stars {
    color: #f59e0b;
    font-size: 12px;
}

/* Quote block */
.rv-card-quote {
    padding: 18px 24px 14px;
    flex: 1;
}

.rv-quote-icon {
    font-size: 24px;
    color: #f37002;
    opacity: .15;
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}

.rv-card-quote h5 {
    font-size: 15px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 0 10px;
}

.rv-card-quote p {
    font-size: 13.5px;
    color: #5a5a5a;
    line-height: 1.72;
    margin: 0;
}

/* Photos */
.rv-card-photos {
    display: flex;
    gap: 8px;
    padding: 0 24px 16px;
    flex-wrap: wrap;
}

.rv-card-photos img {
    width: 90px;
    height: 66px;
    object-fit: cover;
    border-radius: 8px;
    cursor: zoom-in;
    border: 2px solid #f0f0f0;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}

.rv-card-photos img:hover {
    transform: scale(1.06);
    border-color: #f37002;
    box-shadow: 0 4px 16px rgba(243, 112, 2, .25);
}

/* Lightbox */
.rv-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, .92);
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: rvFadeIn .2s ease;
}

.rv-lightbox.open {
    display: flex;
}

@keyframes rvFadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.rv-lb-inner {
    position: relative;
    max-width: 860px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.rv-lb-img-wrap {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .6);
    animation: rvZoomIn .25s ease;
}

@keyframes rvZoomIn {
    from {
        transform: scale(.92);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.rv-lb-img-wrap img {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    display: block;
    background: #111;
    border-radius: 14px;
}

/* Nav arrows */
.rv-lb-prev,
.rv-lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .12);
    border: none;
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    backdrop-filter: blur(4px);
}

.rv-lb-prev {
    left: -56px;
}

.rv-lb-next {
    right: -56px;
}

.rv-lb-prev:hover,
.rv-lb-next:hover {
    background: #f37002;
}

/* Counter */
.rv-lb-counter {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    font-weight: 500;
}

/* Close */
.rv-lb-close {
    position: fixed;
    top: 18px;
    right: 22px;
    background: rgba(255, 255, 255, .12);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.rv-lb-close:hover {
    background: #f37002;
}

/* Footer */
.rv-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 24px 18px;
    border-top: 1px solid #f5f5f5;
}

.rv-card-foot--slim {
    border-top: none;
    padding-top: 0;
    padding-bottom: 22px;
}

.rv-verified {
    font-size: 12px;
    font-weight: 600;
    color: #15803d;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rv-tour-tag {
    font-size: 11px;
    font-weight: 600;
    color: #f37002;
    background: #fff8f2;
    border: 1px solid #fddab8;
    border-radius: 20px;
    padding: 3px 11px;
    white-space: nowrap;
}

/* Load More */
.rv-load-wrap {
    text-align: center;
    margin-top: 40px;
}

.rv-load-btn {
    background: #fff;
    border: 2px solid #ddd;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 50px;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .25s;
}

.rv-load-btn:hover {
    background: #f37002;
    border-color: #f37002;
    color: #fff;
}

/* CTA */
.rv-cta {
    background: linear-gradient(120deg, #f37002 0%, #c95500 100%);
    padding: 48px 0;
}

.rv-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.rv-cta-inner h3 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
}

.rv-cta-inner p {
    font-size: 15px;
    color: rgba(255, 255, 255, .80);
    margin: 0;
}

.rv-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    color: #f37002;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    flex-shrink: 0;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .18);
    transition: transform .25s, box-shadow .25s;
}

.rv-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .22);
    color: #f37002;
}

/* ===== Reviews Responsive ===== */
/* ============================================================
   REVIEWS PAGE END
   ============================================================ */

/* ============================================================
   FAQ PAGE
   ============================================================ */

/* ===== FAQ Hero ===== */
.fq-hero {
    position: relative;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    align-items: center;
    color: #fff;
}

.fq-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.fq-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.fq-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(10 10 20 / 47%) 45%, rgba(10, 10, 20, .5) 100%);
    z-index: 1;
}

.fq-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 72px 0;
}

.fq-hero-left .fq-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(243, 112, 2, .2);
    border: 1px solid rgba(243, 112, 2, .4);
    color: #f37002;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.fq-hero-left h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
    color: #fff;
}

.fq-hero-left h1 span {
    color: #f37002;
}

.fq-hero-left p {
    font-size: 16px;
    opacity: .75;
    max-width: 460px;
    line-height: 1.65;
    margin-bottom: 28px;
    color: #FFFFFF;
}

.fq-search {
    display: flex;
    align-items: center;
    max-width: 460px;
    background: rgba(255, 255, 255, .12);
    border: 1.5px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    backdrop-filter: blur(8px);
    transition: border-color .25s;
}

.fq-search:focus-within {
    border-color: #f37002;
    background: rgba(255, 255, 255, .16);
}

.fq-search i {
    color: rgba(255, 255, 255, .5);
    font-size: 16px;
    margin-right: 6px;
}

.fq-search input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14.5px;
    font-family: inherit;
}

.fq-search input::placeholder {
    color: rgba(255, 255, 255, .45);
}

.fq-search-btn {
    background: #f37002;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
}

.fq-search-btn:hover {
    background: #d45f00;
}

.fq-hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
}

.fq-hero-badge-float {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 20px;
    color: #fff;
    font-size: 14.5px;
    font-weight: 700;
    transition: background .22s, transform .22s;
}

.fq-hero-badge-float:hover {
    background: rgba(243, 112, 2, .3);
    border-color: rgba(243, 112, 2, .5);
    transform: translateX(-4px);
}

.fq-hero-badge-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f37002;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* ===== Stats Bar ===== */
.fq-stats-bar {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    padding: 0;
}

.fq-stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.fq-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    border-right: 1px solid #f0f0f0;
}

.fq-stat:last-child {
    border-right: none;
}

.fq-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(243, 112, 2, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #f37002;
    flex-shrink: 0;
}

.fq-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}

.fq-stat span {
    font-size: 12.5px;
    color: #888;
    margin-top: 3px;
    display: block;
}

/* ===== FAQ Body ===== */
.fq-body {
    padding: 60px 0 72px;
    background: #f9f9f9;
}

.fq-tabs-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.fq-cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    transition: all .2s;
    white-space: nowrap;
}

.fq-cat-btn i {
    font-size: 14px;
    color: #aaa;
    transition: color .2s;
}

.fq-cat-btn:hover {
    border-color: #f37002;
    color: #f37002;
}

.fq-cat-btn:hover i {
    color: #f37002;
}

.fq-cat-btn.active {
    background: #f37002;
    border-color: #f37002;
    color: #fff;
}

.fq-cat-btn.active i {
    color: #fff;
}

/* FAQ Accordion Panel */
.fq-panel {
    display: none;
}

.fq-panel.active {
    display: block;
}

.fq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fq-item {
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #eee;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
}

.fq-item:hover {
    border-color: rgba(243, 112, 2, .25);
}

.fq-item.open {
    border-color: rgba(243, 112, 2, .4);
    box-shadow: 0 4px 20px rgba(243, 112, 2, .1);
}

.fq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.fq-q-num {
    font-size: 12px;
    font-weight: 800;
    color: #f37002;
    background: rgba(243, 112, 2, .1);
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fq-item.open .fq-q-num {
    background: #f37002;
    color: #fff;
}

.fq-q-text {
    flex: 1;
    font-size: 15.5px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.35;
}

.fq-item.open .fq-q-text {
    color: #f37002;
}

.fq-q-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .25s;
    color: #999;
}

.fq-item.open .fq-q-icon {
    background: #f37002;
    border-color: #f37002;
    color: #fff;
    transform: rotate(180deg);
}

.fq-q-icon svg {
    transition: transform .25s;
}

.fq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(0.19, 1, 0.22, 1);
}

.fq-item.open .fq-answer {
    max-height: 600px;
}

.fq-answer-body {
    padding: 0 22px 22px 68px;
    font-size: 14.5px;
    color: #555;
    line-height: 1.7;
}

.fq-answer-body p {
    margin-bottom: 10px;
}

.fq-answer-body p:last-child {
    margin-bottom: 0;
}

.fq-answer-list {
    list-style: none;
    margin: 8px 0 10px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fq-answer-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #555;
}

.fq-answer-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #f37002;
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

.fq-answer-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(243, 112, 2, .07);
    border-left: 3px solid #f37002;
    border-radius: 0 8px 8px 0;
    padding: 10px 14px;
    margin-top: 10px;
    font-size: 13.5px;
    color: #555;
}

.fq-answer-note i {
    color: #f37002;
    margin-top: 2px;
    flex-shrink: 0;
}

/* No results */
.fq-no-results {
    text-align: center;
    padding: 60px 20px;
    display: none;
}

.fq-no-results i {
    font-size: 48px;
    color: #ddd;
    display: block;
    margin-bottom: 16px;
}

.fq-no-results h5 {
    font-size: 18px;
    font-weight: 700;
    color: #999;
    margin-bottom: 8px;
}

.fq-no-results p {
    color: #bbb;
    font-size: 14.5px;
}

/* ===== Newsletter Banner ===== */
.fq-newsletter {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
}

.fq-nl-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.fq-nl-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.fq-nl-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 20, .88) 45%, rgba(10, 10, 20, .45) 100%);
    z-index: 1;
}

.fq-nl-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 64px 0;
}

.fq-nl-left h2 {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 14px;
}

.fq-nl-left p {
    font-size: 16px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 460px;
}

.fq-nl-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .12);
    border: 1.5px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    max-width: 480px;
    backdrop-filter: blur(8px);
    transition: border-color .25s;
    margin-bottom: 14px;
}

.fq-nl-form:focus-within {
    border-color: #f37002;
}

.fq-nl-form i {
    color: rgba(255, 255, 255, .5);
    font-size: 16px;
    margin-right: 8px;
}

.fq-nl-form input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14.5px;
    font-family: inherit;
    min-width: 0;
}

.fq-nl-form input::placeholder {
    color: rgba(255, 255, 255, .45);
}

.fq-nl-submit {
    background: #f37002;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 26px;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
}

.fq-nl-submit:hover {
    background: #d45f00;
    transform: translateY(-1px);
}

.fq-nl-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
}

.fq-nl-note i {
    font-size: 13px;
}

.fq-nl-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
}

.fq-nl-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 20px;
    color: #fff;
    font-size: 14.5px;
    font-weight: 700;
    transition: background .22s, transform .22s;
}

.fq-nl-badge:hover {
    background: rgba(243, 112, 2, .35);
    border-color: rgba(243, 112, 2, .6);
    transform: translateX(-4px);
}

.fq-nl-badge-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f37002;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* ===== FAQ Responsive ===== */
/* ============================================================
   FAQ PAGE END
   ============================================================ */

/* ============================================================
   TEAM PAGE
   ============================================================ */

/* ── Hero ── */
.tm-hero {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.tm-hero-bg {
    position: absolute;
    inset: 0;
}

.tm-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.tm-hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(120deg, rgba(10, 10, 10, .85) 40%, rgba(10, 10, 10, .4)); */
    background: linear-gradient(191deg, rgb(8 12 30 / 23%) 45%, rgb(8 12 30 / 77%) 100%);
}

.tm-hero-content {
    position: relative;
    z-index: 2;
    max-width: 660px;
}

.tm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #f37002;
    border: 1px solid rgba(243, 112, 2, .4);
    background: rgba(243, 112, 2, .1);
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.tm-hero-content h1 {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    line-height: 1.13;
    margin-bottom: 18px;
}

.tm-hero-content h1 span {
    color: #f37002;
}

.tm-hero-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, .78);
    max-width: 520px;
    line-height: 1.65;
    margin: 0;
}

/* ── Stats Strip ── */
.tm-stats-strip {
    background: #fff;
    border-bottom: 1px solid #efefef;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
}

.tm-stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.tm-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 44px;
}

.tm-stat>i {
    font-size: 28px;
    color: #f37002;
    flex-shrink: 0;
}

.tm-stat strong {
    display: block;
    font-size: 26px;
    font-weight: 900;
    color: #0a0a0a;
    line-height: 1;
}

.tm-stat span {
    font-size: 12.5px;
    color: #888;
    margin-top: 3px;
    display: block;
}

.tm-stat-div {
    width: 1px;
    height: 48px;
    background: #efefef;
    flex-shrink: 0;
}

/* ── Section ── */
.tm-section {
    padding: 72px 0 80px;
    background: #f5f6f8;
}

.tm-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px;
}

.tm-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #f37002;
    margin-bottom: 10px;
}

.tm-section-head h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0a0a0a;
    margin: 0 0 10px;
    line-height: 1.25;
}

.tm-section-head h2 span {
    color: #f37002;
}

.tm-section-head p {
    font-size: 15px;
    color: #777;
    margin: 0;
    max-width: 500px;
}

/* ── Filter Tabs ── */
.tm-filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.tm-filter-btn {
    padding: 9px 22px;
    border-radius: 50px;
    border: 1.5px solid #ddd;
    background: #fff;
    font-size: 13.5px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all .22s;
    font-family: inherit;
}

.tm-filter-btn:hover {
    border-color: #f37002;
    color: #f37002;
}

.tm-filter-btn.active {
    background: #f37002;
    border-color: #f37002;
    color: #fff;
}

/* ── Grid ── */
.tm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ── Card ── */
.tm-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
    border: 1px solid #ebebeb;
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
}

.tm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .13);
}

/* Photo */
.tm-card-photo {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.tm-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .5s ease;
}

.tm-card:hover .tm-card-photo img {
    transform: scale(1.07);
}

/* Role badge */
.tm-role-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    padding: 4px 12px;
    border-radius: 30px;
    color: #fff;
}

.tm-role-founder {
    background: rgba(243, 112, 2, .9);
}

.tm-role-trekker {
    background: rgba(22, 163, 74, .9);
}

.tm-role-climber {
    background: rgba(37, 99, 235, .9);
}

/* Card body */
.tm-card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tm-card-body h4 {
    font-size: 16px;
    font-weight: 800;
    color: #0a0a0a;
    margin: 0;
}

.tm-card-title {
    font-size: 13px;
    color: #f37002;
    font-weight: 600;
    margin: 0;
}

/* Card appear animation */
@keyframes tmFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── CTA ── */
.tm-cta {
    background: linear-gradient(120deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 56px 0;
}

.tm-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.tm-cta-inner h3 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}

.tm-cta-inner p {
    font-size: 15px;
    color: rgba(255, 255, 255, .65);
    margin: 0;
}

.tm-cta-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.tm-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform .25s, box-shadow .25s, background .25s;
}

.tm-cta-btn--primary {
    background: #f37002;
    color: #fff;
    box-shadow: 0 4px 18px rgba(243, 112, 2, .35);
}

.tm-cta-btn--primary:hover {
    background: #d96200;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(243, 112, 2, .45);
    color: #fff;
}

.tm-cta-btn--outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .3);
}

.tm-cta-btn--outline:hover {
    background: rgba(255, 255, 255, .08);
    border-color: #fff;
    color: #fff;
}

/* ── Responsive ── */
/* ============================================================
   TEAM PAGE END
   ============================================================ */

/* ============================================================
   TEAM SHOW PAGE
   ============================================================ */

/* ── Hero ── */
.ts-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: 0;
}

.ts-hero-bg {
    position: absolute;
    inset: 0;
}

.ts-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.ts-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, .45) 0%, rgba(10, 10, 10, .88) 100%);
}

.ts-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 36px;
    padding: 60px 0 48px;
    width: 100%;
}

/* Avatar */
.ts-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.ts-avatar-ring {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid #f37002;
    box-shadow: 0 0 0 6px rgba(243, 112, 2, .2), 0 12px 40px rgba(0, 0, 0, .4);
    overflow: hidden;
    flex-shrink: 0;
}

.ts-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.ts-online-dot {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #22c55e;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

/* Hero info */
.ts-hero-info {
    flex: 1;
    min-width: 0;
}

.ts-hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.ts-hero-info h1 {
    font-size: 46px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 6px;
}

.ts-hero-info h1 span {
    color: #f37002;
}

.ts-position {
    font-size: 15px;
    color: rgba(255, 255, 255, .7);
    margin: 0 0 10px;
    font-weight: 500;
}

.ts-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    font-style: italic;
    margin: 0 0 24px;
}

/* Hero stats */
.ts-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 14px 24px;
    width: fit-content;
    flex-wrap: wrap;
}

.ts-hstat {
    text-align: center;
    padding: 0 20px;
}

.ts-hstat strong {
    display: block;
    font-size: 20px;
    font-weight: 900;
    color: #f37002;
    line-height: 1;
}

.ts-hstat span {
    font-size: 11px;
    color: rgba(255, 255, 255, .6);
    margin-top: 3px;
    display: block;
    white-space: nowrap;
}

.ts-hstat-div {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, .15);
    flex-shrink: 0;
}

/* ── Body Layout ── */
.ts-body {
    padding: 48px 0 72px;
    background: #f5f6f8;
}

.ts-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}

/* ── Cards (main column) ── */
.ts-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #ebebeb;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .055);
    padding: 32px;
    margin-bottom: 24px;
}

.ts-card:last-child {
    margin-bottom: 0;
}

.ts-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.ts-card-head>i {
    font-size: 22px;
    color: #f37002;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(243, 112, 2, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ts-card-head h2 {
    font-size: 20px;
    font-weight: 800;
    color: #0a0a0a;
    margin: 0;
}

.ts-card>p {
    font-size: 14.5px;
    color: #5a5a5a;
    line-height: 1.78;
    margin: 0 0 14px;
}

.ts-card>p:last-child {
    margin-bottom: 0;
}

/* ── Gallery ── */
.ts-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 180px 180px;
    gap: 10px;
}

.ts-gallery-wide {
    grid-column: span 2;
    grid-row: span 2;
}

.ts-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: zoom-in;
}

.ts-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
    display: block;
}

.ts-gallery-item:hover img {
    transform: scale(1.07);
}

.ts-gallery-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, .72), transparent);
    font-size: 11.5px;
    font-weight: 600;
    color: #fff;
    opacity: 0;
    transition: opacity .3s;
}

.ts-gallery-item:hover .ts-gallery-cap {
    opacity: 1;
}

/* ── Sidebar cards ── */
.ts-sidebar {
    position: sticky;
    top: 80px;
}

.ts-scard {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #ebebeb;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .055);
    padding: 26px 28px;
    margin-bottom: 20px;
}

.ts-scard:last-child {
    margin-bottom: 0;
}

.ts-scard-title {
    font-size: 16px;
    font-weight: 800;
    color: #0a0a0a;
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
}

/* Quick Info list */
.ts-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ts-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ts-info-list li>i {
    font-size: 18px;
    color: #f37002;
    margin-top: 1px;
    flex-shrink: 0;
}

.ts-info-list li div {
    display: flex;
    flex-direction: column;
}

.ts-info-list li span {
    font-size: 11px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.ts-info-list li strong {
    font-size: 13.5px;
    color: #222;
    font-weight: 600;
    margin-top: 1px;
}

/* CTA sidebar card */
.ts-scard--cta {
    background: linear-gradient(135deg, #0a0a0a, #1e1e1e);
    border-color: #2a2a2a;
}

.ts-scard--cta h3 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}

.ts-scard--cta p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .6);
    margin: 0 0 20px;
    line-height: 1.6;
}

.ts-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f37002;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 20px;
    border-radius: 50px;
    text-decoration: none;
    margin-bottom: 10px;
    box-shadow: 0 4px 18px rgba(243, 112, 2, .4);
    transition: background .25s, transform .25s;
}

.ts-book-btn:hover {
    background: #d96200;
    transform: translateY(-2px);
    color: #fff;
}

.ts-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, .15);
    transition: all .25s;
}

.ts-back-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .06);
}

/* ── Responsive ── */
/* ── Featured Images Gallery ── */
.ts-card--gallery .ts-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.ts-gallery-count {
    margin-left: auto;
    font-size: 12.5px;
    font-weight: 600;
    color: #f37002;
    background: rgba(243, 112, 2, .09);
    border: 1px solid rgba(243, 112, 2, .18);
    border-radius: 20px;
    padding: 4px 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    letter-spacing: .01em;
}

/* Uniform 3-column grid */
.ts-pg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.ts-pg-cell {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 11px;
    text-decoration: none;
    background: #111;
    aspect-ratio: 4/3;
}

.ts-pg-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.ts-pg-cell:hover img {
    transform: scale(1.07);
}

/* Caption slides up from bottom */
.ts-pg-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 12px 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, .72) 0%, transparent 100%);
    display: flex;
    align-items: center;
    gap: 7px;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity .3s ease, transform .3s ease;
}

.ts-pg-cell:hover .ts-pg-cap {
    opacity: 1;
    transform: translateY(0);
}

.ts-pg-cap i {
    font-size: 13px;
    color: #fff;
    background: #f37002;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ts-pg-cap span {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .4);
}

/* ── Traveller Reviews ── */
.ts-card--reviews .ts-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.ts-rv-summary {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.ts-rv-summary strong {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
}

.ts-rv-stars {
    display: inline-flex;
    gap: 2px;
}

.ts-rv-stars i {
    font-size: 14px;
    color: #f59e0b;
}

.ts-rv-total {
    font-size: 12.5px;
    color: #999;
    font-weight: 500;
}

/* 2-column grid */
.ts-rv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Individual card */
.ts-rv-card {
    background: #fafafa;
    border: 1.5px solid #efefef;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color .25s, box-shadow .25s, transform .25s;
}

.ts-rv-card:hover {
    border-color: rgba(243, 112, 2, .25);
    box-shadow: 0 8px 28px rgba(243, 112, 2, .09);
    transform: translateY(-3px);
}

/* Header row */
.ts-rv-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ts-rv-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f37002, #ff9a40);
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ts-rv-avatar--b {
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
}

.ts-rv-avatar--c {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.ts-rv-avatar--d {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.ts-rv-meta {
    flex: 1;
    min-width: 0;
}

.ts-rv-meta strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.ts-rv-meta span {
    font-size: 12px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 2px;
}

.ts-rv-meta span i {
    font-size: 11px;
}

.ts-rv-stars-sm {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.ts-rv-stars-sm i {
    font-size: 12px;
    color: #f59e0b;
}

/* Review text */
.ts-rv-text {
    font-size: 13.5px;
    color: #555;
    line-height: 1.65;
    margin: 0;
    flex: 1;
    position: relative;
    padding-left: 16px;
}

.ts-rv-text::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 28px;
    line-height: 1;
    color: #f37002;
    font-family: Georgia, serif;
    opacity: .5;
}

/* Footer row */
.ts-rv-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid #efefef;
}

.ts-rv-trip {
    font-size: 12px;
    font-weight: 600;
    color: #f37002;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ts-rv-trip i {
    font-size: 13px;
}

.ts-rv-date {
    font-size: 11.5px;
    color: #bbb;
    font-weight: 500;
}

/* ── Certificate Gallery ── */
.ts-cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ts-cert-item {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid #ebebeb;
    background: #fff;
    transition: border-color .25s, box-shadow .25s, transform .25s;
}

.ts-cert-item:hover {
    border-color: #f37002;
    box-shadow: 0 8px 28px rgba(243, 112, 2, .14);
    transform: translateY(-4px);
}

.ts-cert-thumb {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f3f3f3;
}

.ts-cert-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.ts-cert-item:hover .ts-cert-thumb img {
    transform: scale(1.05);
}

.ts-cert-zoom {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .42);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}

.ts-cert-item:hover .ts-cert-zoom {
    opacity: 1;
}

.ts-cert-zoom i {
    font-size: 22px;
    color: #fff;
    background: rgba(243, 112, 2, .92);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ts-cert-info {
    padding: 11px 13px 13px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.ts-cert-info>i {
    font-size: 20px;
    color: #f37002;
    flex-shrink: 0;
}

.ts-cert-info strong {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.ts-cert-info span {
    display: block;
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

/* ── Lightbox ── */
.ts-lb {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

.ts-lb--active {
    opacity: 1;
    visibility: visible;
}

.ts-lb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .93);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.ts-lb-stage {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: min(90vw, 960px);
}

.ts-lb-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 80vh;
}

.ts-lb-img-wrap img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
    display: block;
    opacity: 0;
    transition: opacity .25s ease;
}

.ts-lb-img-wrap img.ts-lb-loaded {
    opacity: 1;
}

.ts-lb-caption {
    color: rgba(255, 255, 255, .8);
    font-size: 13.5px;
    font-weight: 500;
    text-align: center;
    margin: 0;
    letter-spacing: .01em;
}

.ts-lb-close,
.ts-lb-prev,
.ts-lb-next {
    position: fixed;
    z-index: 3;
    border: none;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s;
    line-height: 1;
}

.ts-lb-close {
    top: 18px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 20px;
}

.ts-lb-close:hover {
    background: #f37002;
    transform: rotate(90deg);
}

.ts-lb-prev,
.ts-lb-next {
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    font-size: 24px;
}

.ts-lb-prev {
    left: 20px;
}

.ts-lb-next {
    right: 20px;
}

.ts-lb-prev:hover {
    background: #f37002;
    transform: translateY(-50%) scale(1.08);
}

.ts-lb-next:hover {
    background: #f37002;
    transform: translateY(-50%) scale(1.08);
}

/* Gallery & Reviews responsiveness */
/* ============================================================
   TEAM SHOW PAGE END
   ============================================================ */

/* ============================================================
   BLOG SHOW PAGE (bs-)
   ============================================================ */

/* ── Sticky Tab Nav ── */
.bs-tabnav {
    background: #fff;
    border-bottom: 1.5px solid #efefef;
    z-index: 200;
    transition: box-shadow .25s;
}

.bs-tabnav--stuck {
    position: sticky;
    top: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.bs-tabnav-inner {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.bs-tabnav-inner::-webkit-scrollbar {
    display: none;
}

.bs-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 16px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #777;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    transition: color .2s, border-color .2s;
    position: relative;
    top: 1.5px;
    /* aligns border-bottom with container border */
}

.bs-tab:hover {
    color: #1a1a1a;
}

.bs-tab.active {
    color: #f37002;
    border-bottom-color: #f37002;
}

/* ── Hero ── */
.bs-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    overflow: hidden;
}

.bs-hero-bg {
    position: absolute;
    inset: 0;
}

.bs-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .45) 50%, rgba(0, 0, 0, .2) 100%);
}

.bs-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

/* Breadcrumb */
.bs-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.bs-breadcrumb a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    transition: color .2s;
}

.bs-breadcrumb a:hover {
    color: #f37002;
}

.bs-breadcrumb i {
    font-size: 11px;
}

.bs-breadcrumb span {
    color: rgba(255, 255, 255, .9);
}

/* Category pill */
.bs-cat {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 4px 12px;
    margin-bottom: 14px;
    color: #fff;
}

.bs-cat--orange {
    background: #f37002;
}

.bs-cat--blue {
    background: #0ea5e9;
}

.bs-cat--green {
    background: #10b981;
}

.bs-cat--purple {
    background: #8b5cf6;
}

.bs-hero-inner h1 {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    color: #fff;
    line-height: 1.18;
    margin: 0 0 22px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}

/* Meta row */
.bs-hero-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bs-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, .85);
    font-weight: 500;
}

.bs-meta-item i {
    font-size: 14px;
    color: #f37002;
}

.bs-author-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, .4);
}

.bs-meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
}

/* ── Body Layout ── */
.bs-body {
    padding: 60px 0 70px;
    background: #f8f8f6;
}

.bs-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    align-items: start;
    gap: 36px;
    align-items: start;
}

/* ── Left Column ── */
.bs-left-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

/* ── Article ── */
.bs-article {
    background: #fff;
    border-radius: 16px;
    padding: 44px 48px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
}

.bs-lead {
    font-size: 17px;
    line-height: 1.75;
    color: #333;
    font-weight: 500;
    border-left: 4px solid #f37002;
    padding-left: 20px;
    margin: 0 0 32px;
}

.bs-article h2 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 36px 0 12px;
    line-height: 1.3;
}

.bs-article p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 18px;
}

.bs-article strong {
    color: #1a1a1a;
    font-weight: 700;
}

.bs-article em {
    color: #f37002;
    font-style: normal;
    font-weight: 600;
}

/* Inline image */
.bs-img-block {
    margin: 0 0 32px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
}

.bs-img-block img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.bs-img-caption {
    font-size: 12.5px !important;
    color: #aaa !important;
    text-align: center;
    margin: 10px 0 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    line-height: 1.4 !important;
}

.bs-img-caption i {
    font-size: 13px;
}

/* Dual image row */
.bs-img-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0;
}

.bs-img-duo>div {
    border-radius: 10px;
    overflow: hidden;
}

.bs-img-duo img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Pull quote */
.bs-quote {
    margin: 32px 0;
    padding: 24px 28px;
    background: linear-gradient(135deg, #fff8f2 0%, #fff3e8 100%);
    border-left: 5px solid #f37002;
    border-radius: 0 12px 12px 0;
    position: relative;
}

.bs-quote::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 72px;
    line-height: 1;
    color: #f37002;
    font-family: Georgia, serif;
    opacity: .18;
}

.bs-quote p {
    font-size: 17px !important;
    font-style: italic;
    color: #333 !important;
    margin: 0 0 10px !important;
    font-weight: 600;
    line-height: 1.6 !important;
}

.bs-quote cite {
    font-size: 13px;
    color: #f37002;
    font-style: normal;
    font-weight: 700;
}

/* Tip box */
.bs-tip-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #f0fdf4;
    border: 1.5px solid #bbf7d0;
    border-radius: 12px;
    padding: 20px 22px;
    margin: 28px 0;
}

.bs-tip-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    color: #fff;
}

.bs-tip-box strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #065f46;
    margin-bottom: 5px;
}

.bs-tip-box p {
    font-size: 14px !important;
    color: #047857 !important;
    margin: 0 !important;
    line-height: 1.65 !important;
}

/* Tags */
.bs-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 36px 0 28px;
    padding-top: 28px;
    border-top: 1.5px solid #f0f0f0;
}

.bs-tags span {
    color: #bbb;
    font-size: 14px;
}

.bs-tags a {
    font-size: 12.5px;
    font-weight: 600;
    color: #555;
    background: #f4f4f4;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    padding: 5px 14px;
    text-decoration: none;
    transition: all .2s;
}

.bs-tags a:hover {
    background: #f37002;
    border-color: #f37002;
    color: #fff;
}

/* Share row */
.bs-share {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.bs-share>span {
    font-size: 13.5px;
    font-weight: 700;
    color: #888;
    white-space: nowrap;
}

.bs-share-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.bs-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity .2s, transform .2s;
    color: #fff;
}

.bs-share-btn:hover {
    opacity: .88;
    transform: translateY(-2px);
    color: #fff;
}

.bs-share--fb {
    background: #1877f2;
}

.bs-share--tw {
    background: #1da1f2;
}

.bs-share--wa {
    background: #25d366;
}

.bs-share--cp {
    background: #555;
}

/* Author box */
.bs-author-box {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    background: #fafafa;
    border: 1.5px solid #efefef;
    border-radius: 16px;
    padding: 26px;
}

.bs-author-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid #f37002;
}

.bs-author-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #f37002;
    display: block;
    margin-bottom: 3px;
}

.bs-author-info h4 {
    font-size: 17px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 2px;
}

.bs-author-role {
    font-size: 12.5px;
    color: #999;
    margin: 0 0 10px !important;
}

.bs-author-bio {
    font-size: 13.5px;
    color: #666;
    line-height: 1.65;
    margin: 0 0 12px !important;
}

.bs-author-link {
    font-size: 13px;
    font-weight: 700;
    color: #f37002;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap .2s;
}

.bs-author-link:hover {
    gap: 8px;
    color: #f37002;
}

/* ── Sidebar ── */
.bs-sidebar {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.bs-scard {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
}

.bs-scard-title {
    font-size: 14.5px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bs-scard-title i {
    color: #f37002;
    font-size: 17px;
}

/* Table of contents */
.bs-toc-progress {
    height: 3px;
    background: #f0f0f0;
    border-radius: 3px;
    margin-bottom: 16px;
    overflow: hidden;
}

.bs-toc-bar {
    height: 100%;
    width: 10%;
    background: linear-gradient(90deg, #f37002, #ff9a40);
    border-radius: 3px;
    transition: width .35s ease;
}

.bs-toc {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-height: 340px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #f0f0f0 transparent;
}

.bs-toc::-webkit-scrollbar {
    width: 3px;
}

.bs-toc::-webkit-scrollbar-thumb {
    background: #e8e8e8;
    border-radius: 3px;
}

.bs-toc-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #777;
    text-decoration: none;
    padding: 7px 10px;
    border-radius: 8px;
    font-weight: 500;
    transition: background .2s, color .2s, padding-left .2s;
    line-height: 1.35;
    border-left: 2px solid transparent;
}

.bs-toc-link:hover {
    background: #fff5ee;
    color: #333;
    padding-left: 14px;
}

.bs-toc-link.active {
    background: #fff5ee;
    color: #f37002;
    font-weight: 700;
    border-left-color: #f37002;
    padding-left: 14px;
}

.bs-toc-num {
    font-size: 10.5px;
    font-weight: 800;
    color: #ccc;
    min-width: 20px;
    transition: color .2s;
    letter-spacing: .02em;
}

.bs-toc-link.active .bs-toc-num,
.bs-toc-link:hover .bs-toc-num {
    color: #f37002;
}

/* CTA card */
.bs-scard--cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
}

.bs-cta-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(243, 112, 2, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 26px;
    color: #f37002;
}

.bs-scard--cta h4 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}

.bs-scard--cta p {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    margin: 0 0 20px;
    line-height: 1.55;
}

.bs-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f37002;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: background .2s, transform .2s;
}

.bs-cta-btn:hover {
    background: #d96002;
    transform: translateY(-2px);
    color: #fff;
}

/* Related posts */
.bs-related {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bs-related-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-decoration: none;
    transition: opacity .2s;
}

.bs-related-item:hover {
    opacity: .8;
}

.bs-related-item img {
    width: 68px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.bs-rel-cat {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #f37002;
    display: block;
    margin-bottom: 4px;
}

.bs-related-item p {
    font-size: 13px;
    color: #444;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
}

/* ── Comments Section ── */
.bs-comments-section {
    background: #fff;
    border-radius: 16px;
    padding: 36px 48px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
    margin-top: 24px;
}

.bs-cm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 18px;
    border-bottom: 1.5px solid #f0f0f0;
}

.bs-cm-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 9px;
}

.bs-cm-header h3 i {
    color: #f37002;
    font-size: 22px;
}

.bs-cm-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f37002;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    min-width: 26px;
    height: 26px;
    border-radius: 20px;
    padding: 0 7px;
}

/* Comment item */
.bs-cm-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 36px;
}

.bs-cm {
    display: flex;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid #f5f5f5;
    opacity: 1;
    transform: translateY(0);
}

.bs-cm:first-child {
    padding-top: 0;
}

.bs-cm--reply {
    background: #fafafa;
    border-radius: 10px;
    padding: 18px 18px 18px 60px;
    margin: 0 0 2px;
    border-bottom: none;
    position: relative;
}

.bs-cm--reply::before {
    content: '';
    position: absolute;
    left: 36px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(243, 112, 2, .2);
    border-radius: 2px;
}

.bs-cm--new {
    animation: bsCmSlideIn .4s ease forwards;
}

@keyframes bsCmSlideIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Avatar */
.bs-cm-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.bs-cm-av--a {
    background: linear-gradient(135deg, #f37002, #ff9a40);
}

.bs-cm-av--b {
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
}

.bs-cm-av--c {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.bs-cm-av--d {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.bs-cm-av--e {
    background: linear-gradient(135deg, #ec4899, #f9a8d4);
}

.bs-cm-av--author {
    background: linear-gradient(135deg, #1a1a1a, #444);
    border: 2px solid #f37002;
}

/* Comment body */
.bs-cm-body {
    flex: 1;
    min-width: 0;
}

.bs-cm-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.bs-cm-top strong {
    font-size: 14.5px;
    font-weight: 800;
    color: #1a1a1a;
}

.bs-cm-badge {
    font-size: 11px;
    font-weight: 700;
    background: #f37002;
    color: #fff;
    border-radius: 4px;
    padding: 2px 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    letter-spacing: .03em;
}

.bs-cm-country {
    font-size: 12px;
    color: #bbb;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.bs-cm-replying-label {
    font-size: 12px;
    color: #f37002;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.bs-cm-date {
    font-size: 12px;
    color: #ccc;
    margin-left: auto;
    white-space: nowrap;
}

.bs-cm-body p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 10px;
}

.bs-cm-reply-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12.5px;
    font-weight: 700;
    color: #aaa;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    transition: color .2s;
}

.bs-cm-reply-btn:hover {
    color: #f37002;
}

/* Write comment form */
.bs-cm-form-wrap {
    background: #fafafa;
    border: 1.5px solid #efefef;
    border-radius: 14px;
    padding: 28px;
}

.bs-cm-form-head {
    margin-bottom: 22px;
}

.bs-cm-form-head h4 {
    font-size: 17px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 4px;
}

.bs-cm-form-head p {
    font-size: 13px;
    color: #f37002;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    min-height: 18px;
}

.bs-cm-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.bs-cm-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.bs-cm-form-row .bs-cm-field {
    margin-bottom: 0;
}

.bs-cm-field label {
    font-size: 13px;
    font-weight: 700;
    color: #444;
}

.bs-cm-field label span {
    color: #f37002;
}

.bs-cm-input {
    border: 1.5px solid #e8e8e8;
    border-radius: 9px;
    padding: 11px 14px;
    font-size: 14px;
    color: #333;
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

.bs-cm-input:focus {
    border-color: #f37002;
    box-shadow: 0 0 0 3px rgba(243, 112, 2, .1);
}

.bs-cm-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.bs-cm-select-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.bs-cm-select-wrap>i {
    position: absolute;
    left: 13px;
    font-size: 15px;
    color: #bbb;
    pointer-events: none;
    z-index: 1;
}

.bs-cm-select {
    padding-left: 36px !important;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23bbb' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
    padding-right: 36px !important;
}

.bs-cm-optional {
    font-size: 11px;
    color: #bbb;
    font-weight: 500;
    margin-left: 4px;
}

.bs-cm-form-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 4px;
}

.bs-cm-cancel {
    background: none;
    border: 1.5px solid #e0e0e0;
    border-radius: 9px;
    padding: 10px 18px;
    font-size: 13.5px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: border-color .2s, color .2s;
}

.bs-cm-cancel:hover {
    border-color: #f37002;
    color: #f37002;
}

.bs-cm-submit {
    background: #f37002;
    color: #fff;
    border: none;
    border-radius: 9px;
    padding: 11px 24px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background .2s, transform .2s;
    font-family: inherit;
}

.bs-cm-submit:hover {
    background: #d96002;
    transform: translateY(-2px);
}

/* ── More Articles ── */
.bs-more {
    padding: 60px 0 80px;
    background: #fff;
}

.bs-more-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.bs-more-head h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.bs-more-link {
    font-size: 13.5px;
    font-weight: 700;
    color: #f37002;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap .2s;
}

.bs-more-link:hover {
    gap: 8px;
    color: #f37002;
}

.bs-more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bs-more-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid #efefef;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s, transform .25s;
}

.bs-more-card:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, .1);
    transform: translateY(-4px);
}

.bs-more-photo {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.bs-more-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.bs-more-card:hover .bs-more-photo img {
    transform: scale(1.06);
}

.bs-more-photo .bs-cat {
    position: absolute;
    top: 12px;
    left: 12px;
}

.bs-more-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bs-more-meta {
    font-size: 12px;
    color: #bbb;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.bs-more-meta i {
    font-size: 12px;
    color: #f37002;
}

.bs-more-body h4 {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.bs-more-body h4 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color .2s;
}

.bs-more-body h4 a:hover {
    color: #f37002;
}

.bs-more-body p {
    font-size: 13.5px;
    color: #777;
    line-height: 1.6;
    margin: 0 0 16px;
    flex: 1;
}

.bs-more-readmore {
    font-size: 13px;
    font-weight: 700;
    color: #f37002;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
    transition: gap .2s;
}

.bs-more-readmore:hover {
    gap: 8px;
    color: #f37002;
}

/* ── Responsive ── */
/* ============================================================
   BLOG SHOW PAGE END
   ============================================================ */


/* ============================================================
   NEWS SHOW PAGE (nw-)
   ============================================================ */

/* ── Full-screen Hero ── */
.nw-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 860px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.nw-hero-img {
    position: absolute;
    inset: 0;
}

.nw-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.04);
    animation: nwHeroZoom 8s ease forwards;
}

@keyframes nwHeroZoom {
    to {
        transform: scale(1);
    }
}

.nw-hero-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, .45) 0%, transparent 30%),
        linear-gradient(to top, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .4) 50%, transparent 100%);
}

/* Top bar */
.nw-hero-topbar {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 48px 0;
}

.nw-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
}

.nw-breadcrumb a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    transition: color .2s;
}

.nw-breadcrumb a:hover {
    color: #f37002;
}

.nw-breadcrumb i {
    font-size: 10px;
}

.nw-breadcrumb span {
    color: rgba(255, 255, 255, .9);
}

.nw-hero-share {
    display: flex;
    gap: 10px;
}

.nw-hero-share a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: background .2s;
}

.nw-hero-share a:hover {
    background: #f37002;
    color: #fff;
}

/* Bottom content */
.nw-hero-content {
    position: relative;
    z-index: 3;
    padding: 0 48px 48px;
    max-width: 860px;
}

.nw-hero-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.nw-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 5px 12px;
    color: #fff;
}

.nw-badge--blue {
    background: #0ea5e9;
}

.nw-badge--orange {
    background: #f37002;
}

.nw-badge--green {
    background: #10b981;
}

.nw-badge--purple {
    background: #8b5cf6;
}

.nw-badge--red {
    background: #ef4444;
    animation: nwBlink 1.6s ease infinite;
}

@keyframes nwBlink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .65
    }
}

.nw-hero-content h1 {
    font-size: clamp(28px, 4.5vw, 54px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 16px;
    letter-spacing: -.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}

.nw-hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.6;
    margin: 0 0 28px;
    max-width: 620px;
}

.nw-hero-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nw-author-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 40px;
    padding: 6px 16px 6px 6px;
}

.nw-author-chip img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f37002;
}

.nw-author-chip strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.nw-author-chip span {
    font-size: 11px;
    color: rgba(255, 255, 255, .6);
}

.nw-meta-pills {
    display: flex;
    gap: 12px;
}

.nw-meta-pills span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    font-weight: 500;
}

.nw-meta-pills i {
    color: #f37002;
}

/* Scroll cue */
.nw-scroll-cue {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
}

.nw-scroll-cue span {
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
}

.nw-scroll-line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, .35);
    position: relative;
    overflow: hidden;
}

.nw-scroll-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #f37002;
    transform: translateX(-100%);
    animation: nwScrollSlide 2s ease infinite;
}

@keyframes nwScrollSlide {
    0% {
        transform: translateX(-100%);
    }

    60% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

/* ── Stats Bar ── */
.nw-stats-bar {
    background: #fff;
    border-bottom: 1px solid #efefef;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
}

.nw-stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
}

.nw-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    flex: 1;
    justify-content: center;
    border-right: 1px solid #f0f0f0;
}

.nw-stat:last-child {
    border-right: none;
}

.nw-stat>i {
    font-size: 26px;
    color: #f37002;
    flex-shrink: 0;
}

.nw-stat strong {
    display: block;
    font-size: 20px;
    font-weight: 900;
    color: #111;
    line-height: 1;
}

.nw-stat span {
    font-size: 11.5px;
    color: #aaa;
    margin-top: 3px;
    display: block;
    line-height: 1.3;
}

.nw-stat-sep {
    display: none;
}

/* ── Body ── */
.nw-body {
    background: #f5f4f0;
    padding: 52px 0 72px;
}

.nw-layout {
    display: grid;
    grid-template-columns: 1fr 290px;
    gap: 30px;
    align-items: start;
}

.nw-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

/* Article */
.nw-article {
    background: #fff;
    border-radius: 20px;
    padding: 44px 48px;
}

.nw-drop-cap::first-letter {
    float: left;
    font-size: 64px;
    font-weight: 900;
    color: #f37002;
    line-height: .78;
    margin: 4px 12px 0 0;
    font-family: Georgia, serif;
}

.nw-article p {
    font-size: 16px;
    line-height: 1.85;
    color: #444;
    margin: 0 0 20px;
}

.nw-article h2 {
    font-size: 22px;
    font-weight: 900;
    color: #111;
    margin: 36px 0 14px;
    letter-spacing: -.01em;
}

.nw-article strong {
    color: #111;
    font-weight: 700;
}

/* Figure */
.nw-figure {
    margin: 28px 0;
    border-radius: 14px;
    overflow: hidden;
}

.nw-figure img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.nw-figure:hover img {
    transform: scale(1.02);
}

.nw-figure figcaption {
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
    padding: 10px 16px;
    font-size: 12.5px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nw-figure figcaption i {
    color: #f37002;
}

/* Dual images */
.nw-dual-img {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0;
}

.nw-figure--half {
    margin: 0;
}

.nw-figure--half img {
    height: 200px;
}

/* Route cards */
.nw-route-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0 30px;
}

.nw-route {
    border-radius: 12px;
    padding: 16px 18px;
    border: 1.5px solid;
}

.nw-route-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.nw-route-name {
    font-size: 14px;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
}

.nw-route-alt {
    font-size: 11.5px;
    font-weight: 600;
    color: #aaa;
    margin: 2px 0 8px;
}

.nw-route p {
    font-size: 12.5px !important;
    line-height: 1.55 !important;
    margin: 0 !important;
    opacity: .75;
}

.nw-route--closed {
    background: #fff5f5;
    border-color: #fecaca;
}

.nw-route--closed .nw-route-status {
    color: #dc2626;
}

.nw-route--caution {
    background: #fffcf0;
    border-color: #fde68a;
}

.nw-route--caution .nw-route-status {
    color: #d97706;
}

.nw-route--open {
    background: #f6fef9;
    border-color: #bbf7d0;
}

.nw-route--open .nw-route-status {
    color: #059669;
}

/* Tips list */
.nw-tips {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nw-tips li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #f5f5f5;
}

.nw-tips li:last-child {
    border-bottom: none;
}

.nw-tip-num {
    font-size: 11px;
    font-weight: 900;
    color: #f37002;
    background: rgba(243, 112, 2, .08);
    border-radius: 6px;
    padding: 4px 8px;
    letter-spacing: .05em;
    flex-shrink: 0;
    margin-top: 2px;
}

.nw-tips strong {
    display: block;
    font-size: 14.5px;
    font-weight: 800;
    color: #111;
    margin-bottom: 4px;
}

.nw-tips p {
    font-size: 13.5px !important;
    color: #777 !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}

/* Pull quote */
.nw-pullquote {
    margin: 32px 0;
    padding: 28px 32px;
    background: #111;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.nw-pullquote::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 160px;
    line-height: 1;
    color: rgba(243, 112, 2, .12);
    font-family: Georgia, serif;
}

.nw-pq-line {
    width: 40px;
    height: 3px;
    background: #f37002;
    border-radius: 2px;
    margin-bottom: 18px;
}

.nw-pullquote blockquote {
    font-size: 18px;
    font-style: italic;
    color: #fff;
    font-weight: 600;
    line-height: 1.65;
    margin: 0 0 14px;
    padding: 0;
    border: none;
}

.nw-pullquote cite {
    font-size: 13px;
    color: #f37002;
    font-style: normal;
    font-weight: 700;
}

/* Footer bar */
.nw-footer-bar {
    padding: 20px 0 0;
    margin-top: 28px;
    border-top: 1px solid #ebebeb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.nw-tags {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.nw-tags>i {
    color: #ddd;
    font-size: 14px;
}

.nw-tags a {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    background: #f5f5f5;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 4px 12px;
    text-decoration: none;
    transition: all .2s;
}

.nw-tags a:hover {
    background: #f37002;
    border-color: #f37002;
    color: #fff;
}

.nw-share-row {
    display: flex;
    gap: 7px;
}

.nw-sh {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    transition: opacity .2s, transform .2s;
}

.nw-sh:hover {
    opacity: .85;
    transform: translateY(-2px);
    color: #fff;
}

.nw-sh--fb {
    background: #1877f2;
}

.nw-sh--tw {
    background: #1da1f2;
}

.nw-sh--wa {
    background: #25d366;
}

.nw-sh--cp {
    background: #555;
}

/* Subscribe strip */
.nw-sub-strip {
    background: linear-gradient(135deg, #f37002 0%, #e05e00 100%);
    border-radius: 16px;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.nw-sub-strip-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 180px;
}

.nw-sub-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}

.nw-sub-strip-left strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}

.nw-sub-strip-left span {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .72);
}

.nw-sub-form {
    display: flex;
    gap: 8px;
}

.nw-sub-form input {
    border: none;
    background: rgba(255, 255, 255, .22);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 13.5px;
    color: #fff;
    outline: none;
    width: 200px;
    font-family: inherit;
}

.nw-sub-form input::placeholder {
    color: rgba(255, 255, 255, .5);
}

.nw-sub-form button {
    background: #fff;
    color: #f37002;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 13.5px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    white-space: nowrap;
    transition: transform .2s;
}

.nw-sub-form button:hover {
    transform: translateY(-2px);
}

/* ── Sidebar ── */
.nw-sidebar {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nw-sc {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.nw-sc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.nw-sc-title {
    font-size: 13.5px;
    font-weight: 800;
    color: #111;
}

.nw-sc-label {
    font-size: 13.5px;
    font-weight: 800;
    color: #111;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.nw-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    color: #10b981;
    background: #f0fdf4;
    border-radius: 20px;
    padding: 3px 9px;
}

.nw-live span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    animation: nwPulse 1.4s ease infinite;
}

@keyframes nwPulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

/* Trail list */
.nw-tl {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nw-tl li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border-radius: 8px;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

em[class^="nw-tl--"] {
    font-style: normal;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    padding: 2px 8px;
}

.nw-tl--red {
    background: #fee2e2;
    color: #dc2626;
}

.nw-tl--amber {
    background: #fef3c7;
    color: #d97706;
}

.nw-tl--green {
    background: #d1fae5;
    color: #059669;
}

.nw-sc-updated {
    font-size: 11.5px;
    color: #ccc;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nw-sc-updated i {
    color: #10b981;
}

/* CTA sidebar card */
.nw-sc--dark {
    padding: 0;
    overflow: hidden;
}

.nw-sc-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}

.nw-sc-cta-body {
    padding: 18px 20px 22px;
    background: #111;
}

.nw-sc-cta-tag {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #f37002;
    display: block;
    margin-bottom: 6px;
}

.nw-sc-cta-body h4 {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
}

.nw-sc-cta-body p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .5);
    margin: 0 0 16px;
    line-height: 1.5;
}

.nw-sc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: #f37002;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 18px;
    border-radius: 9px;
    text-decoration: none;
    transition: background .2s, transform .2s;
}

.nw-sc-btn:hover {
    background: #d96002;
    transform: translateY(-2px);
    color: #fff;
}

/* Related */
.nw-rel {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nw-rel-item {
    display: flex;
    gap: 10px;
    text-decoration: none;
    align-items: flex-start;
    padding-bottom: 12px;
    border-bottom: 1px solid #f5f5f5;
    transition: opacity .2s;
}

.nw-rel-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.nw-rel-item:hover {
    opacity: .75;
}

.nw-rel-item img {
    width: 62px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.nw-rel-tag {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    display: block;
    margin-bottom: 3px;
}

.nw-rel-item p {
    font-size: 12.5px;
    color: #333;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
}

/* ── Comments ── */
.nw-comments {
    background: #fff;
    border-radius: 20px;
    padding: 36px 44px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
}

.nw-cm-header {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1.5px solid #f0f0f0;
}

.nw-cm-header h3 {
    font-size: 20px;
    font-weight: 900;
    color: #111;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    letter-spacing: -.01em;
}

.nw-cm-header h3 i {
    color: #f37002;
    font-size: 22px;
}

.nw-cm-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f37002;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    min-width: 26px;
    height: 26px;
    border-radius: 20px;
    padding: 0 7px;
}

.nw-cm-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 36px;
}

.nw-cm {
    display: flex;
    gap: 14px;
    padding: 20px 0;
    border-bottom: 1px solid #f5f5f5;
}

.nw-cm:last-child {
    border-bottom: none;
}

.nw-cm--reply {
    padding: 16px 16px 16px 56px;
    background: #fafafa;
    border-radius: 10px;
    border-bottom: none;
    margin: 0 0 4px;
    position: relative;
}

.nw-cm--reply::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(243, 112, 2, .2);
    border-radius: 2px;
}

.nw-cm--new {
    animation: nwCmIn .4s ease forwards;
}

@keyframes nwCmIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nw-cm-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.nw-cm-av--a {
    background: linear-gradient(135deg, #f37002, #ff9a40);
}

.nw-cm-av--b {
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
}

.nw-cm-av--c {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.nw-cm-av--d {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.nw-cm-av--e {
    background: linear-gradient(135deg, #ec4899, #f9a8d4);
}

.nw-cm-av--author {
    background: linear-gradient(135deg, #1a1a1a, #444);
    border: 2px solid #f37002;
}

.nw-cm-body {
    flex: 1;
    min-width: 0;
}

.nw-cm-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 8px;
}

.nw-cm-top strong {
    font-size: 14px;
    font-weight: 800;
    color: #111;
}

.nw-cm-badge {
    font-size: 10.5px;
    font-weight: 700;
    background: #f37002;
    color: #fff;
    border-radius: 4px;
    padding: 2px 7px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.nw-cm-country {
    font-size: 12px;
    color: #bbb;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.nw-cm-replying {
    font-size: 12px;
    color: #f37002;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.nw-cm-date {
    font-size: 12px;
    color: #ccc;
    margin-left: auto;
    white-space: nowrap;
}

.nw-cm-body p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 10px;
}

.nw-cm-reply-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12.5px;
    font-weight: 700;
    color: #bbb;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    transition: color .2s;
}

.nw-cm-reply-btn:hover {
    color: #f37002;
}

.nw-cm-form-wrap {
    background: #fafafa;
    border: 1.5px solid #efefef;
    border-radius: 14px;
    padding: 26px;
}

.nw-cm-form-head {
    margin-bottom: 20px;
}

.nw-cm-form-head h4 {
    font-size: 17px;
    font-weight: 800;
    color: #111;
    margin: 0 0 4px;
}

.nw-cm-form-head p {
    font-size: 13px;
    color: #f37002;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    min-height: 18px;
}

.nw-cm-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.nw-cm-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.nw-cm-row .nw-cm-field {
    margin-bottom: 0;
}

.nw-cm-field label {
    font-size: 13px;
    font-weight: 700;
    color: #444;
}

.nw-cm-field label span {
    color: #f37002;
}

.nw-cm-input {
    border: 1.5px solid #e8e8e8;
    border-radius: 9px;
    padding: 11px 14px;
    font-size: 14px;
    color: #333;
    background: #fff;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color .2s, box-shadow .2s;
}

.nw-cm-input:focus {
    border-color: #f37002;
    box-shadow: 0 0 0 3px rgba(243, 112, 2, .1);
}

.nw-cm-textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}

.nw-cm-select-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.nw-cm-select-wrap>i {
    position: absolute;
    left: 13px;
    font-size: 15px;
    color: #bbb;
    pointer-events: none;
    z-index: 1;
}

.nw-cm-select {
    padding-left: 36px !important;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23bbb' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
    padding-right: 36px !important;
}

.nw-cm-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 4px;
}

.nw-cm-cancel {
    background: none;
    border: 1.5px solid #e0e0e0;
    border-radius: 9px;
    padding: 10px 18px;
    font-size: 13.5px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    transition: border-color .2s, color .2s;
}

.nw-cm-cancel:hover {
    border-color: #f37002;
    color: #f37002;
}

.nw-cm-submit {
    background: #f37002;
    color: #fff;
    border: none;
    border-radius: 9px;
    padding: 11px 24px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: inherit;
    transition: background .2s, transform .2s;
}

.nw-cm-submit:hover {
    background: #d96002;
    transform: translateY(-2px);
}

/* ── More News ── */
.nw-more {
    padding: 60px 0 80px;
    background: #fff;
}

.nw-more-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.nw-more-head h3 {
    font-size: 24px;
    font-weight: 900;
    color: #111;
    margin: 0;
    letter-spacing: -.01em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nw-more-head h3 i {
    color: #f37002;
    font-size: 26px;
}

.nw-more-head a {
    font-size: 13.5px;
    font-weight: 700;
    color: #f37002;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap .2s;
}

.nw-more-head a:hover {
    gap: 8px;
    color: #f37002;
}

.nw-more-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* ── Inline More (inside nw-main) ── */
.nw-inline-more {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.nw-inline-more-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.nw-inline-more-head h3 {
    font-size: 20px;
    font-weight: 900;
    color: #111;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -.01em;
}

.nw-inline-more-head h3 i {
    color: #f37002;
    font-size: 22px;
}

.nw-inline-more-head a {
    font-size: 13px;
    font-weight: 700;
    color: #f37002;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap .2s;
}

.nw-inline-more-head a:hover {
    gap: 8px;
}

.nw-inline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.nw-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1.5px solid #efefef;
    display: flex;
    flex-direction: column;
    transition: box-shadow .3s, transform .3s;
}

.nw-card:hover {
    box-shadow: 0 16px 44px rgba(0, 0, 0, .1);
    transform: translateY(-5px);
}

.nw-card-img {
    position: relative;
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.nw-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.nw-card:hover .nw-card-img img {
    transform: scale(1.07);
}

.nw-card-img .nw-badge {
    position: absolute;
    top: 12px;
    left: 12px;
}

.nw-card-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.nw-card-date {
    font-size: 12px;
    color: #bbb;
    margin-bottom: 9px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nw-card-date i {
    color: #f37002;
}

.nw-card-body h4 {
    font-size: 15px;
    font-weight: 800;
    color: #111;
    line-height: 1.4;
    margin: 0 0 9px;
}

.nw-card-body h4 a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}

.nw-card-body h4 a:hover {
    color: #f37002;
}

.nw-card-body p {
    font-size: 13.5px;
    color: #888;
    line-height: 1.6;
    margin: 0 0 16px;
    flex: 1;
}

.nw-card-link {
    font-size: 13px;
    font-weight: 700;
    color: #f37002;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
    transition: gap .2s;
}

.nw-card-link:hover {
    gap: 8px;
    color: #f37002;
}

/* ── Responsive ── */
/* ============================================================
   NEWS SHOW PAGE END
   ============================================================ */


/* ============================================================
   REVIEW FORM PAGE  (rf-)
   ============================================================ */

@keyframes rfFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Hero ── */
.rf-hero {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.rf-hero-bg {
    position: absolute;
    inset: 0;
}

.rf-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rf-hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(120deg, rgba(0, 0, 0, .78) 0%, rgba(243, 112, 2, .48) 100%); */
    background: linear-gradient(191deg, rgb(8 12 30 / 23%) 45%, rgb(8 12 30 / 77%) 100%)
}

.rf-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 560px;
}

.rf-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(243, 112, 2, .18);
    border: 1px solid rgba(243, 112, 2, .45);
    color: #ffb347;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.rf-hero-content h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.08;
    margin: 0 0 12px;
}

.rf-hero-content h1 span {
    color: #fff;
}

.rf-hero-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, .72);
    margin: 0;
    line-height: 1.65;
}

/* ── Section ── */
.rf-section {
    padding: 52px 0 80px;
    background: #f2f3f5;
}

/* ── Form — single card ── */
.rf-form {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 24px rgba(0, 0, 0, .07);
    overflow: hidden;
    animation: rfFadeUp .4s ease both;
}

/* ── Block ── */
.rf-block {
    border-bottom: 1px solid #f0f0f0;
}

.rf-block:last-of-type {
    border-bottom: none;
}

.rf-block-label {
    display: none;
}

.rf-num {
    display: none;
}

.rf-block-body {
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── Section header ── */
.rf-sh {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 4px;
}

.rf-sh-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #fff3e8, #ffe0c8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rf-sh-icon i {
    font-size: 20px;
    color: #f37002;
}

.rf-sh h4 {
    font-size: 15px;
    font-weight: 800;
    color: #111;
    margin: 0 0 2px;
}

.rf-sh p {
    font-size: 13px;
    color: #aaa;
    margin: 0;
}

/* ── Divider label ── */
.rf-divider-label {
    font-size: 11px;
    font-weight: 700;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: .07em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rf-divider-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #f0f0f0;
}

/* ── Fields ── */
.rf-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.rf-field label {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.rf-req {
    color: #f37002;
}

.rf-opt {
    font-size: 11px;
    font-weight: 400;
    color: #bbb;
    text-transform: none;
    letter-spacing: 0;
}

.rf-input,
.rf-textarea,
.rf-select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    font-size: 14px;
    color: #222;
    background: #fff;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
    transition: border-color .2s, box-shadow .2s;
}

.rf-input:focus,
.rf-textarea:focus,
.rf-select:focus {
    border-color: #f37002;
    box-shadow: 0 0 0 3px rgba(243, 112, 2, .1);
}

.rf-input::placeholder,
.rf-textarea::placeholder {
    color: #ccc;
}

.rf-textarea {
    resize: vertical;
    min-height: 110px;
}

.rf-sel-wrap {
    position: relative;
}

.rf-sel-wrap .rf-select {
    appearance: none;
    padding-right: 36px;
    cursor: pointer;
}

.rf-sel-wrap>i {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
    font-size: 13px;
    pointer-events: none;
}

.rf-icon-input {
    position: relative;
}

.rf-icon-input>i {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    pointer-events: none;
}

.rf-icon-input .rf-input {
    padding-left: 40px;
}

.rf-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* ── Overall Rating ── */
.rf-overall {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(135deg, #fff8f2, #fff3e5);
    border: 1.5px solid #ffdbb8;
    border-radius: 14px;
    padding: 22px 26px;
    flex-wrap: wrap;
}

.rf-overall-title {
    font-size: 15px;
    font-weight: 800;
    color: #111;
    margin: 0 0 3px;
}

.rf-overall-sub {
    font-size: 13px;
    color: #aaa;
    margin: 0 0 14px;
}

.rf-stars--lg i {
    font-size: 30px !important;
}

.rf-star-lbl {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #f37002;
}

.rf-score-circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f37002, #ffb347);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(243, 112, 2, .3);
    color: #fff;
}

.rf-score-circle span {
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}

.rf-score-circle small {
    font-size: 11px;
    opacity: .8;
}

/* ── Stars ── */
.rf-stars {
    display: flex;
    gap: 3px;
}

.rf-stars i {
    font-size: 20px;
    color: #ddd;
    cursor: pointer;
    transition: color .15s, transform .15s;
}

.rf-stars i:hover {
    transform: scale(1.2);
}

.rf-stars i.rf-star--on {
    color: #f37002;
}

/* ── Category grid ── */
.rf-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.rf-cat {
    background: #f9f9f9;
    border: 1.5px solid #eee;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color .2s, box-shadow .2s;
}

.rf-cat:hover {
    border-color: #f37002;
    box-shadow: 0 3px 12px rgba(243, 112, 2, .08);
}

.rf-cat-head {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rf-cat-head i {
    font-size: 16px;
    color: #f37002;
}

.rf-cat-head span {
    font-size: 13px;
    font-weight: 700;
    color: #333;
}

/* ── Upload ── */
.rf-upload {
    border: 2px dashed #e2e2e2;
    border-radius: 12px;
    background: #fafafa;
    overflow: hidden;
    transition: border-color .2s, background .2s;
}

.rf-upload:hover,
.rf-drop--over {
    border-color: #f37002;
    background: #fff8f2;
}

.rf-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 28px 20px;
    cursor: pointer;
    text-align: center;
}

.rf-upload-label>i {
    font-size: 34px;
    color: #f37002;
}

.rf-upload-label strong {
    font-size: 14px;
    font-weight: 800;
    color: #222;
}

.rf-upload-label span {
    font-size: 12px;
    color: #aaa;
}

.rf-upload-btn {
    margin-top: 8px;
    background: #f37002;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 8px;
    transition: background .2s;
}

.rf-upload-label:hover .rf-upload-btn {
    background: #d4600a;
}

.rf-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 18px 18px;
}

.rf-thumb {
    position: relative;
    width: 74px;
    height: 74px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #eee;
}

.rf-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rf-thumb button {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .65);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rf-thumb button:hover {
    background: #f37002;
}

/* ── Chips ── */
.rf-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.rf-chip {
    cursor: pointer;
}

.rf-chip input {
    display: none;
}

.rf-chip span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #f5f5f5;
    border: 1.5px solid #e8e8e8;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 50px;
    transition: all .2s;
}

.rf-chip span i {
    font-size: 15px;
    color: #ccc;
    transition: color .2s;
}

.rf-chip:hover span {
    border-color: #f37002;
    color: #f37002;
    background: #fff8f2;
}

.rf-chip:hover span i {
    color: #f37002;
}

.rf-chip--on span {
    border-color: #f37002;
    background: #f37002;
    color: #fff;
    box-shadow: 0 3px 12px rgba(243, 112, 2, .3);
}

.rf-chip--on span i {
    color: #fff;
}

/* ── Recommendation ── */
.rf-rec-row {
    display: flex;
    gap: 12px;
}

.rf-rec {
    cursor: pointer;
    flex: 1;
}

.rf-rec input {
    display: none;
}

.rf-rec-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #f9f9f9;
    border: 1.5px solid #eee;
    border-radius: 14px;
    padding: 20px 14px;
    text-align: center;
    transition: all .2s;
}

.rf-rec-emoji {
    font-size: 30px;
    line-height: 1;
}

.rf-rec-inner strong {
    font-size: 13.5px;
    font-weight: 800;
    color: #333;
}

.rf-rec:hover .rf-rec-inner {
    border-color: #f37002;
    background: #fff8f2;
    transform: translateY(-2px);
}

.rf-rec--on .rf-rec-inner {
    border-color: #f37002;
    background: linear-gradient(135deg, #fff3e8, #ffddb8);
    box-shadow: 0 5px 18px rgba(243, 112, 2, .18);
    transform: translateY(-2px);
}

.rf-rec--on .rf-rec-inner strong {
    color: #f37002;
}

/* ── Footer ── */
.rf-footer {
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
    padding: 24px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.rf-agree {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 13.5px;
    color: #666;
    cursor: pointer;
    flex: 1;
}

.rf-agree input {
    display: none;
}

.rf-check-box {
    width: 19px;
    height: 19px;
    min-width: 19px;
    border-radius: 5px;
    border: 2px solid #ddd;
    background: #fff;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.rf-agree input:checked+.rf-check-box {
    background: #f37002;
    border-color: #f37002;
}

.rf-agree input:checked+.rf-check-box::after {
    content: '✓';
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.rf-agree a {
    color: #f37002;
    font-weight: 700;
    text-decoration: none;
}

.rf-agree a:hover {
    text-decoration: underline;
}

.rf-submit {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, #f37002, #ff9a3c);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    padding: 13px 36px;
    border-radius: 11px;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(243, 112, 2, .38);
    transition: all .25s;
    white-space: nowrap;
}

.rf-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 28px rgba(243, 112, 2, .48);
}

/* ── Success ── */
.rf-success {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.rf-success-box {
    background: #fff;
    border-radius: 22px;
    padding: 56px 44px;
    text-align: center;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 6px 36px rgba(0, 0, 0, .08);
    animation: rfFadeUp .5s ease both;
}

.rf-success-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    margin: 0 auto 22px;
    background: linear-gradient(135deg, #f37002, #ffb347);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    box-shadow: 0 6px 24px rgba(243, 112, 2, .3);
}

.rf-success-box h3 {
    font-size: 24px;
    font-weight: 900;
    color: #111;
    margin: 0 0 10px;
}

.rf-success-box p {
    font-size: 14.5px;
    color: #777;
    line-height: 1.7;
    margin: 0 0 28px;
}

.rf-success-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.rf-suc-primary,
.rf-suc-outline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    font-weight: 700;
    padding: 11px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: all .2s;
}

.rf-suc-primary {
    background: #f37002;
    color: #fff;
    box-shadow: 0 4px 14px rgba(243, 112, 2, .3);
}

.rf-suc-primary:hover {
    background: #d4600a;
}

.rf-suc-outline {
    border: 2px solid #e0e0e0;
    color: #555;
}

.rf-suc-outline:hover {
    border-color: #f37002;
    color: #f37002;
}

/* ── Responsive ── */
/* ============================================================
   REVIEW FORM PAGE END
   ============================================================ */
/* ============================================================
   HELP BUTTON & POPUP (footer.php)
   ============================================================ */
.hlp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: #222;
    border: 1.5px solid #e0e0e0;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
    box-shadow: 0 3px 14px rgba(0, 0, 0, .1);
    transition: box-shadow .25s, transform .25s, border-color .25s;
}

.hlp-btn:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
    transform: translateY(-2px);
    border-color: #f37002;
}

.hlp-btn i {
    font-size: 16px;
    color: #4f8ef7;
}

.hlp-popup {
    position: fixed;
    bottom: 72px;
    right: 24px;
    z-index: 9991;
    width: 320px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, .16);
    overflow: hidden;
    transform: translateY(16px) scale(.97);
    opacity: 0;
    pointer-events: none;
    transition: transform .28s cubic-bezier(.34, 1.56, .64, 1), opacity .22s ease;
}

.hlp-popup.hlp-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.hlp-popup-head {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 18px 18px 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hlp-popup-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hlp-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f37002, #ffb347);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hlp-avatar i {
    font-size: 20px;
    color: #fff;
}

.hlp-popup-title strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
}

.hlp-popup-title span {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    gap: 5px;
}

.hlp-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    animation: hlpBlink 1.8s ease-in-out infinite;
}

@keyframes hlpBlink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hlp-close {
    background: rgba(255, 255, 255, .1);
    border: none;
    color: rgba(255, 255, 255, .7);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    flex-shrink: 0;
}

.hlp-close:hover {
    background: rgba(255, 255, 255, .2);
    color: #fff;
}

.hlp-popup-body {
    padding: 18px;
}

.hlp-greeting {
    font-size: 14px;
    color: #555;
    margin: 0 0 16px;
    line-height: 1.5;
}

.hlp-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hlp-opt {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f9f9f9;
    border: 1.5px solid #eee;
    border-radius: 12px;
    padding: 12px 14px;
    text-decoration: none;
    transition: all .2s;
}

.hlp-opt:hover {
    border-color: #f37002;
    background: #fff8f2;
    transform: translateX(3px);
}

.hlp-opt-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hlp-opt-icon i {
    font-size: 18px;
    color: #fff;
}

.hlp-opt-icon--green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.hlp-opt-icon--wa {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.hlp-opt-icon--blue {
    background: linear-gradient(135deg, #4f8ef7, #1d4ed8);
}

.hlp-opt-icon--orange {
    background: linear-gradient(135deg, #f37002, #ffb347);
}

.hlp-opt>div strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: #111;
}

.hlp-opt>div span {
    font-size: 12px;
    color: #999;
}

.hlp-opt-arrow {
    margin-left: auto;
    font-size: 13px;
    color: #ccc;
    flex-shrink: 0;
}

.hlp-hours {
    font-size: 12px;
    color: #bbb;
    text-align: center;
    margin: 14px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.hlp-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9989;
    background: transparent;
}

.hlp-backdrop.hlp-open {
    display: block;
}

/* ============================================================
   INQUIRY POPUP (tour-show.php)
   ============================================================ */
.iq-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
}

.iq-overlay.iq-active {
    opacity: 1;
    pointer-events: all;
}

.iq-modal {
    background: #fff;
    border-radius: 18px;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .22);
    transform: translateY(24px);
    transition: transform .3s ease;
}

.iq-overlay.iq-active .iq-modal {
    transform: translateY(0);
}

.iq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px 18px;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
    border-radius: 18px 18px 0 0;
}

.iq-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.iq-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f37002, #ff8c2a);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.iq-icon i {
    font-size: 22px;
    color: #fff;
}

.iq-title {
    font-size: 17px;
    font-weight: 800;
    color: #111;
    margin: 0 0 2px;
}

.iq-subtitle {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.iq-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #e8e8e8;
    background: #fafafa;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    flex-shrink: 0;
    transition: background .2s, color .2s;
}

.iq-close:hover {
    background: #f37002;
    color: #fff;
    border-color: #f37002;
}

.iq-body {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.iq-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.iq-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.iq-label {
    font-size: 12.5px;
    font-weight: 700;
    color: #444;
}

.iq-label span {
    color: #f37002;
}

.iq-input-wrap {
    position: relative;
}

.iq-input-wrap i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #bbb;
    pointer-events: none;
}

.iq-input {
    width: 100%;
    padding: 10px 12px 10px 36px;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    font-size: 13.5px;
    color: #222;
    background: #fafafa;
    outline: none;
    transition: border-color .2s, background .2s;
    box-sizing: border-box;
    appearance: none;
}

.iq-input:focus {
    border-color: #f37002;
    background: #fff;
}

.iq-budget-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.iq-chip input {
    display: none;
}

.iq-chip span {
    display: block;
    padding: 7px 14px;
    border: 1.5px solid #e8e8e8;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    background: #fafafa;
    transition: border-color .2s, background .2s, color .2s;
}

.iq-chip input:checked+span {
    border-color: #f37002;
    background: #fff4ec;
    color: #f37002;
}

.iq-chip span:hover {
    border-color: #f37002;
}

.iq-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    font-size: 13.5px;
    color: #222;
    background: #fafafa;
    outline: none;
    resize: vertical;
    font-family: inherit;
    transition: border-color .2s, background .2s;
    box-sizing: border-box;
}

.iq-textarea:focus {
    border-color: #f37002;
    background: #fff;
}

.iq-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 4px;
}

.iq-privacy {
    font-size: 11.5px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
}

.iq-privacy i {
    color: #ccc;
    font-size: 14px;
}

.iq-submit {
    padding: 11px 28px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f37002, #ff8c2a);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity .2s, transform .15s;
    white-space: nowrap;
}

.iq-submit:hover {
    opacity: .9;
    transform: translateY(-1px);
}

.iq-submit i {
    font-size: 16px;
}

.iq-success {
    padding: 48px 24px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.iq-success-icon {
    font-size: 56px;
    color: #22c55e;
    line-height: 1;
}

.iq-success h3 {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin: 0;
}

.iq-success p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* ============================================================
   USER LOGIN PAGE  (ul-*)
   ============================================================ */
.ul-page-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f6f7f9;
    padding: 32px 16px;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.ul-card {
    background: #fff;
    width: 100%;
    max-width: 500px;
    border-radius: 18px;
    padding: 44px 48px 40px;
    box-shadow: 0 4px 32px rgba(0,0,0,.09);
    box-sizing: border-box;
}

/* Brand logo */
.ul-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    text-decoration: none;
}
.ul-brand img {
    height: 48px;
    width: auto;
    display: block;
}

/* Headings */
.ul-heading {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin: 0 0 4px;
    text-align: center;
}
.ul-subhead {
    font-size: 13px;
    color: #777;
    text-align: center;
    margin: 0 0 24px;
}
.ul-subhead a {
    color: #f37002;
    font-weight: 600;
    text-decoration: none;
}
.ul-subhead a:hover { text-decoration: underline; }

/* Social buttons */
.ul-socials {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}
.ul-social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1.5px solid #e4e4e4;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: border-color .2s, background .2s;
}
.ul-social-btn:hover {
    border-color: #f37002;
    background: #fff8f3;
    color: #f37002;
}
.ul-social-btn img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.ul-social-btn i {
    font-size: 17px;
    color: #1877f2;
}

/* Divider */
.ul-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #bbb;
    font-size: 12px;
    font-weight: 500;
}
.ul-divider::before,
.ul-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ebebeb;
}

/* Form fields */
.ul-field {
    margin-bottom: 16px;
}
.ul-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #444;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.ul-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.ul-ico {
    position: absolute;
    left: 13px;
    font-size: 17px;
    color: #aaa;
    pointer-events: none;
}
.ul-input {
    width: 100%;
    padding: 11px 14px 11px 40px;
    border: 1.5px solid #e4e4e4;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #222;
    background: #fafafa;
    transition: border-color .2s, background .2s;
    outline: none;
    box-sizing: border-box;
}
.ul-input:focus {
    border-color: #f37002;
    background: #fff;
}
.ul-input--pw { padding-right: 44px; }

/* Password toggle */
.ul-pw-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: #aaa;
    font-size: 17px;
    padding: 0;
    line-height: 1;
    transition: color .2s;
}
.ul-pw-toggle:hover { color: #f37002; }

/* Remember / forgot row */
.ul-row-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 13px;
}
.ul-remember {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #555;
    cursor: pointer;
    user-select: none;
}
.ul-remember input[type="checkbox"] {
    accent-color: #f37002;
    width: 15px;
    height: 15px;
}
.ul-forgot {
    color: #f37002;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
}
.ul-forgot:hover { text-decoration: underline; }

/* Submit button */
.ul-btn {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #f37002, #ff8c2a);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity .2s, transform .15s;
    margin-bottom: 20px;
}
.ul-btn:hover {
    opacity: .92;
    transform: translateY(-1px);
}
.ul-btn i { font-size: 17px; }

/* Bottom register link */
.ul-register {
    text-align: center;
    font-size: 13px;
    color: #777;
    margin: 0;
}
.ul-register a {
    color: #f37002;
    font-weight: 600;
    text-decoration: none;
}
.ul-register a:hover { text-decoration: underline; }

/* Footer text */
.ul-footer {
    margin-top: 20px;
    font-size: 12px;
    color: #aaa;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}
.ul-footer a {
    color: #f37002;
    text-decoration: none;
}
.ul-footer a:hover { text-decoration: underline; }
/* ============================================================
   END USER LOGIN PAGE
   ============================================================ */


/* ============================================================
   REGISTER PAGE  (rg-*)
   ============================================================ */
.rg-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.rg-strength {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: -6px 0 14px;
}
.rg-strength-bars {
    display: flex;
    gap: 4px;
    flex: 1;
}
.rg-bar {
    flex: 1;
    height: 4px;
    border-radius: 4px;
    background: #e8e8e8;
    transition: background .3s;
}
.rg-bar.weak   { background: #ef4444; }
.rg-bar.fair   { background: #f97316; }
.rg-bar.good   { background: #eab308; }
.rg-bar.strong { background: #22c55e; }
.rg-strength-label {
    font-size: 11px;
    font-weight: 700;
    color: #aaa;
    min-width: 44px;
    text-align: right;
}
.rg-terms {
    margin-bottom: 18px;
    font-size: 13px;
}
.rg-terms a { color: #f37002; font-weight: 600; text-decoration: none; }
.rg-terms a:hover { text-decoration: underline; }


/* ============================================================
   USER DASHBOARD PAGE  (db-*)
   ============================================================ */
.db-page {
    font-family: 'Poppins', sans-serif;
    background: #f2f3f7;
    color: #1a1a2e;
    min-height: 100vh;
    display: flex;
    font-size: 14px;
    box-sizing: border-box;
}
.db-sidebar {
    width: var(--sidebar-w, 260px);
    flex-shrink: 0;
    background: #1a1a2e;
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: sticky;
    top: 0;
    overflow-y: auto;
    scrollbar-width: none;
}
.db-sidebar::-webkit-scrollbar { display: none; }
.db-brand {
    padding: 24px 22px 20px;
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.db-brand img { height: 30px; filter: brightness(0) invert(1); }
.db-brand-name { font-size: 17px; font-weight: 800; color: #fff; letter-spacing: -.3px; }
.db-sidebar-profile {
    display: flex; align-items: center; gap: 12px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.db-sp-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg,#f37002,#ff9a3c);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; font-weight: 800; color: #fff;
    flex-shrink: 0; border: 2px solid rgba(255,255,255,.15);
}
.db-sp-name  { font-size: 13.5px; font-weight: 700; color: #fff; }
.db-sp-role  { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 1px; }
.db-sp-badge { margin-left: auto; background: #f37002; color: #fff; font-size: 9px; font-weight: 700; padding: 3px 8px; border-radius: 50px; letter-spacing: .03em; }
.db-nav { padding: 16px 14px; flex: 1; }
.db-nav-section { margin-bottom: 6px; }
.db-nav-label { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.3); letter-spacing: .1em; text-transform: uppercase; padding: 10px 10px 6px; display: block; }
.db-nav-item {
    display: flex; align-items: center; gap: 11px;
    padding: 10px 12px; border-radius: 10px;
    font-size: 13px; font-weight: 600; color: rgba(255,255,255,.55);
    text-decoration: none; transition: all .2s; margin-bottom: 1px; position: relative;
}
.db-nav-item i { font-size: 18px; width: 20px; text-align: center; flex-shrink: 0; }
.db-nav-item:hover { background: rgba(255,255,255,.07); color: rgba(255,255,255,.9); }
.db-nav-item.active { background: #f37002; color: #fff; box-shadow: 0 4px 14px rgba(243,112,2,.35); }
.db-nav-item.active i { color: #fff; }
.db-nav-badge { margin-left: auto; background: rgba(255,255,255,.18); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 50px; line-height: 1.4; }
.db-nav-item.active .db-nav-badge { background: rgba(255,255,255,.3); }
.db-nav-item--danger { color: rgba(239,68,68,.7); }
.db-nav-item--danger:hover { background: rgba(239,68,68,.12); color: #ef4444; }
.db-sidebar-bottom { padding: 14px; border-top: 1px solid rgba(255,255,255,.08); }
.db-help-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 14px 16px; }
.db-help-card p { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 10px; line-height: 1.5; }
.db-help-btn { display: flex; align-items: center; justify-content: center; gap: 6px; background: #f37002; color: #fff; padding: 8px; border-radius: 8px; font-size: 12px; font-weight: 700; text-decoration: none; transition: opacity .2s; }
.db-help-btn:hover { opacity: .88; }
.db-main { flex: 1; display: flex; flex-direction: column; min-width: 0; overflow-x: hidden; }
.db-topbar {
    height: 64px; background: #fff; border-bottom: 1px solid #ebebeb;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 28px; position: sticky; top: 0; z-index: 20;
}
.db-topbar-left { display: flex; align-items: center; gap: 14px; }
.db-menu-btn { display: none; background: none; border: none; font-size: 22px; color: #9ca3af; cursor: pointer; }
.db-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #9ca3af; }
.db-breadcrumb a { color: #9ca3af; text-decoration: none; }
.db-breadcrumb a:hover { color: #f37002; }
.db-breadcrumb span { color: #1a1a2e; font-weight: 700; }
.db-topbar-right { display: flex; align-items: center; gap: 8px; }
.db-tb-btn { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: #f7f8fa; border: 1px solid #ebebeb; font-size: 18px; color: #666; cursor: pointer; transition: all .2s; text-decoration: none; position: relative; }
.db-tb-btn:hover { background: #fff4ec; color: #f37002; border-color: #fdd9b8; }
.db-tb-dot { position: absolute; top: 7px; right: 7px; width: 7px; height: 7px; border-radius: 50%; background: #f37002; border: 2px solid #fff; }
.db-tb-divider { width: 1px; height: 28px; background: #ebebeb; margin: 0 4px; }
.db-tb-user { display: flex; align-items: center; gap: 9px; padding: 6px 10px 6px 6px; border: 1px solid #ebebeb; border-radius: 10px; cursor: pointer; background: #f7f8fa; transition: background .2s; }
.db-tb-user:hover { background: #fff4ec; border-color: #fdd9b8; }
.db-tb-avatar { width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(135deg,#f37002,#ff9a3c); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: #fff; }
.db-tb-uname { font-size: 12.5px; font-weight: 700; color: #1a1a2e; }
.db-tb-user i { font-size: 14px; color: #9ca3af; }
.db-content { padding: 24px 28px; flex: 1; }
.db-welcome {
    background: linear-gradient(135deg,#f37002,#ff9a3c);
    border-radius: 18px; padding: 26px 32px;
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 22px; gap: 20px; position: relative; overflow: hidden;
}
.db-welcome::before { content: ''; position: absolute; right: -40px; top: -40px; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,.07); }
.db-welcome::after  { content: ''; position: absolute; right: 80px; bottom: -60px; width: 160px; height: 160px; border-radius: 50%; background: rgba(255,255,255,.05); }
.db-welcome-text { position: relative; z-index: 1; }
.db-welcome-text h2 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 5px; }
.db-welcome-text p  { font-size: 13px; color: rgba(255,255,255,.8); line-height: 1.5; }
.db-welcome-actions { display: flex; gap: 10px; flex-shrink: 0; position: relative; z-index: 1; }
.db-welcome-btn { background: #fff; color: #f37002; padding: 10px 22px; border-radius: 10px; font-size: 13px; font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 7px; transition: transform .2s, box-shadow .2s; box-shadow: 0 4px 14px rgba(0,0,0,.12); }
.db-welcome-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.16); }
.db-welcome-btn--ghost { background: rgba(255,255,255,.18); color: #fff; border: 1px solid rgba(255,255,255,.3); box-shadow: none; }
.db-welcome-btn--ghost:hover { background: rgba(255,255,255,.28); }
.db-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 22px; }
.db-stat { background: #fff; border-radius: 14px; border: 1px solid #ebebeb; padding: 18px 20px; display: flex; align-items: center; gap: 14px; transition: transform .2s, box-shadow .2s; }
.db-stat:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.06); }
.db-stat-ico { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.si-o { background: #fff4ec; color: #f37002; }
.si-b { background: #eff6ff; color: #3b82f6; }
.si-g { background: #f0fdf4; color: #22c55e; }
.si-p { background: #faf5ff; color: #a855f7; }
.db-stat-body { min-width: 0; }
.db-stat-n { font-size: 24px; font-weight: 800; color: #1a1a2e; line-height: 1; margin-bottom: 3px; }
.db-stat-l { font-size: 12px; color: #9ca3af; font-weight: 500; }
.db-stat-trend { font-size: 11px; font-weight: 600; display: flex; align-items: center; gap: 3px; margin-top: 3px; }
.trend-up   { color: #22c55e; }
.trend-down { color: #ef4444; }
.db-row { display: grid; gap: 18px; margin-bottom: 18px; }
.db-row--3-2 { grid-template-columns: 1fr 320px; }
.db-card { background: #fff; border-radius: 14px; border: 1px solid #ebebeb; overflow: hidden; }
.db-card-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid #f5f5f5; }
.db-card-head-left { display: flex; align-items: center; gap: 10px; }
.db-card-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.db-card-title { font-size: 14px; font-weight: 800; color: #1a1a2e; }
.db-card-link { font-size: 12.5px; color: #f37002; font-weight: 600; text-decoration: none; display: flex; align-items: center; gap: 4px; }
.db-card-link:hover { text-decoration: underline; }
.db-bk-item { display: flex; align-items: center; gap: 13px; padding: 13px 20px; border-bottom: 1px solid #f7f7f7; transition: background .15s; cursor: pointer; }
.db-bk-item:last-child { border-bottom: none; }
.db-bk-item:hover { background: #fafbfc; }
.db-bk-img { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; flex-shrink: 0; border: 1px solid #ebebeb; }
.db-bk-info { flex: 1; min-width: 0; }
.db-bk-name { font-size: 13px; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.db-bk-meta { font-size: 11.5px; color: #9ca3af; display: flex; align-items: center; gap: 10px; }
.db-bk-meta span { display: flex; align-items: center; gap: 4px; }
.db-bk-meta i { font-size: 13px; }
.db-bk-right { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
.db-tag { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 50px; white-space: nowrap; }
.tag-ok  { background: #f0fdf4; color: #16a34a; }
.tag-pen { background: #fff7ed; color: #ea580c; }
.tag-don { background: #eff6ff; color: #2563eb; }
.tag-can { background: #fef2f2; color: #dc2626; }
.db-bk-price { font-size: 12px; font-weight: 700; color: #f37002; }
.db-trip-card { margin: 0; }
.db-trip-img-wrap { position: relative; }
.db-trip-img { width: 100%; height: 140px; object-fit: cover; display: block; }
.db-trip-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.6) 0%,transparent 60%); }
.db-trip-img-label { position: absolute; bottom: 10px; left: 12px; display: flex; align-items: center; gap: 6px; }
.db-trip-tag2 { background: #f37002; color: #fff; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 50px; }
.db-trip-body { padding: 14px 16px; }
.db-trip-name { font-size: 14px; font-weight: 800; color: #1a1a2e; margin-bottom: 10px; }
.db-trip-row { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #777; margin-bottom: 6px; }
.db-trip-row i { font-size: 14px; color: #ccc; width: 15px; }
.db-countdown-wrap { margin-top: 14px; }
.db-cd-title { font-size: 11px; font-weight: 600; color: #9ca3af; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .05em; }
.db-countdown { display: flex; gap: 6px; }
.db-cd-box { flex: 1; background: #f2f3f7; border-radius: 10px; padding: 10px 6px; text-align: center; border: 1px solid #ebebeb; }
.db-cd-num { font-size: 20px; font-weight: 800; color: #1a1a2e; display: block; line-height: 1; }
.db-cd-lbl { font-size: 9px; color: #9ca3af; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-top: 3px; display: block; }
.db-pc-body { padding: 16px 20px; display: flex; flex-direction: column; gap: 12px; }
.db-pc-row  { display: flex; align-items: center; justify-content: space-between; }
.db-pc-lbl  { font-size: 13px; color: #555; font-weight: 600; }
.db-pc-pct  { font-size: 14px; font-weight: 800; color: #f37002; }
.db-pc-bar  { height: 7px; background: #f0f0f0; border-radius: 99px; overflow: hidden; }
.db-pc-fill { height: 100%; border-radius: 99px; background: linear-gradient(135deg,#f37002,#ff9a3c); width: 65%; transition: width .8s ease; }
.db-pc-item { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: #666; padding: 5px 0; border-bottom: 1px solid #f5f5f5; }
.db-pc-item:last-child { border-bottom: none; }
.db-pc-item i { font-size: 16px; flex-shrink: 0; }
.db-pc-done i { color: #22c55e; }
.db-pc-todo i { color: #d1d5db; }
.db-pc-todo   { color: #bbb; }
.db-pc-action { margin-left: auto; font-size: 11px; color: #f37002; font-weight: 600; cursor: pointer; text-decoration: none; }
.db-wl-item { display: flex; align-items: center; gap: 12px; padding: 12px 20px; border-bottom: 1px solid #f7f7f7; transition: background .15s; }
.db-wl-item:last-child { border-bottom: none; }
.db-wl-item:hover { background: #fafbfc; }
.db-wl-img  { width: 46px; height: 46px; border-radius: 9px; object-fit: cover; flex-shrink: 0; border: 1px solid #ebebeb; }
.db-wl-info { flex: 1; min-width: 0; }
.db-wl-name  { font-size: 13px; font-weight: 700; color: #1a1a2e; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.db-wl-sub   { font-size: 11.5px; color: #9ca3af; margin-top: 2px; }
.db-wl-price { font-size: 12.5px; color: #f37002; font-weight: 700; }
.db-wl-rm   { width: 28px; height: 28px; border-radius: 8px; background: #f5f5f5; border: none; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #ccc; cursor: pointer; transition: all .2s; flex-shrink: 0; }
.db-wl-rm:hover { background: #fef2f2; color: #ef4444; }
.db-act { padding: 8px 0 4px; }
.db-act-item { display: flex; gap: 14px; padding: 10px 20px; }
.db-act-timeline { display: flex; flex-direction: column; align-items: center; padding-top: 3px; flex-shrink: 0; }
.db-act-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.ad-o { background: #f37002; }
.ad-g { background: #22c55e; }
.ad-p { background: #a855f7; }
.ad-b { background: #3b82f6; }
.db-act-line { width: 2px; flex: 1; background: #f0f0f0; margin-top: 4px; min-height: 20px; }
.db-act-item:last-child .db-act-line { display: none; }
.db-act-content { flex: 1; padding-bottom: 4px; }
.db-act-msg  { font-size: 12.5px; color: #555; line-height: 1.55; }
.db-act-msg strong { color: #1a1a2e; font-weight: 700; }
.db-act-time { font-size: 11px; color: #9ca3af; margin-top: 3px; display: flex; align-items: center; gap: 4px; }
.db-act-time i { font-size: 12px; }
.db-quick { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; padding: 16px 20px; }
.db-qa { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 14px 10px; border-radius: 12px; border: 1.5px solid #ebebeb; background: #fafbfc; text-decoration: none; cursor: pointer; transition: all .2s; }
.db-qa:hover { border-color: #fdd9b8; background: #fff4ec; }
.db-qa-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.db-qa span { font-size: 11.5px; font-weight: 600; color: #555; text-align: center; line-height: 1.3; }
.db-qa:hover span { color: #f37002; }
.db-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 99; backdrop-filter: blur(2px); }
.db-overlay.open { display: block; }
/* ============================================================
   END DASHBOARD PAGE
   ============================================================ */

/* ============================================================
   WRITE REVIEW POPUP
   ============================================================ */

/* Title row */
.tsd-reviews-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}
.tsd-reviews-title-row .tsd-section-title {
    margin-bottom: 0;
}
.tsd-write-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f37002;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    font-family: inherit;
    white-space: nowrap;
}
.tsd-write-review-btn:hover {
    background: #d96300;
    transform: translateY(-1px);
}
.tsd-write-review-btn i {
    font-size: 16px;
}

/* Overlay */
.rvf-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.rvf-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal */
.rvf-modal {
    background: #fff;
    border-radius: 18px;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 60px rgba(0,0,0,0.22);
    animation: rvfSlideUp 0.3s ease;
}
@keyframes rvfSlideUp {
    from { transform: translateY(30px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

/* Scrollbar */
.rvf-modal::-webkit-scrollbar { width: 5px; }
.rvf-modal::-webkit-scrollbar-track { background: #f5f5f5; }
.rvf-modal::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }

/* Header */
.rvf-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px 18px;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    background: #fff;
    border-radius: 18px 18px 0 0;
    z-index: 2;
}
.rvf-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}
.rvf-header-icon {
    font-size: 26px;
    color: #f37002;
    background: #fff4ec;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rvf-header h3 {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin: 0 0 2px;
}
.rvf-header p {
    font-size: 13px;
    color: #888;
    margin: 0;
}
.rvf-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #555;
    transition: background 0.2s;
    flex-shrink: 0;
}
.rvf-close:hover { background: #ebebeb; }

/* Form */
.rvf-form {
    padding: 22px 26px 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.rvf-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.rvf-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.rvf-group label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    line-height: 1;
}
.rvf-group label span {
    color: #f37002;
}
.rvf-optional {
    color: #aaa !important;
    font-weight: 400 !important;
}
.rvf-group input,
.rvf-group textarea {
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    color: #222;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    background: #fafafa;
}
.rvf-group input:focus,
.rvf-group textarea:focus {
    border-color: #f37002;
    box-shadow: 0 0 0 3px rgba(243,112,2,0.1);
    background: #fff;
}
.rvf-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Overall star rating */
.rvf-stars {
    display: flex;
    align-items: center;
    gap: 6px;
}
.rvf-stars i {
    font-size: 28px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.15s, transform 0.15s;
}
.rvf-stars i:hover,
.rvf-stars i.active {
    color: #f5a623;
    transform: scale(1.15);
}
.rvf-star-label {
    font-size: 13px;
    color: #888;
    margin-left: 6px;
}

/* Category ratings */
.rvf-cat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}
.rvf-cat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.rvf-cat-row span {
    font-size: 13px;
    color: #555;
    white-space: nowrap;
}
.rvf-cat-stars {
    display: flex;
    gap: 3px;
}
.rvf-cat-stars i {
    font-size: 16px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.15s;
}
.rvf-cat-stars i:hover,
.rvf-cat-stars i.active {
    color: #f5a623;
}

/* Photo upload */
.rvf-upload-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 2px dashed #e0e0e0;
    border-radius: 12px;
    padding: 22px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    text-align: center;
}
.rvf-upload-area:hover {
    border-color: #f37002;
    background: #fff9f5;
}
.rvf-upload-area i {
    font-size: 30px;
    color: #bbb;
}
.rvf-upload-area span {
    font-size: 14px;
    font-weight: 600;
    color: #555;
}
.rvf-upload-area small {
    font-size: 12px;
    color: #aaa;
}
.rvf-photo-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}
.rvf-photo-preview img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #eee;
}

/* Footer buttons */
.rvf-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 6px;
    border-top: 1px solid #f0f0f0;
}
.rvf-cancel-btn {
    padding: 11px 24px;
    border-radius: 10px;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}
.rvf-cancel-btn:hover { background: #f5f5f5; }
.rvf-submit-btn {
    padding: 11px 28px;
    border-radius: 10px;
    border: none;
    background: #f37002;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.2s;
}
.rvf-submit-btn:hover {
    background: #d96300;
    transform: translateY(-1px);
}

/* Success state */
.rvf-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 30px;
    gap: 16px;
}
.rvf-success-icon {
    width: 70px;
    height: 70px;
    background: #e8f8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #22c55e;
}
.rvf-success h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0;
}
.rvf-success p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
    .rvf-row-2  { grid-template-columns: 1fr; }
    .rvf-cat-grid { grid-template-columns: 1fr; }
    .rvf-header { padding: 16px 18px 14px; }
    .rvf-form   { padding: 16px 18px 20px; }
    .rvf-modal  { border-radius: 14px; }
}
/* ============================================================
   END WRITE REVIEW POPUP
   ============================================================ */

/* ============================================================
   INQUIRY POPUP (moved from tour-show.php)
   ============================================================ */
/* ── Inquiry Popup ── */
.iq-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
    opacity: 0; pointer-events: none;
    transition: opacity .25s;
}
.iq-overlay.iq-active { opacity: 1; pointer-events: all; }
.iq-modal {
    background: #fff; border-radius: 18px;
    width: 100%; max-width: 640px;
    max-height: 90vh; overflow-y: auto;
    box-shadow: 0 24px 64px rgba(0,0,0,.22);
    transform: translateY(24px);
    transition: transform .3s ease;
}
.iq-overlay.iq-active .iq-modal { transform: translateY(0); }

/* Header */
.iq-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 24px 18px;
    border-bottom: 1px solid #f0f0f0;
    position: sticky; top: 0; background: #fff; z-index: 1;
    border-radius: 18px 18px 0 0;
}
.iq-header-left { display: flex; align-items: center; gap: 14px; }
.iq-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, #f37002, #ff8c2a);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.iq-icon i { font-size: 22px; color: #fff; }
.iq-title { font-size: 17px; font-weight: 800; color: #111; margin: 0 0 2px; }
.iq-subtitle { font-size: 12px; color: #888; margin: 0; }
.iq-close {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1.5px solid #e8e8e8; background: #fafafa;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #666; flex-shrink: 0;
    transition: background .2s, color .2s;
}
.iq-close:hover { background: #f37002; color: #fff; border-color: #f37002; }

/* Body */
.iq-body { padding: 22px 24px; display: flex; flex-direction: column; gap: 16px; }
.iq-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.iq-field { display: flex; flex-direction: column; gap: 6px; }
.iq-label { font-size: 12.5px; font-weight: 700; color: #444; }
.iq-label span { color: #f37002; }
.iq-input-wrap { position: relative; }
.iq-input-wrap i {
    position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
    font-size: 16px; color: #bbb; pointer-events: none;
}
.iq-input {
    width: 100%; padding: 10px 12px 10px 36px;
    border: 1.5px solid #e8e8e8; border-radius: 10px;
    font-size: 13.5px; color: #222; background: #fafafa;
    outline: none; transition: border-color .2s, background .2s;
    box-sizing: border-box; appearance: none;
}
.iq-input:focus { border-color: #f37002; background: #fff; }

/* Budget chips */
.iq-budget-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.iq-chip input { display: none; }
.iq-chip span {
    display: block; padding: 7px 14px;
    border: 1.5px solid #e8e8e8; border-radius: 50px;
    font-size: 12.5px; font-weight: 600; color: #555;
    cursor: pointer; background: #fafafa;
    transition: border-color .2s, background .2s, color .2s;
}
.iq-chip input:checked + span { border-color: #f37002; background: #fff4ec; color: #f37002; }
.iq-chip span:hover { border-color: #f37002; }

/* Textarea */
.iq-textarea {
    width: 100%; padding: 10px 14px;
    border: 1.5px solid #e8e8e8; border-radius: 10px;
    font-size: 13.5px; color: #222; background: #fafafa;
    outline: none; resize: vertical; font-family: inherit;
    transition: border-color .2s, background .2s;
    box-sizing: border-box;
}
.iq-textarea:focus { border-color: #f37002; background: #fff; }

/* Footer */
.iq-footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding-top: 4px; }
.iq-privacy { font-size: 11.5px; color: #aaa; display: flex; align-items: center; gap: 5px; margin: 0; }
.iq-privacy i { color: #ccc; font-size: 14px; }
.iq-submit {
    padding: 11px 28px; border-radius: 10px;
    background: linear-gradient(135deg, #f37002, #ff8c2a);
    color: #fff; font-size: 14px; font-weight: 700;
    border: none; cursor: pointer;
    display: flex; align-items: center; gap: 8px;
    transition: opacity .2s, transform .15s;
    white-space: nowrap;
}
.iq-submit:hover { opacity: .9; transform: translateY(-1px); }
.iq-submit i { font-size: 16px; }

/* Success */
.iq-success {
    padding: 48px 24px; flex-direction: column;
    align-items: center; text-align: center; gap: 12px;
}
.iq-success-icon { font-size: 56px; color: #22c55e; line-height: 1; }
.iq-success h3 { font-size: 20px; font-weight: 800; color: #111; margin: 0; }
.iq-success p { font-size: 14px; color: #666; margin: 0; }

@media (max-width: 560px) {
    .iq-row-2 { grid-template-columns: 1fr; }
    .iq-footer { flex-direction: column; align-items: stretch; }
    .iq-submit { justify-content: center; }
}
/* ============================================================
   END INQUIRY POPUP
   ============================================================ */
