/* Thai Mitraa Travels - Exact Tripdust Style UI Theme */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,500;0,600;0,700;0,800;1,600&display=swap');

:root {
    --brand-navy: #002D80;
    --brand-navy-dark: #001B54;
    --brand-red: #E30613;
    --brand-red-hover: #C0040E;
    --brand-red-light: #FEF2F2;
    --brand-blue: #002D80;
    --brand-blue-hover: #001B54;
    --dark-navy: #002D80;
    --brand-gold: #E30613;
    --brand-gold-hover: #C0040E;
    --brand-green: #25d366;
    --light-bg: #f8fafc;
    --card-bg: #ffffff;
    --text-dark: #0f172a;
    --text-muted: #576574;
    --border-light: #e2e8f0;
    --font-serif: 'Plus Jakarta Sans', 'Outfit', sans-serif;
    --font-sans: 'Outfit', sans-serif;
    --radius-pill: 50px;
    --radius-card: 16px;
    --radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-sans);
}

html {
    overflow-x: clip;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: clip;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

/* MODAL OVERLAY & POPUP STYLES */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 40, 0.82);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 99999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    padding: 2.5rem 1rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 840px;
    padding: 0;
    box-shadow: 0 30px 80px rgba(0, 15, 60, 0.5);
    position: relative;
    margin: auto 0;
    overflow: hidden;
    animation: modalPopIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalPopIn {
    from { opacity: 0; transform: scale(0.96) translateY(-10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fee2e2;
    border: 1.5px solid #fca5a5;
    color: #ef4444;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.modal-close:hover {
    background: #ef4444;
    color: #ffffff;
    transform: scale(1.1) rotate(90deg);
}

.form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* TOP ROYAL BLUE HEADER BAR */
/* SITE HEADER BOXED CONTAINER */
.site-header-boxed {
    width: 100% !important;
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    box-shadow: 0 4px 20px rgba(0, 20, 60, 0.15) !important;
    border-radius: 0 !important;
    background: #ffffff !important;
}

.top-header-bar {
    background: #ffffff;
    color: var(--text-dark);
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
    width: 100%;
    border-radius: 0 !important;
}

.header-inner-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.top-brand-icon {
    width: 38px;
    height: 38px;
    background: var(--brand-red);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
}

.top-brand-text {
    display: flex;
    flex-direction: column;
}

.top-brand-title {
    font-family: var(--font-sans);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--brand-navy);
    line-height: 1;
}

.top-brand-sub {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--brand-red);
    text-transform: uppercase;
    margin-top: 3px;
}

.top-brand img, .header-logo-img {
    height: 45px !important;
    max-height: 55px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
}

.top-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.currency-switcher-dropdown {
    position: relative !important;
    display: inline-block !important;
}

.currency-switcher-btn {
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-pill) !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    border: 1px solid var(--border-light) !important;
    background: #f8fafc !important;
    color: var(--text-dark) !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
}

.currency-dropdown-menu {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    right: 0 !important;
    left: auto !important;
    background: #ffffff !important;
    border-radius: 14px !important;
    box-shadow: 0 10px 30px rgba(0, 20, 60, 0.2) !important;
    border: 1px solid #cbd5e1 !important;
    padding: 0.5rem 0 !important;
    list-style: none !important;
    margin: 0 !important;
    min-width: 170px !important;
    display: none;
    z-index: 99999 !important;
}

.currency-dropdown-menu.show, .currency-dropdown-menu.active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.currency-dropdown-menu li {
    padding: 0.6rem 1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
}

.currency-dropdown-menu li:hover {
    background: #f1f5f9 !important;
    color: var(--brand-navy) !important;
}

.btn-header-pill {
    padding: 0.5rem 1.15rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid var(--border-light);
    background: #f8fafc;
    color: var(--text-dark);
    transition: all 0.25s ease;
}

.btn-header-pill:hover {
    background: #e2e8f0;
    color: var(--brand-navy);
}

.btn-header-whatsapp {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: #fff;
}

.btn-header-whatsapp:hover {
    background: #1ebc57;
    color: #fff;
}

/* CENTER ALIGNED WORKING SEARCH BAR */
.header-center-search-form {
    flex-grow: 1;
    max-width: 460px;
    margin: 0 1.5rem;
}

.header-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 50px;
    padding: 0.25rem 0.35rem 0.25rem 1.15rem;
    transition: all 0.25s ease;
}

.header-search-input-wrapper:focus-within {
    background: #ffffff;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(0, 45, 128, 0.12);
}

.search-input-icon {
    color: #64748b;
    font-size: 0.9rem;
    margin-right: 0.65rem;
}

.header-search-input-wrapper input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
}

.header-search-input-wrapper input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.btn-search-submit {
    background: var(--brand-red);
    color: #ffffff;
    border: none;
    padding: 0.45rem 1.15rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 3px 10px rgba(227, 6, 19, 0.3);
    flex-shrink: 0;
}

.btn-search-submit:hover {
    background: var(--brand-red-hover);
    transform: scale(1.03);
}

/* MOBILE HAMBURGER BUTTON & DRAWER MENU */
.mobile-hamburger-btn {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #002D80 0%, #051329 100%);
    color: #ffffff;
    border: none;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 45, 128, 0.2);
}

.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 19, 41, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 310px;
    max-width: 85vw;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    box-shadow: -8px 0 30px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer-menu.active {
    transform: translateX(0);
}

.mobile-drawer-header {
    background: #ffffff;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.btn-close-drawer {
    background: #f1f5f9;
    color: var(--brand-blue);
    border: 1px solid #cbd5e1;
    font-size: 1.4rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-close-drawer:hover {
    background: var(--brand-red);
    color: #ffffff;
    border-color: var(--brand-red);
}

.mobile-drawer-body {
    padding: 1.25rem 1.5rem;
    overflow-y: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-radius: 12px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    border: 1px solid var(--border-light);
}

.mobile-nav-link i {
    color: var(--brand-red);
}

.mobile-accordion-item {
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.mobile-accordion-header {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-dark);
    cursor: pointer;
}

.accordion-arrow {
    font-size: 0.75rem;
    color: #64748b;
    transition: transform 0.25s ease;
}

.mobile-accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.mobile-accordion-body {
    display: none;
    padding: 0.5rem 1rem 0.75rem;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.mobile-accordion-item.active .mobile-accordion-body {
    display: block;
}

.mobile-sub-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-sub-list li a {
    font-size: 0.85rem;
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
}

.mobile-drawer-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* SECONDARY DARK NAVIGATION BAR */
.secondary-nav-bar {
    background: #002D80 !important;
    width: 100%;
    padding: 0.65rem 0;
    border-radius: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.secondary-nav-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links-menu {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    list-style: none;
}

.nav-links-menu > li {
    position: relative;
}

.nav-links-menu > li > a {
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.5rem 0;
    transition: all 0.2s ease;
}

.nav-links-menu > li > a:hover, .nav-links-menu > li > a.active {
    color: #ff6b75;
}

/* NORMAL VERTICAL DROPDOWN MENU */
.dropdown-normal-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 275px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 20, 60, 0.18);
    border: 1px solid #e2e8f0;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.nav-item-dropdown:hover .dropdown-normal-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-list li a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 1.15rem;
    color: #1e293b !important;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-list li a i {
    font-size: 0.72rem;
    color: var(--brand-red);
    transition: transform 0.2s ease;
}

.dropdown-list li a:hover {
    background: #f8fafc;
    color: var(--brand-red) !important;
    padding-left: 1.35rem;
}

.dropdown-list li a:hover i {
    transform: translateX(3px);
}

.dropdown-menu-footer {
    border-top: 1px solid #f1f5f9;
    margin-top: 0.35rem;
    padding: 0.65rem 1.15rem 0.25rem;
}

.dropdown-menu-footer a {
    color: var(--brand-blue) !important;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-menu-footer a:hover {
    color: var(--brand-red) !important;
}

.btn-customise-gold {
    background: var(--brand-red);
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(227, 6, 19, 0.4);
}

.btn-customise-gold:hover {
    background: var(--brand-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(227, 6, 19, 0.5);
}

/* HERO SECTION Thai Mitraa BRAND STYLE */
.hero-tripdust {
    position: relative;
    min-height: 84vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 7rem;
    color: #ffffff;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.hero-bg-video, .hero-bg-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-bg-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 6s ease-out;
    transform: scale(1.06);
}

.hero-slide-item.active {
    opacity: 1;
    transform: scale(1);
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 19, 41, 0.2) 0%, rgba(5, 19, 41, 0.35) 100%);
    z-index: 2;
    display: block !important;
}

.hero-tripdust-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-tag {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.45rem 1.35rem !important;
    background: #002D80 !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: var(--radius-pill) !important;
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    margin: 0 auto 1.25rem !important;
    box-shadow: 0 6px 18px rgba(0, 45, 128, 0.4) !important;
}

.hero-tag i {
    color: var(--brand-red) !important;
}

.hero-serif-heading {
    font-family: var(--font-serif) !important;
    font-size: clamp(2.4rem, 5.5vw, 4rem) !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    margin: 0 auto 1.25rem !important;
    max-width: 900px !important;
    text-align: center !important;
    color: #ffffff !important;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.95), 0 2px 8px rgba(0, 0, 0, 0.95) !important;
}

.hero-serif-heading em {
    font-style: italic !important;
    color: #ffffff !important;
    border-bottom: 3px solid var(--brand-red) !important;
}

.hero-subtext {
    font-size: 1.15rem !important;
    color: #ffffff !important;
    max-width: 720px !important;
    margin: 0 auto 2.25rem !important;
    line-height: 1.6 !important;
    font-weight: 600 !important;
    text-align: center !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95) !important;
}

/* HERO SEARCH PILL */
.hero-search-pill-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-pill);
    padding: 0.45rem 0.5rem 0.45rem 1.75rem;
    display: flex;
    align-items: center;
    max-width: 580px;
    width: 100%;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-search-pill-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    background: transparent;
}

.hero-search-pill-box button {
    background: var(--brand-red);
    color: #fff;
    border: none;
    padding: 0.75rem 1.8rem;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(227, 6, 19, 0.35);
}

.hero-search-pill-box button:hover {
    background: var(--brand-red-hover);
    transform: scale(1.03);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn-hero-blue {
    background: var(--brand-red);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(227, 6, 19, 0.35);
}

.btn-hero-blue:hover {
    background: var(--brand-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(227, 6, 19, 0.45);
}

.btn-hero-dark {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: all 0.25s ease;
}

.btn-hero-dark:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* TRUST PROOF BAR */
.trust-proof-bar {
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    padding: 1.25rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.trust-proof-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.proof-chip {
    background: #f8fafc;
    border: 1px solid var(--border-light);
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.proof-chip.highlight {
    background: var(--brand-red-light);
    color: var(--brand-red);
    border-color: #fca5a5;
}

/* SECTION HEADINGS BRAND STYLE */
.section-wrapper {
    padding: 4.5rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.section-label-small {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-label-small::before {
    content: '';
    width: 12px;
    height: 3px;
    background: var(--brand-red);
    border-radius: 2px;
}

.section-title-serif, .why-title-serif {
    font-family: var(--font-serif) !important;
    font-size: clamp(1.75rem, 4vw, 2.25rem) !important;
    font-weight: 700 !important;
    color: var(--text-dark);
    letter-spacing: -0.4px !important;
    line-height: 1.25 !important;
}

/* CITY CARDS BRAND GRID */
.city-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.city-tripdust-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 10px 30px rgba(0, 45, 128, 0.1);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem;
    color: #ffffff;
    border: 1px solid var(--border-light);
}

.spotlight-hero-card {
    grid-column: span 8 / span 8;
}

.standard-city-card {
    grid-column: span 4 / span 4;
}

.city-tripdust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(227, 6, 19, 0.2);
    border-color: var(--brand-red);
}

.city-tripdust-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

.city-tripdust-card:hover img {
    transform: scale(1.08);
}

.city-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.dest-count-badge {
    background: #002D80;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 45, 128, 0.4);
    display: inline-block;
    max-width: 100%;
}

.dest-popular-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.78rem;
    border: 1px solid rgba(255,255,255,0.4);
    display: inline-block;
}

.city-activity-badge {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-pill);
    width: fit-content;
}

.city-bottom-info {
    position: relative;
    z-index: 3;
}

.city-title-bold {
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 0.3rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
    letter-spacing: -0.2px;
}

.city-subtext-arrow {
    font-size: 0.8rem;
    color: #f1f5f9;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* 4 STEPS CUSTOM BUILDER BOX */
.steps-builder-wrapper {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
    max-width: 680px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.steps-builder-header {
    background: var(--dark-navy);
    color: #ffffff;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flight-code {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.flight-code span {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
    margin-top: 2px;
}

.flight-plane-icon {
    font-size: 1.2rem;
    color: var(--brand-gold);
}

.steps-list {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px dashed var(--border-light);
}

.step-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.step-num-badge {
    width: 28px;
    height: 28px;
    background: #eff6ff;
    color: var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.step-title {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.step-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.steps-builder-footer {
    padding: 0 2rem 2rem;
    text-align: center;
}

/* POPULAR ACTIVITIES & TABS */
.filter-tabs-pills {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-tabs-pills {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.25rem;
}

.tab-pill {
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    font-weight: 700;
    background: #ffffff;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.tab-pill.active, .tab-pill:hover {
    background: var(--brand-red);
    color: #ffffff;
    border-color: var(--brand-red);
    box-shadow: 0 6px 18px rgba(227, 6, 19, 0.35);
    transform: translateY(-1px);
}

/* ACTIVITY CARD WITH IMAGE TYPOGRAPHY OVERLAY */
.activity-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .activity-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 900px) {
    .activity-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .activity-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
}

.activity-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 24px rgba(0, 45, 128, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: inherit;
    cursor: pointer;
    width: 100%;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(227, 6, 19, 0.18);
    border-color: var(--brand-red);
}

.activity-image-wrapper {
    position: relative;
    height: 230px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-image-wrapper img {
    transform: scale(1.08);
}

.badge-tag-left {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 45, 128, 0.9);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.2);
}

.badge-tag-right {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(202, 138, 4, 0.3);
}

.card-floating-price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(12, 26, 48, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #ffffff;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.card-floating-price span {
    font-size: 0.72rem;
    font-weight: 600;
    color: #cbd5e1;
}

.activity-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.activity-location-tag {
    color: #002D80;
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.activity-location-tag i {
    color: var(--brand-red);
}

.activity-title {
    font-family: var(--font-sans);
    font-size: 1.08rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.card-minimalist-footer {
    margin-top: auto;
    padding-top: 0.95rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-price-text {
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 500;
}

.card-price-text strong {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand-blue);
}

.card-price-text span {
    font-size: 0.75rem;
}

.btn-card-action {
    background: #eff6ff;
    color: var(--brand-blue) !important;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.25s ease;
    border: 1px solid #bfdbfe;
    text-decoration: none;
}

.activity-card:hover .btn-card-action {
    background: var(--brand-blue);
    color: #ffffff !important;
    border-color: var(--brand-blue);
    box-shadow: 0 4px 12px rgba(0, 45, 128, 0.25);
}

.activity-meta-tag {
    background: var(--brand-red-light);
    color: var(--brand-red);
    border: 1px solid #fca5a5;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    width: fit-content;
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.activity-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-navy);
    margin-top: auto;
}

.activity-price span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.btn-minimalist-navy {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff !important;
    background: var(--brand-blue);
    border-radius: 50px;
    text-decoration: none !important;
    box-shadow: 0 6px 18px rgba(0, 45, 128, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.btn-minimalist-navy:hover {
    background: #001B54;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 45, 128, 0.35);
}

/* WHY BOOK WITH US DARK SECTION */
.why-book-dark-section {
    background: var(--dark-navy);
    color: #ffffff;
    padding: 4.5rem 2rem;
}

.why-book-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-title-serif {
    font-family: var(--font-serif) !important;
    font-size: clamp(2rem, 4.5vw, 2.8rem) !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    margin-bottom: 1rem !important;
    color: #ffffff !important;
}

.why-subtext {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.license-info-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-card);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.license-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.85rem;
}

.license-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.license-label {
    color: #94a3b8;
}

.license-val {
    font-weight: 700;
    color: #ffffff;
}

/* CITY PILLS FROM INDIA */
.city-pills-bar {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.city-pill-btn {
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 0.5rem 1.15rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* QUOTE CARD */
.quote-card-box {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid var(--border-light);
    max-width: 900px;
    margin: 3rem auto 0;
    text-align: center;
}

.quote-text {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

/* FOOTER TRIPDUST */
.site-footer-tripdust {
    background: #ffffff;
    border-top: 1px solid var(--border-light);
    padding: 3rem 2rem 1.5rem;
    color: var(--text-muted);
}

.footer-tripdust-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* DROPDOWN MENU TRIPDUST STYLE */
.nav-item-dropdown {
    position: relative;
    padding: 0.5rem 0;
}

.dropdown-mega-card {
    position: absolute;
    top: 100%;
    left: -10px;
    width: 440px;
    background: #ffffff !important;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 45, 128, 0.22);
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border-light);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease-in-out;
    z-index: 1050;
}

.nav-item-dropdown:hover .dropdown-mega-card {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-tour-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
    margin-bottom: 0.85rem;
}

.dropdown-tour-link {
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    line-height: 1.35;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: block;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
}

.dropdown-tour-link:hover {
    background: var(--brand-red-light) !important;
    color: var(--brand-red) !important;
    border-color: rgba(227, 6, 19, 0.2) !important;
    transform: translateX(3px);
}

.dropdown-footer-link {
    border-top: 1px solid var(--border-light);
    padding-top: 0.85rem;
    margin-top: 0.5rem;
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    color: var(--brand-navy) !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s ease;
}

.dropdown-footer-link:hover {
    color: var(--brand-red) !important;
}

/* BREADCRUMBS */
.breadcrumbs-bar {
    font-size: 0.85rem;
    color: var(--brand-blue);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.breadcrumbs-bar a {
    color: var(--brand-blue);
}

.breadcrumbs-bar span {
    color: var(--text-muted);
}

/* TOUR DETAIL HEADER & CHIPS */
.tour-detail-title {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3.5vw, 1.85rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.tour-price-header-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.tour-price-val {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
}

.tour-feature-chips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}

.feature-chip-item {
    background: #f1f5f9;
    color: #334155;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.feature-chip-item.green-alert {
    background: #dcfce7;
    color: #15803d;
}

.feature-chip-item.blue-alert {
    background: #eff6ff;
    color: #1d4ed8;
}

/* PHOTO GALLERY 1 BIG + 2x2 SMALL */
.gallery-tripdust-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
    border-radius: var(--radius-card);
    overflow: hidden;
    height: 440px;
}

.gallery-big-item {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.gallery-big-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-side-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 100%;
}

.gallery-small-item {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.gallery-small-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   GOOD TO KNOW SECTION (ATTRACTIVE & MOBILE RESPONSIVE)
   ========================================================================== */
.tour-good-to-know-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.85rem 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 45, 128, 0.04);
    position: relative;
    overflow: hidden;
}

.tour-good-to-know-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--brand-blue, #002D80) 0%, #0284c7 100%);
    border-radius: 16px 0 0 16px;
}

.good-to-know-title {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.35rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.good-to-know-list {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.good-to-know-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.good-to-know-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #eff6ff;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    margin-top: 1px;
    border: 1px solid #dbeafe;
    transition: all 0.2s ease;
}

.good-to-know-item:hover .good-to-know-icon {
    background: #0284c7;
    color: #ffffff;
    transform: scale(1.05);
}

.good-to-know-text {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.6;
    font-weight: 500;
    flex: 1;
}

@media (max-width: 768px) {
    .tour-good-to-know-box {
        padding: 1.35rem 1.15rem !important;
        border-radius: 14px !important;
        margin-bottom: 1.75rem !important;
    }
    .good-to-know-title {
        font-size: 1.25rem !important;
        margin-bottom: 1rem !important;
    }
    .good-to-know-list {
        gap: 0.9rem !important;
    }
    .good-to-know-item {
        gap: 0.75rem !important;
    }
    .good-to-know-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.9rem !important;
        border-radius: 8px !important;
    }
    .good-to-know-text {
        font-size: 0.88rem !important;
        line-height: 1.5 !important;
    }
}

/* TIP BOXES & CALLOUTS */
.tip-callout-box {
    background: #eff6ff;
    border-left: 4px solid var(--brand-blue);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    color: #1e3a8a;
}

.on-ground-banner {
    background: var(--dark-navy);
    color: #ffffff;
    padding: 1.5rem;
    border-radius: var(--radius-card);
    margin: 2rem 0;
}

.on-ground-tag {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--brand-gold);
    text-transform: uppercase;
}

.on-ground-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0.25rem 0 0.5rem;
}

/* ACCORDION FAQ */
.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item.active {
    border-color: #cbd5e1;
    box-shadow: 0 4px 14px rgba(0, 45, 128, 0.04);
}

.faq-header {
    padding: 1.1rem 1.35rem;
    font-weight: 700;
    font-size: 0.96rem;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    user-select: none;
    transition: background 0.2s ease;
}

.faq-header:hover {
    background: #f8fafc;
}

.faq-header i {
    color: var(--brand-navy);
    font-size: 0.9rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 1.35rem 1.15rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    display: none;
    border-top: 1px solid #f1f5f9;
    padding-top: 0.85rem;
}

.faq-item.active .faq-body {
    display: block;
}

/* STICKY BOTTOM ACTION BAR */
.bottom-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-navy);
    color: #ffffff;
    padding: 0.85rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1040;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.bottom-sticky-info {
    display: flex;
    flex-direction: column;
}

.bottom-sticky-title {
    font-weight: 700;
    font-size: 0.95rem;
}

.bottom-sticky-price {
    font-size: 0.85rem;
    color: #94a3b8;
}

.bottom-sticky-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* POLICY & ABOUT US CMS CONTENT STYLING */
.policy-page-content h2, .policy-page-content h3 {
    color: var(--text-dark);
    font-weight: 800;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.policy-page-content h2:first-child, .policy-page-content h3:first-child {
    margin-top: 0;
}
.policy-page-content h4 {
    color: var(--brand-navy);
    font-weight: 800;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}
.policy-page-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #475569;
}
.policy-page-content ul, .policy-page-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}
.policy-page-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #334155;
}
.policy-page-content strong {
    color: #0f172a;
}

/* MINIMALIST ELEGANT WEATHER WIDGET */
.weather-minimalist-wrapper {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 22px;
    padding: 1.75rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 45, 128, 0.04);
    margin-bottom: 3rem;
}

.weather-minimalist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.weather-section-subtitle {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--brand-red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.25rem;
}

.weather-section-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.weather-minimalist-legend {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.legend-pill {
    font-size: 0.78rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
}

.legend-pill .dot-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.legend-peak {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}
.legend-peak .dot-indicator { background: #22c55e; }

.legend-good {
    background: #f0f9ff;
    color: #0369a1;
    border: 1px solid #bae6fd;
}
.legend-good .dot-indicator { background: #0ea5e9; }

.legend-monsoon {
    background: #fff1f2;
    color: #9f1239;
    border: 1px solid #fecdd3;
}
.legend-monsoon .dot-indicator { background: #f43f5e; }

.weather-month-grid-modern {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.65rem;
}

.month-pill-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 0.85rem 0.35rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    transition: all 0.25s ease;
    cursor: default;
}

.month-pill-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.month-pill-name {
    font-size: 0.78rem;
    font-weight: 800;
    color: #475569;
    letter-spacing: 0.5px;
}

.month-pill-status {
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
}

/* Status variants */
.month-pill-card.peak {
    background: #f0fdf4;
    border-color: #bbf7d0;
}
.month-pill-card.peak .month-pill-name { color: #14532d; }
.month-pill-card.peak .month-pill-status { color: #166534; }

.month-pill-card.good {
    background: #f0f9ff;
    border-color: #bae6fd;
}
.month-pill-card.good .month-pill-name { color: #0c4a6e; }
.month-pill-card.good .month-pill-status { color: #0369a1; }

.month-pill-card.monsoon {
    background: #fff1f2;
    border-color: #fecdd3;
}
.month-pill-card.monsoon .month-pill-name { color: #4c0519; }
.month-pill-card.monsoon .month-pill-status { color: #9f1239; }

/* DEPARTURE CITY HUBS TABS & CARDS */
.india-city-tabs-scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    overflow-x: auto;
    padding: 0.5rem 0.25rem 1rem;
    margin-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
}

.city-tab-pill {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 50px;
    padding: 0.6rem 1.35rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.city-tab-pill i {
    font-size: 1.1rem;
    color: var(--brand-red);
}

.tab-city-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tab-city-name {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
}

.tab-city-code {
    font-size: 0.68rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.5px;
}

.city-tab-pill.active, .city-tab-pill:hover {
    background: linear-gradient(135deg, #002D80 0%, #051329 100%);
    border-color: #002D80;
    box-shadow: 0 6px 18px rgba(0, 45, 128, 0.25);
    transform: translateY(-2px);
}

.city-tab-pill.active .tab-city-name,
.city-tab-pill:hover .tab-city-name {
    color: #ffffff;
}

.city-tab-pill.active .tab-city-code,
.city-tab-pill:hover .tab-city-code {
    color: #94a3b8;
}

.city-tab-pill.active i,
.city-tab-pill:hover i {
    color: #ff6b75;
}

/* CITY PACKAGE CARDS GRID */
.india-city-packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.city-package-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.6rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 24px rgba(0, 45, 128, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.city-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 45, 128, 0.12);
    border-color: var(--brand-blue);
}

.city-pkg-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
}

.city-pkg-badge {
    background: #eff6ff;
    color: var(--brand-blue);
    border: 1px solid #bfdbfe;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.city-pkg-duration {
    font-size: 0.78rem;
    font-weight: 700;
    color: #64748b;
}

.city-pkg-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.city-pkg-sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.city-pkg-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    gap: 0.75rem;
}

.city-pkg-price-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.city-pkg-price-from {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1;
    margin-bottom: 2px;
}

.city-pkg-price-val {
    display: flex;
    align-items: baseline;
    gap: 4px;
    white-space: nowrap;
}

.city-pkg-price-val strong {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--brand-navy);
    line-height: 1;
}

.city-pkg-price-val small {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
}

.btn-city-wa {
    background: var(--brand-green);
    color: #ffffff;
    text-decoration: none;
    padding: 0.55rem 1.15rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.2s ease;
}

.btn-city-wa:hover {
    background: #1ebc57;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* EYE-CATCHING REAL TRAVELLER REVIEWS GRID */
.traveller-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.75rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0, 45, 128, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.review-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 45, 128, 0.12);
    border-color: var(--brand-blue);
}

.review-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--brand-red);
    flex-shrink: 0;
}

.reviewer-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.reviewer-origin {
    font-size: 0.76rem;
    font-weight: 600;
    color: #64748b;
}

.review-rating-stars {
    color: var(--brand-gold);
    font-size: 0.85rem;
    display: flex;
    gap: 2px;
}

.review-comment-text {
    font-size: 0.92rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.review-verified-badge {
    font-size: 0.78rem;
    font-weight: 700;
    color: #15803d;
    background: #f0fdf4;
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    width: fit-content;
    border: 1px solid #bbf7d0;
}

/* PREMIUM DARK 5-COLUMN FOOTER STYLES */
.footer-5col-wrapper {
    background: #001B54;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5rem 2rem 2.5rem;
    color: #94a3b8;
    font-size: 0.88rem;
}

.footer-5col-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1.6fr 1fr 1fr 2.1fr;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.footer-col-head {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
}

.footer-link-list a {
    color: #cbd5e1;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-link-list a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-india-cities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
}

.footer-contact-column {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.5rem;
}

.footer-wa-btn {
    background: var(--brand-green);
    color: #ffffff !important;
    padding: 0.55rem 1.15rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.2s ease;
}

.footer-wa-btn:hover {
    background: #1ebc57;
    transform: translateY(-1px);
}

.footer-bottom-copyright-bar {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #64748b;
}

.tour-detail-columns-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
}

@media (max-width: 992px) {
    .tour-detail-columns-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

@media (max-width: 768px) {
    .site-header-boxed {
        position: sticky !important;
        top: 0 !important;
        z-index: 1000 !important;
        width: 100% !important;
    }

    .top-header-bar {
        padding: 0.5rem 0 !important;
        background: #ffffff !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.06) !important;
    }

    .header-inner-container {
        padding: 0 1rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
    }

    .top-brand img {
        max-height: 48px !important;
        width: auto !important;
    }

    .header-center-search-form {
        display: none !important;
    }

    .top-header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        margin-left: auto !important;
    }

    .top-header-actions .btn-header-pill {
        display: none !important;
    }

    .mobile-hamburger-btn {
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.35rem !important;
        background: var(--brand-blue) !important;
        color: #ffffff !important;
        border: none !important;
        padding: 0.45rem 1rem !important;
        border-radius: 50px !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        margin-left: auto !important;
    }

    .secondary-nav-bar {
        display: none !important;
    }

    .breadcrumbs-bar {
        font-size: 0.78rem !important;
        white-space: nowrap !important;
        overflow-x: auto !important;
        padding-bottom: 4px !important;
    }

    .tour-detail-title {
        font-size: 1.35rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.5rem !important;
    }

    .tour-price-header-bar {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0.5rem !important;
        margin-bottom: 1rem !important;
    }

    .tour-price-val {
        font-size: 1.25rem !important;
    }

    .tour-price-header-bar .btn-customise-gold {
        padding: 0.4rem 0.85rem !important;
        font-size: 0.78rem !important;
    }

    .gallery-tripdust-grid {
        grid-template-columns: 1fr !important;
        height: 240px !important;
        border-radius: 16px !important;
        margin-bottom: 1.5rem !important;
    }

    .gallery-side-grid {
        display: none !important;
    }

    .tour-feature-chips-grid {
        gap: 0.45rem !important;
        margin-bottom: 1rem !important;
    }

    .feature-chip-item {
        font-size: 0.72rem !important;
        padding: 0.3rem 0.65rem !important;
    }

    .mobile-hide-extra-chip {
        display: none !important;
    }

    .bottom-sticky-bar {
        padding: 0.6rem 0.85rem !important;
        justify-content: space-between !important;
    }

    .bottom-sticky-info {
        display: none !important;
    }

    .bottom-sticky-actions {
        width: 100% !important;
        justify-content: space-between !important;
        gap: 0.5rem !important;
    }

    .bottom-sticky-actions .btn-header-whatsapp,
    .bottom-sticky-actions .btn-customise-gold {
        flex: 1 !important;
        font-size: 0.78rem !important;
        padding: 0.65rem 0.5rem !important;
        text-align: center !important;
        justify-content: center !important;
    }
    .hero-tripdust {
        min-height: auto !important;
        padding: 4.5rem 1.25rem 3.5rem !important;
    }

    .hero-serif-heading {
        font-size: 2.1rem !important;
        line-height: 1.25 !important;
        margin-bottom: 1rem !important;
    }

    .hero-subtext {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-search-pill-box {
        padding: 0.35rem 0.35rem 0.35rem 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-search-pill-box input {
        font-size: 0.85rem !important;
    }

    .hero-search-pill-box button {
        padding: 0.6rem 1.1rem !important;
        font-size: 0.82rem !important;
    }

    .hero-cta-group {
        flex-direction: column !important;
        width: 100% !important;
        gap: 0.75rem !important;
    }

    .hero-cta-group button, .hero-cta-group a {
        width: 100% !important;
        justify-content: center !important;
    }

    .flight-line-wrapper {
        display: none !important;
    }

    .steps-builder-header {
        padding: 1rem 1.25rem !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        gap: 0.5rem !important;
    }

    .flight-code {
        font-size: 0.8rem !important;
        white-space: nowrap !important;
    }

    .flight-code span {
        display: block !important;
        font-size: 0.65rem !important;
    }

    .contact-grid-container {
        grid-template-columns: 1fr !important;
        gap: 1.75rem !important;
    }

    .mobile-hamburger-btn {
        display: inline-flex !important;
    }

    .top-header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .traveller-reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .footer-5col-container {
        grid-template-columns: 1fr !important;
        gap: 2.25rem !important;
    }

    .footer-bottom-copyright-bar {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

.horizontal-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 45, 128, 0.08) !important;
    border-color: var(--brand-red) !important;
}

/* DESTINATION HUBS RESPONSIVE GRID */
.destination-hubs-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .horizontal-steps-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .destination-hubs-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    .spotlight-hero-card, .standard-city-card, .city-tripdust-card {
        grid-column: span 1 !important;
        height: 200px !important;
        border-radius: 16px !important;
        padding: 0.75rem !important;
    }

    .dest-count-badge {
        font-size: 0.65rem !important;
        padding: 0.25rem 0.55rem !important;
        white-space: normal !important;
        line-height: 1.2 !important;
        max-width: 100% !important;
        display: inline-block !important;
        border-radius: 8px !important;
        word-break: normal !important;
        box-shadow: 0 2px 8px rgba(0, 45, 128, 0.3) !important;
    }

    .dest-popular-tag {
        display: none !important;
    }

    .city-title-bold {
        font-size: 1.15rem !important;
        font-weight: 800 !important;
        margin-bottom: 0.1rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        word-break: normal !important;
    }

    .dest-subtext-p {
        font-size: 0.68rem !important;
        line-height: 1.25 !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .dest-arrow-btn {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.7rem !important;
    }

    /* 4 STEPS FLIGHT BOARD MOBILE RESPONSIVE */
    .steps-builder-header {
        padding: 1rem 1.25rem !important;
    }

    .flight-code {
        font-size: 0.95rem !important;
        white-space: nowrap !important;
    }

    .flight-code span {
        font-size: 0.65rem !important;
    }

    .flight-plane-icon {
        font-size: 1.1rem !important;
    }

    .horizontal-steps-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    .horizontal-step-card {
        padding: 1.15rem 0.75rem !important;
        border-radius: 14px !important;
    }

    .horizontal-step-card h3 {
        font-size: 0.95rem !important;
        margin-bottom: 0.25rem !important;
    }

    .horizontal-step-card p {
        font-size: 0.75rem !important;
        line-height: 1.35 !important;
    }

    .india-city-tabs-scroll {
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 0.5rem !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        padding: 0.25rem 0.5rem 0.85rem !important;
        margin-bottom: 1.25rem !important;
        width: 100% !important;
    }

    .india-city-tabs-scroll::-webkit-scrollbar {
        display: none !important;
    }

    .city-tab-pill {
        padding: 0.45rem 0.85rem !important;
        border-radius: 50px !important;
        gap: 0.45rem !important;
        flex-shrink: 0 !important;
        box-shadow: 0 2px 6px rgba(0,0,0,0.04) !important;
    }

    .city-tab-pill i {
        font-size: 0.85rem !important;
    }

    .tab-city-name {
        font-size: 0.78rem !important;
        font-weight: 800 !important;
    }

    .tab-city-code {
        font-size: 0.62rem !important;
    }

    .india-city-packages-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        width: 100% !important;
    }

    .city-package-card {
        padding: 1.15rem !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 16px rgba(0, 45, 128, 0.05) !important;
    }

    .city-pkg-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        margin-bottom: 0.6rem !important;
        gap: 0.5rem !important;
    }

    .city-pkg-badge {
        font-size: 0.72rem !important;
        padding: 0.25rem 0.65rem !important;
        font-weight: 800 !important;
        border-radius: 50px !important;
    }

    .city-pkg-duration {
        font-size: 0.75rem !important;
        font-weight: 700 !important;
    }

    .city-pkg-title {
        font-size: 1.08rem !important;
        font-weight: 800 !important;
        line-height: 1.35 !important;
        margin-bottom: 0.35rem !important;
    }

    .city-pkg-sub {
        font-size: 0.82rem !important;
        line-height: 1.45 !important;
        margin-bottom: 0.85rem !important;
    }

    .city-pkg-footer {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding-top: 0.75rem !important;
        border-top: 1px dashed #e2e8f0 !important;
        gap: 0.5rem !important;
        flex-wrap: nowrap !important;
    }

    .city-pkg-price-group {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        flex-shrink: 0 !important;
    }

    .city-pkg-price-from {
        font-size: 0.65rem !important;
        color: #64748b !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.3px !important;
        line-height: 1 !important;
        margin-bottom: 2px !important;
    }

    .city-pkg-price-val {
        display: flex !important;
        align-items: baseline !important;
        gap: 3px !important;
        white-space: nowrap !important;
    }

    .city-pkg-price-val strong {
        font-size: 1.15rem !important;
        font-weight: 800 !important;
        color: var(--brand-navy) !important;
        line-height: 1 !important;
    }

    .city-pkg-price-val small {
        font-size: 0.68rem !important;
        color: #64748b !important;
        font-weight: 600 !important;
    }

    .btn-city-wa {
        padding: 0.48rem 0.9rem !important;
        font-size: 0.78rem !important;
        font-weight: 800 !important;
        white-space: nowrap !important;
        border-radius: 50px !important;
        flex-shrink: 0 !important;
    }

    /* POPULAR THIS SEASON FILTER PILLS - MOBILE TOUCH CAROUSEL */
    .filter-tabs-pills {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        gap: 0.5rem !important;
        padding: 0.25rem 0.25rem 0.85rem !important;
        margin-bottom: 1.5rem !important;
        width: 100% !important;
    }

    .filter-tabs-pills::-webkit-scrollbar {
        display: none !important;
    }

    .filter-tabs-pills .tab-pill {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        padding: 0.45rem 0.95rem !important;
        font-size: 0.82rem !important;
        border-radius: 50px !important;
        gap: 0.4rem !important;
    }

    .filter-tabs-pills .tab-pill i {
        font-size: 0.85rem !important;
    }

    .customise-cta-wa-link {
        font-size: 0.82rem !important;
        white-space: nowrap !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 0.35rem !important;
        color: var(--brand-navy) !important;
        text-decoration: none !important;
        max-width: 100% !important;
    }

    .customise-cta-wa-link i {
        color: #25d366 !important;
        font-size: 1.15rem !important;
        flex-shrink: 0 !important;
        vertical-align: middle !important;
    }

    /* SEASONAL CLIMATE GUIDE / WEATHER WIDGET MOBILE OPTIMIZATION */
    .weather-minimalist-wrapper {
        padding: 1.25rem 1rem !important;
        border-radius: 18px !important;
        margin-bottom: 2rem !important;
        box-shadow: 0 4px 18px rgba(0, 45, 128, 0.04) !important;
    }

    .weather-minimalist-header {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
        margin-bottom: 1.15rem !important;
    }

    .weather-section-subtitle {
        font-size: 0.68rem !important;
        letter-spacing: 1px !important;
        margin-bottom: 0.2rem !important;
    }

    .weather-section-title {
        font-size: 1.3rem !important;
        line-height: 1.25 !important;
    }

    .weather-minimalist-legend {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.4rem !important;
        width: 100% !important;
    }

    .legend-pill {
        font-size: 0.72rem !important;
        padding: 0.25rem 0.65rem !important;
        gap: 0.35rem !important;
    }

    .weather-month-grid-modern {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.5rem !important;
        width: 100% !important;
    }

    .month-pill-card {
        padding: 0.65rem 0.25rem !important;
        border-radius: 12px !important;
        gap: 0.25rem !important;
    }

    .month-pill-name {
        font-size: 0.8rem !important;
        font-weight: 800 !important;
    }

    .month-pill-status {
        font-size: 0.68rem !important;
        font-weight: 700 !important;
        gap: 3px !important;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .weather-month-grid-modern {
        grid-template-columns: repeat(6, 1fr) !important;
    }
}

/* DESKTOP HEADER SPECIFIC (min-width: 769px) */
@media (min-width: 769px) {
    .header-inner-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        max-width: 1280px !important;
        margin: 0 auto !important;
        width: 100% !important;
        padding: 0 1.5rem !important;
    }

    .top-brand {
        display: flex !important;
        align-items: center !important;
        text-decoration: none !important;
        flex-shrink: 0 !important;
    }

    .top-header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 0.75rem !important;
        flex-shrink: 0 !important;
    }

    .mobile-hamburger-btn {
        display: none !important;
    }

    .btn-header-whatsapp, .btn-header-call {
        display: inline-flex !important;
    }

    .header-center-search-form {
        flex-grow: 1 !important;
        max-width: 460px !important;
        margin: 0 1.5rem !important;
        display: block !important;
    }
}

/* MOBILE HEADER SPECIFIC (max-width: 768px) */
@media (max-width: 768px) {
    .top-header-bar {
        padding: 0.45rem 0 !important;
        width: 100% !important;
    }

    .header-inner-container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 0.85rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .top-brand {
        display: flex !important;
        align-items: center !important;
        flex-shrink: 1 !important;
        min-width: 0 !important;
        margin-right: 0.5rem !important;
    }

    .top-brand img, .header-logo-img {
        height: 38px !important;
        max-height: 40px !important;
        width: auto !important;
        object-fit: contain !important;
        display: block !important;
    }

    .top-brand-title {
        font-size: 1.05rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .top-brand-sub {
        font-size: 0.55rem !important;
        white-space: nowrap !important;
    }

    .top-header-actions {
        display: flex !important;
        align-items: center !important;
        flex-shrink: 0 !important;
        margin-left: auto !important;
    }

    .mobile-hamburger-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.35rem !important;
        height: 36px !important;
        padding: 0.35rem 0.85rem !important;
        font-size: 0.82rem !important;
        font-weight: 800 !important;
        background: #002D80 !important;
        color: #ffffff !important;
        border-radius: 50px !important;
        border: none !important;
        flex-shrink: 0 !important;
        cursor: pointer !important;
        box-shadow: 0 2px 8px rgba(0, 45, 128, 0.25) !important;
    }

    .currency-switcher-dropdown,
    .btn-header-whatsapp,
    .btn-header-call,
    .header-center-search-form {
        display: none !important;
    }

    .secondary-nav-bar {
        display: none !important;
    }
    .hero-serif-heading {
        font-size: 2.4rem;
    }
    .why-book-grid {
        grid-template-columns: 1fr;
    }
    .gallery-tripdust-grid {
        grid-template-columns: 1fr !important;
        height: auto !important;
        gap: 0.5rem !important;
    }
    .gallery-big-item {
        height: 250px !important;
        border-radius: 16px !important;
    }
    .gallery-side-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: auto !important;
        gap: 0.5rem !important;
        height: auto !important;
        margin-top: 0.5rem !important;
    }
    .gallery-small-item {
        height: 110px !important;
        border-radius: 12px !important;
    }
    .weather-month-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .bottom-sticky-bar {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    /* PROFESSIONAL MOBILE FOOTER STYLING */
    .footer-5col-wrapper {
        padding: 3rem 1.25rem 2rem !important;
        background: linear-gradient(180deg, #051329 0%, #020b18 100%) !important;
    }

    .footer-5col-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .footer-5col-container > div {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 1.75rem;
    }

    .footer-5col-container > div:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-col-head {
        font-size: 0.9rem !important;
        font-weight: 800 !important;
        letter-spacing: 1.2px !important;
        text-transform: uppercase !important;
        color: #38bdf8 !important;
        margin-bottom: 1rem !important;
    }

    .footer-link-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.65rem !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }

    .footer-link-list li a {
        color: #cbd5e1 !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        transition: color 0.2s ease !important;
    }

    .footer-india-cities-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.65rem 1.5rem !important;
    }

    .footer-contact-column {
        background: rgba(255, 255, 255, 0.04);
        padding: 1.5rem !important;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-bottom-copyright-bar {
        margin-top: 2rem !important;
        padding-top: 1.5rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        flex-direction: column !important;
        gap: 1rem !important;
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .city-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .city-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .horizontal-steps-grid {
        grid-template-columns: 1fr !important;
    }
    .activity-cards-grid {
        grid-template-columns: 1fr !important;
    }
}

/* CUSTOMISE PACKAGE MODAL STYLES & MOBILE RESPONSIVENESS */
.custom-modal-box {
    border-radius: 24px;
    max-width: 840px;
    width: 95%;
    padding: 0 !important;
    overflow: hidden;
    border: 1px solid var(--border-light);
    position: relative;
    max-height: 92vh;
    overflow-y: auto;
}

.customise-modal-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
}

.customise-modal-sidebar {
    background: linear-gradient(135deg, #002D80 0%, #051329 100%);
    padding: 2.5rem 1.75rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.specialist-online-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.4);
    color: #4ade80;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.72rem;
    margin-bottom: 1.5rem;
}

.customise-sidebar-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 0.85rem;
}

.customise-sidebar-desc {
    color: #cbd5e1;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.customise-sidebar-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    font-size: 0.85rem;
    color: #e2e8f0;
    font-weight: 600;
}

.customise-sidebar-footer-note {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 0.78rem;
    color: #94a3b8;
}

.customise-modal-form-wrap {
    padding: 2.25rem 2rem;
    background: #ffffff;
}

.customise-form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.customise-form-grid-guests {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0.85rem;
}

/* MEDIA QUERIES FOR MOBILE DEVICES (<= 768px) */
@media (max-width: 768px) {
    .custom-modal-box {
        border-radius: 20px;
        width: 92%;
        margin: 1rem auto;
        max-height: 90vh;
    }

    .customise-modal-grid {
        grid-template-columns: 1fr !important;
    }

    .customise-modal-sidebar {
        padding: 1.5rem 1.25rem !important;
    }

    .customise-sidebar-title {
        font-size: 1.35rem !important;
        margin-bottom: 0.35rem !important;
    }

    .customise-sidebar-desc {
        font-size: 0.82rem !important;
        margin-bottom: 0.75rem !important;
    }

    .customise-sidebar-features {
        display: none !important; /* Hide bullet list on mobile so form comes up immediately */
    }

    .customise-sidebar-footer-note {
        display: none !important;
    }

    .specialist-online-tag {
        margin-bottom: 0.5rem !important;
        padding: 0.25rem 0.65rem !important;
        font-size: 0.68rem !important;
    }

    .customise-modal-form-wrap {
        padding: 1.5rem 1.25rem !important;
    }

    .customise-form-grid-2,
    .customise-form-grid-guests {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    #customiseModal .modal-close {
        top: 12px !important;
        right: 12px !important;
        width: 34px !important;
        height: 34px !important;
        font-size: 1.5rem !important;
        background: #ffffff !important;
        color: #0f172a !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
        z-index: 100 !important;
        position: absolute !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

/* FLOATING WHATSAPP BUTTON STYLES */
.whatsapp-float-container {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none !important;
}

.whatsapp-float-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff !important;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: wa-pulse-ring 2s infinite;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1) rotate(6deg);
    background-color: #20ba5a;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-tooltip {
    background: #0f172a;
    color: #ffffff;
    padding: 0.5rem 0.9rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.whatsapp-float-tooltip .online-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
    display: inline-block;
}

@keyframes wa-pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* RESPONSIVE FLOATING WHATSAPP POSITIONING */
body.has-tour-sticky-bar .whatsapp-float-container {
    bottom: 90px !important;
}

@media (max-width: 768px) {
    .whatsapp-float-container {
        bottom: 20px;
        right: 16px;
    }
    .whatsapp-float-btn {
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
    .whatsapp-float-tooltip {
        display: none;
    }
    
    body.has-tour-sticky-bar .whatsapp-float-container {
        bottom: 90px !important;
    }
}

/* CURRENCY SWITCHER DROPDOWN STYLES */
.currency-switcher-dropdown {
    position: relative;
    display: inline-block;
}

.currency-switcher-btn {
    background: #f8fafc;
    color: #0f172a;
    border: 1.5px solid #cbd5e1;
    border-radius: 50px;
    padding: 0.45rem 0.95rem;
    font-size: 0.85rem;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.currency-switcher-btn:hover {
    background: #ffffff;
    border-color: var(--brand-blue);
    color: var(--brand-blue);
    box-shadow: 0 4px 12px rgba(0, 45, 128, 0.12);
}

.currency-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(0, 45, 128, 0.18);
    padding: 0.5rem;
    list-style: none;
    min-width: 180px;
    display: none;
    z-index: 10000;
}

.currency-dropdown-menu.active {
    display: block;
    animation: fadeInDown 0.2s ease;
}

.currency-dropdown-menu li {
    padding: 0.65rem 0.9rem;
    border-radius: 10px;
    color: #0f172a;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.currency-dropdown-menu li:hover {
    background: #eff6ff;
    color: var(--brand-blue);
}

.currency-dropdown-menu li small {
    color: #64748b;
    font-weight: 600;
    font-size: 0.75rem;
}

/* ==========================================================================
   PUBLIC WEBSITE PAGINATION STYLING
   ========================================================================== */
.pagination, ul.pagination {
    display: inline-flex !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
    gap: 0.5rem !important;
    align-items: center !important;
    justify-content: center !important;
}

.pagination li,
.pagination .page-item {
    list-style: none !important;
    margin: 0 !important;
}

.pagination .page-link,
.pagination span,
.pagination a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 42px !important;
    height: 42px !important;
    padding: 0 1rem !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.pagination .page-item.active .page-link,
.pagination .active span,
.pagination .active .page-link {
    background: #002D80 !important;
    color: #ffffff !important;
    border-color: #002D80 !important;
    box-shadow: 0 4px 14px rgba(0, 45, 128, 0.3) !important;
}

.pagination .page-item.disabled .page-link,
.pagination .disabled span,
.pagination .disabled .page-link {
    color: #cbd5e1 !important;
    background: #f8fafc !important;
    border-color: #e2e8f0 !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
}

.pagination .page-link:hover:not(.disabled) {
    background: #eff6ff !important;
    border-color: #93c5fd !important;
    color: #0284c7 !important;
    transform: translateY(-2px) !important;
}

nav[role="navigation"] svg {
    max-width: 18px !important;
    max-height: 18px !important;
    width: 16px !important;
    height: 16px !important;
    display: inline-block !important;
}




