/* ============================================
   VN TIMES TRAVEL - Custom CSS
   ============================================ */

/* ---- HEADER ---- */
.vtt-header {
    background-color: #ffffff;
    position: relative;
    z-index: 100;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.vtt-header * {
    box-sizing: border-box;
}

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


.vtt-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.vtt-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.vtt-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vtt-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vtt-logo-text strong {
    color: #0056b3;
    font-size: 22px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.15;
    letter-spacing: 0.3px;
}

.vtt-logo-text>span {
    color: #ff6a00;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1px;
    font-style: italic;
}

/* Navigation */
.vtt-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.vtt-nav>ul {
    display: flex;
    gap: 35px;
    align-items: center;
}

.vtt-nav>ul>li {
    position: relative;
}

.vtt-nav>ul>li>a {
    color: #1a2b4c;
    font-weight: 600;
    font-size: 16px;
    padding: 28px 0;
    display: flex;
    align-items: center;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
}

.vtt-nav>ul>li>a:hover,
.vtt-nav>ul>li.active>a {
    color: #0066cc;
}

.vtt-nav>ul>li.active>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #0066cc;
    border-radius: 3px 3px 0 0;
}

.vtt-nav>ul>li>a i {
    font-size: 11px;
    margin-left: 5px;
    color: #999;
    transition: transform 0.3s;
}

.vtt-nav>ul>li.has-submenu:hover>a i {
    transform: rotate(180deg);
}

/* Submenu Dropdown */
.vtt-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: -10px;
    min-width: 220px;
    background-color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    overflow: hidden;
    z-index: 200;
    border: 1px solid #f0f0f0;
}

.vtt-nav .has-submenu:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vtt-nav .sub-menu li a {
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    display: block;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s;
}

.vtt-nav .sub-menu li:last-child a {
    border-bottom: none;
}

.vtt-nav .sub-menu li a:hover {
    background-color: #f0f7ff;
    color: #0066cc;
    padding-left: 24px;
}

/* Hotline */
.vtt-hotline {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.vtt-hotline-icon {
    width: 42px;
    height: 42px;
    background-color: #e52b2b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.vtt-hotline-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vtt-hotline-text {
    font-size: 14px;
    color: #0066CD;
    font-weight: 600;
    line-height: 1.3;
}

.vtt-hotline-number {
    font-size: 22px;
    color: #e52b2b;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.3px;
}

.vtt-hotline-time {
    font-size: 13px;
    color: #0066cc;
    margin-top: 0;
    line-height: 1.3;
}

/* ---- HERO SECTION ---- */
.vtt-hero {
    position: relative;
    height: 460px;
    background-image: url('https://images.unsplash.com/photo-1493976040374-85c8e12f0c0e?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center top;
    font-family: 'Segoe UI', sans-serif;
}

.vtt-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 40, 100, 0.45) 0%, rgba(0, 0, 0, 0.05) 60%);
}

.vtt-hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 55px;
}

.vtt-hero-text {
    color: white;
}

.vtt-hero-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 32px;
    margin-bottom: -10px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
    font-weight: 700;
    font-style: italic;
}

.vtt-hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 72px;
    margin: 0 0 14px 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.35);
    font-weight: 700;
    letter-spacing: 1px;
}

.vtt-hero-highlight {
    display: inline-block;
    background-color: #0b5baf;
    color: white;
    padding: 10px 30px;
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    clip-path: polygon(2% 0, 100% 0%, 98% 100%, 0% 100%);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.vtt-hero-highlight span {
    display: inline-block;
}

.vtt-hero-bottom {
    position: absolute;
    bottom: 65px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.vtt-hero-features {
    display: flex;
    gap: 35px;
    color: white;
}

.vtt-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vtt-feature-icon {
    font-size: 26px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

.vtt-feature-info {
    display: flex;
    flex-direction: column;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.vtt-feature-info strong {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.vtt-feature-info span {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
}

.vtt-hero-quote {
    color: white;
    font-family: 'Dancing Script', cursive;
    font-size: 26px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: 600;
    font-style: italic;
    text-align: right;
    line-height: 1.4;
}

.vtt-hero-quote i {
    font-size: 20px;
    margin-left: 6px;
    color: #ff6b6b;
}

/* ---- SEARCH SECTION ---- */
.vtt-search-section {
    position: relative;
    margin-top: -50px;
    z-index: 20;
    /* padding-bottom: 50px; */
    font-family: 'Segoe UI', sans-serif;
}

.vtt-search-widget {
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 35, 85, 0.18);
}

/* Tabs row */
.vtt-tabs-row {
    display: flex;
    align-items: flex-end;
    position: relative;
    z-index: 10;
}

.vtt-tabs-wrap {
    background: white;
    border-radius: 16px 0 0 0;
    padding: 16px 16px 0 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.vtt-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #0F294D;
    background: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
}

.vtt-tab svg {
    color: #0066FF;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.vtt-tab:hover:not(.active) {
    background-color: #f1f5f9;
}

.vtt-tab.active {
    background: #0066FF;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 102, 255, 0.25);
}

.vtt-tab.active svg {
    color: white;
}

/* Tab arrow */
.vtt-tab-arrow {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #0066FF;
}

/* S-curve connector */
.vtt-curve-connector {
    display: flex;
    align-items: flex-end;
    height: 56px;
    margin-left: -1px;
    flex: 1;
    position: relative;
    z-index: 10;
}

.vtt-curve-svg {
    width: 56px;
    height: 56px;
    display: block;
    flex-shrink: 0;
}

.vtt-curve-bar {
    flex: 1;
    height: 16px;
    background: white;
    border-radius: 0 16px 0 0;
}

/* Search form body */
.vtt-search-body {
    background: white;
    border-radius: 0 0 16px 16px;
    padding: 16px 20px 20px;
    margin-top: -1px;
    position: relative;
    z-index: 20;
}

.vtt-search-grid {
    display: grid;
    grid-template-columns: 3fr 2fr 2fr 3fr 2fr;
    gap: 12px;
    align-items: stretch;
}

.vtt-field {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 14px;
    background: white;
    transition: all 0.2s;
    cursor: text;
    min-height: 50px;
}

.vtt-field:hover {
    border-color: #cbd5e1;
}

.vtt-field:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 1px #3b82f6;
}

.vtt-field svg {
    color: #64748b;
    flex-shrink: 0;
}

.vtt-field-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.vtt-field-text label {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    margin-bottom: 0px;
}

.vtt-field-text input {
    border: none;
    outline: none;
    font-size: 14px;
    color: #1e293b;
    font-family: 'Segoe UI', sans-serif;
    width: 100%;
    padding: 0;
    background: transparent;
    margin-top: 1px;
}

.vtt-field-text input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

/* Search button */
.vtt-field--btn {
    display: flex;
    align-items: stretch;
}

.vtt-search-btn {
    width: 100%;
    min-height: 50px;
    background-color: #E60023;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    font-family: 'Segoe UI', sans-serif;
    white-space: nowrap;
    padding: 0 16px;
    box-shadow: 0 4px 12px rgba(230, 0, 35, 0.25);
}

.vtt-search-btn svg {
    flex-shrink: 0;
}

.vtt-search-btn:hover {
    background-color: #b91c1c;
    box-shadow: 0 6px 16px rgba(230, 0, 35, 0.35);
}

/* ---- COUNTRY SECTION ---- */
.vtt-country-section {
    padding: 30px 0 20px;
    font-family: 'Segoe UI', sans-serif;
}

.vtt-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.vtt-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vtt-section-title h2 {
    font-size: 20px;
    font-weight: 700;
    color: #0066FF;
    margin: 0;
    text-transform: uppercase;
}

.vtt-title-decorated {
    gap: 12px;
}

.vtt-title-decorated .vtt-title-icon {
    width: 44px;
    height: 44px;
    background: #e6f0ff;
    color: #0066FF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.15);
}

.vtt-title-decorated h2 {
    font-size: 24px;
    color: #1a2b4c;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.vtt-view-all {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #0066FF;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.vtt-view-all:hover {
    opacity: 0.8;
}

.vtt-country-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.vtt-country-grid::-webkit-scrollbar {
    display: none;
}

.vtt-country-item {
    display: block;
    width: calc((100% - 96px) / 9);
    min-width: 120px;
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    text-decoration: none !important;
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}

.vtt-country-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.vtt-country-img {
    width: 100%;
    aspect-ratio: 1.1 / 1;
    overflow: hidden;
}

.vtt-country-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.vtt-country-item:hover .vtt-country-img img {
    transform: scale(1.05);
}

.vtt-country-info {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vtt-country-flag {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #f0f0f0;
}

.vtt-country-text {
    display: flex;
    flex-direction: column;
}

.vtt-country-text h3 {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: #0F294D;
    line-height: 1.2;
}

.vtt-country-text span {
    font-size: 11px;
    color: #64748b;
    margin-top: 2px;
}

/* ---- SCHEDULE SECTION ---- */
.vtt-schedule-section {
    padding: 20px 0 50px;
    font-family: 'Segoe UI', sans-serif;
    background: #f8fafd;
}

.vtt-schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
}

.vtt-schedule-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.vtt-schedule-title-row h2 {
    font-size: 22px;
    font-weight: 700;
    color: #0F294D;
    margin: 0;
    text-transform: uppercase;
}

.vtt-schedule-title-row h2 span {
    color: #E60023;
}

.vtt-schedule-title-area p {
    font-size: 14px;
    color: #475569;
    margin: 0;
}

.vtt-schedule-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.vtt-sort-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    color: #475569;
    cursor: pointer;
}

.vtt-sort-select {
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    outline: none;
    padding: 0;
    margin: 0;
}

.vtt-view-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vtt-view-label {
    font-size: 13px;
    color: #475569;
}

.vtt-view-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.vtt-view-btn.active {
    background: #0066FF;
    color: white;
    border-color: #0066FF;
}

.vtt-schedule-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Grid View Styles */
.vtt-schedule-list.vtt-view-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.vtt-schedule-list.vtt-view-grid.vtt-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.vtt-schedule-list.vtt-view-grid .vtt-tour-card {
    flex-direction: column;
    padding: 16px;
    gap: 16px;
    height: 100%;
}

.vtt-schedule-list.vtt-view-grid .vtt-tour-image {
    width: 100%;
    height: 160px;
}

.vtt-schedule-list.vtt-view-grid .vtt-tour-content {
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.vtt-schedule-list.vtt-view-grid .vtt-tour-main {
    border-right: none;
    border-bottom: 1px dashed #e2e8f0;
    padding-right: 0;
    padding-bottom: 16px;
}

.vtt-schedule-list.vtt-view-grid .vtt-tour-flights {
    border-right: none;
    border-bottom: 1px dashed #e2e8f0;
    padding-right: 0;
    padding-bottom: 16px;
}

.vtt-schedule-list.vtt-view-grid .vtt-tour-pricing {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    justify-content: flex-end;
    margin-top: auto;
}

.vtt-schedule-list.vtt-view-grid .vtt-price-group {
    align-items: flex-start;
}

.vtt-schedule-list.vtt-view-grid .vtt-status-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
}

/* Footer as a card in Grid View */
/* Footer in Grid View */
.vtt-schedule-list.vtt-view-grid .vtt-schedule-footer {
    grid-column: 1 / -1;
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vtt-schedule-list.vtt-view-grid .vtt-schedule-footer .vtt-btn-outline {
    background: #edf4ff;
    border: 1px solid #0066FF;
    color: #0066FF;
}

.vtt-schedule-list.vtt-view-grid .vtt-schedule-footer .vtt-btn-outline:hover {
    background: #0066FF;
    color: white;
}

@media (max-width: 1200px) {

    .vtt-schedule-list.vtt-view-grid,
    .vtt-schedule-list.vtt-view-grid.vtt-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .vtt-schedule-list.vtt-view-grid,
    .vtt-schedule-list.vtt-view-grid.vtt-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .vtt-schedule-list.vtt-view-grid,
    .vtt-schedule-list.vtt-view-grid.vtt-grid-3 {
        grid-template-columns: 1fr;
    }
}

.vtt-tour-card {
    display: flex;
    gap: 20px;
    background: white;
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    padding: 16px;
    transition: box-shadow 0.2s;
}

.vtt-tour-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.vtt-tour-image {
    width: 220px;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.vtt-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vtt-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 12px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    z-index: 2;
}

.vtt-badge-orange {
    background: #f97316;
}

.vtt-badge-red {
    background: #ef4444;
}

.vtt-badge-blue {
    background: #3b82f6;
}

.vtt-heart-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}

.vtt-heart-btn:hover {
    background: rgba(0, 0, 0, 0.6);
}

.vtt-tour-content {
    display: flex;
    flex: 1;
    gap: 24px;
}

.vtt-tour-main {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-right: 1px dashed #e2e8f0;
    padding-right: 20px;
}

.vtt-tour-code {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.vtt-tour-name {
    font-size: 16px;
    font-weight: 700;
    color: #0F294D;
    line-height: 1.4;
    margin: 0 0 4px 0;
}

.vtt-tour-dep {
    display: inline-block;
    align-self: flex-start;
    background: #fde047;
    color: #0F294D;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 4px;
}

.vtt-tour-program {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.vtt-prog-lbl {
    font-size: 14px;
    font-weight: 600;
    color: #0F294D;
}

.vtt-tour-flights {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4px 20px 4px 0;
    border-right: 1px dashed #e2e8f0;
}

.vtt-flight-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 8px 0;
}

.vtt-flight-leg {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vtt-flight-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.vtt-flight-head strong {
    color: #0F294D;
}

.vtt-flight-head span {
    color: #64748b;
}

.vtt-flight-mid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vtt-time {
    font-size: 15px;
    font-weight: 600;
    color: #0F294D;
}

.vtt-airline-logo {
    height: 16px;
    object-fit: contain;
}

.vtt-flight-route {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

.vtt-route-line {
    flex: 1;
    height: 2px;
    background: #FFA500;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vtt-route-line::before,
.vtt-route-line::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FFA500;
    border-radius: 50%;
}

.vtt-route-line::before {
    left: 0;
}

.vtt-route-line::after {
    right: 0;
}

.vtt-route-line svg {
    position: absolute;
    background: white;
    padding: 0 4px;
}

.vtt-tour-pricing {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.vtt-price-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}

.vtt-price-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.vtt-price-val {
    color: #E60023;
    font-weight: 700;
}

.vtt-price-adult .vtt-price-val {
    font-size: 18px;
}

.vtt-price-item:not(.vtt-price-adult) .vtt-price-val {
    font-size: 14px;
}

.vtt-price-lbl {
    font-size: 12px;
    color: #64748b;
    width: 70px;
}

.vtt-status-btn {
    padding: 8px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Segoe UI', sans-serif;
    color: #166534;
}

.vtt-status-green {
    background: #bbf7d0;
    color: #166534;
}

.vtt-status-orange {
    background: #fef08a;
    color: #a16207;
}

.vtt-status-gray {
    background: #f1f5f9;
    color: #64748b;
}

.vtt-status-red {
    background: #fee2e2;
    color: #991b1b;
}

.vtt-schedule-footer {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.vtt-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 1px solid #0066FF;
    border-radius: 8px;
    color: #0066FF;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s;
}

.vtt-btn-outline:hover {
    background: #0066FF;
    color: white;
}

/* ---- PROMO BANNER SECTION ---- */
.vtt-promo-section {
    padding: 0 0 50px 0;
    background: #f8fafd;
    font-family: 'Segoe UI', sans-serif;
}

.vtt-promo-banner {
    background-image: url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    padding: 24px 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.vtt-promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0.95) 100%);
    z-index: 1;
}

.vtt-promo-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vtt-promo-left h2 {
    color: #0066FF;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.vtt-promo-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform: rotate(-3deg);
}

.vtt-promo-script {
    font-family: 'Dancing Script', cursive;
    color: #E60023;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.vtt-promo-script-sub {
    font-family: 'Dancing Script', cursive;
    color: #E60023;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vtt-promo-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.vtt-promo-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vtt-promo-icon {
    width: 40px;
    height: 40px;
    background: #E60023;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vtt-promo-info {
    display: flex;
    flex-direction: column;
}

.vtt-promo-info span {
    font-size: 13px;
    color: #0F294D;
    font-weight: 600;
}

.vtt-promo-info strong {
    font-size: 20px;
    color: #E60023;
    font-weight: 700;
    line-height: 1.2;
}

.vtt-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0066FF;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none !important;
    font-size: 15px;
    transition: background 0.2s;
}

.vtt-promo-btn:hover {
    background: #0052cc;
    color: white;
}

/* ---- FOOTER SECTION ---- */
.vtt-footer {
    background: white;
    font-family: 'Segoe UI', sans-serif;
    border-top: 1px solid #e2e8f0;
}

.vtt-footer-inner {
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
    gap: 30px;
}

.vtt-footer-col {
    display: flex;
    flex-direction: column;
}

.vtt-col-brand {
    width: 250px;
}

.vtt-footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    margin-bottom: 24px;
}

.vtt-footer-social {
    display: flex;
    gap: 12px;
}

.vtt-social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none !important;
    font-size: 14px;
    transition: opacity 0.2s;
}

.vtt-social-icon:hover {
    opacity: 0.8;
}

.vtt-fb {
    background: #0066FF;
}

.vtt-yt {
    background: #FF0000;
}

.vtt-tt {
    background: #000000;
}

.vtt-ig {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.vtt-footer-col h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0F294D;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.vtt-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vtt-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

.vtt-contact-list i {
    color: #0066FF;
    margin-top: 3px;
    width: 14px;
    text-align: center;
}

.vtt-contact-list a {
    color: #0066FF;
    text-decoration: none;
}

.vtt-text-blue {
    color: #0066FF;
}

.vtt-col-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vtt-col-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.vtt-col-links a i {
    font-size: 11px;
    color: #cbd5e1;
}

.vtt-col-links a:hover {
    color: #0066FF;
}

.vtt-col-newsletter {
    width: 280px;
}

.vtt-newsletter-form {
    display: flex;
    margin-bottom: 12px;
}

.vtt-newsletter-form input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px 0 0 6px;
    font-size: 14px;
    outline: none;
}

.vtt-newsletter-form input:focus {
    border-color: #0066FF;
}

.vtt-newsletter-form button {
    background: #0066FF;
    color: white;
    border: none;
    padding: 0 16px;
    border-radius: 0 6px 6px 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.vtt-newsletter-form button:hover {
    background: #0052cc;
}

.vtt-newsletter-text {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.vtt-footer-bottom {
    background: #e6f0ff;
    padding: 16px 0;
}

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

.vtt-copyright {
    font-size: 14px;
    color: #475569;
}

.vtt-slogan-bottom {
    font-family: 'Dancing Script', cursive;
    font-size: 22px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ---- RESPONSIVE ---- */

/* Desktop Large */
/* =========================================
   TOUR DETAIL PAGE
   ========================================= */
.vtt-page-wrapper {
    background: #f8fafd;
    padding-bottom: 50px;
}

.vtt-breadcrumb {
    padding: 20px 0;
    font-size: 14px;
    color: #64748b;
}

.vtt-breadcrumb a {
    color: #0066FF;
    text-decoration: none;
}

.vtt-breadcrumb-sep {
    margin: 0 8px;
    color: #cbd5e1;
}

.vtt-detail-header {
    background: white;
    padding: 24px 0 32px;
    border-bottom: 1px solid #e2e8f0;
}

.vtt-detail-title-wrap {
    margin-bottom: 24px;
}

.vtt-detail-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.vtt-detail-badges .vtt-badge {
    position: static;
    display: inline-flex;
    align-items: center;
}

.vtt-detail-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.vtt-detail-meta {
    display: flex;
    gap: 24px;
    color: #475569;
    font-size: 15px;
}

.vtt-detail-meta i {
    color: #0066FF;
    margin-right: 6px;
}

.vtt-detail-gallery {
    margin-bottom: 24px;
}

.vtt-gallery-main {
    border-radius: 12px;
    overflow: hidden;
}

.vtt-gallery-main .js-slider-main img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.vtt-gallery-thumbs {
    margin-top: 15px;
}

.vtt-thumb-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.vtt-thumb-item>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gallery Overlays */
.vtt-slide-banner {
    position: absolute;
    bottom: 20px;
    left: 0;
    z-index: 10;
    background: rgba(220, 140, 20, 0.9);
    padding: 10px 30px 10px 20px;
    border-radius: 0 30px 30px 0;
    border: 2px solid #ffc107;
    border-left: none;
}

.vtt-slide-banner-title {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.vtt-slide-banner-subtitle {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.vtt-main-logo {
    position: absolute;
    top: 0;
    left: 20px;
    z-index: 10;
    background: #fff;
    padding: 5px 15px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.vtt-thumb-logo {
    position: absolute;
    top: 0;
    left: 10px;
    z-index: 10;
    background: #fff;
    padding: 2px 6px;
    border-radius: 0 0 4px 4px;
}

.vtt-thumb-banner {
    position: absolute;
    bottom: 8px;
    left: 0;
    z-index: 10;
    background: rgba(220, 140, 20, 0.9);
    padding: 2px 8px;
    border-radius: 0 8px 8px 0;
    border: 1px solid #ffc107;
    border-left: none;
}

.vtt-thumb-banner-title {
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.vtt-gallery-more {
    cursor: pointer;
}

.vtt-gallery-more::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.vtt-gallery-more span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 600;
    font-size: 18px;
    z-index: 1;
}

.vtt-detail-content-wrap {
    padding: 40px 0;
}

.vtt-detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.vtt-detail-main,
.vtt-detail-sidebar {
    min-width: 0;
}

.vtt-content-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.vtt-box-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 24px 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

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

.vtt-highlight-list li {
    position: relative;
    margin-bottom: 12px;
    color: #334155;
    line-height: 1.6;
}

.vtt-itinerary-item {
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.vtt-itinerary-day {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: #f8fafd;
    cursor: pointer;
    user-select: none;
}

.vtt-day-num {
    background: #0066FF;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-right: 16px;
}

.vtt-day-title {
    flex: 1;
    font-weight: 600;
    color: #1e293b;
}

.vtt-day-icon {
    transition: transform 0.3s;
}

.vtt-itinerary-day.active .vtt-day-icon {
    transform: rotate(180deg);
}

.vtt-itinerary-content {
    display: none;
    padding: 20px;
    color: #475569;
    line-height: 1.6;
    border-top: 1px solid #e2e8f0;
}

.vtt-itinerary-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 16px 0;
}

.vtt-policy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vtt-policy-col h3 {
    font-size: 16px;
    margin-bottom: 16px;
}

.vtt-policy-col ul {
    padding-left: 20px;
    color: #475569;
    line-height: 1.6;
}

.vtt-policy-col ul li {
    margin-bottom: 8px;
}

.vtt-sidebar-inner {
    position: sticky;
    top: 20px;
}

.vtt-sidebar-box {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.vtt-sidebar-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #1e293b;
}

.vtt-flight-info {
    margin-bottom: 20px;
}

.vtt-flight-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vtt-flight-point {
    text-align: left;
}

.vtt-flight-point.text-right {
    text-align: right;
}

.vtt-flight-time {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.vtt-flight-code {
    font-size: 13px;
    color: #64748b;
}

.vtt-flight-path {
    flex: 1;
    text-align: center;
    padding: 0 16px;
}

.vtt-path-label {
    font-size: 12px;
    color: #0066FF;
    font-weight: 600;
}

.vtt-path-line {
    position: relative;
    height: 1px;
    background: #cbd5e1;
    margin: 8px 0;
}

.vtt-path-line i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0066FF;
    background: white;
    padding: 0 4px;
}

.vtt-path-airline {
    font-size: 12px;
    color: #64748b;
}

.vtt-booking-prices {
    margin-bottom: 24px;
}

.vtt-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #e2e8f0;
}

.vtt-price-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.vtt-price-row span {
    color: #475569;
}

.vtt-price-row strong {
    font-size: 16px;
    color: #1e293b;
}

.vtt-price-row strong.vtt-text-primary {
    color: #ff3b3b;
    font-size: 20px;
}

.vtt-booking-actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 16px;
}

.vtt-booking-actions button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.vtt-btn-primary {
    background: #0066FF;
    color: white;
    border: none;
}

.vtt-btn-primary:hover {
    background: #0052cc;
}

.vtt-booking-hotline {
    text-align: center;
    font-size: 14px;
    color: #64748b;
}

.vtt-booking-hotline a {
    color: #ff3b3b;
    font-weight: 700;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .vtt-detail-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vtt-detail-title {
        font-size: 24px;
    }

    .vtt-detail-meta {
        flex-direction: column;
        gap: 12px;
    }

    .vtt-policy-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1400px) {
    .vtt-nav>ul {
        gap: 20px;
    }

    .vtt-nav>ul>li>a {
        font-size: 14px;
    }

    .vtt-hero-features {
        gap: 25px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .vtt-nav>ul {
        gap: 14px;
    }

    .vtt-nav>ul>li>a {
        font-size: 13px;
    }

    .vtt-hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        bottom: 50px;
    }

    .vtt-hero-quote {
        display: none;
    }

    .vtt-search-form {
        flex-wrap: wrap;
    }

    .vtt-search-row {
        flex: 1 1 100%;
    }

    .vtt-search-btn {
        flex: 1 1 100%;
    }
}

/* Tablet */
/* Mobile Toggle */
.vtt-mobile-toggle {
    display: none;
    background: #f1f5f9;
    border: none;
    font-size: 20px;
    color: #0f172a;
    cursor: pointer;
    padding: 0;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.vtt-mobile-toggle.active {
    background: #0066cc;
    color: white;
}

@media (max-width: 992px) {
    .vtt-header-inner {
        height: auto;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        gap: 12px;
    }

    .vtt-logo {
        order: 1;
        max-width: calc(100% - 60px);
    }

    .vtt-hotline {
        display: none;
    }

    .vtt-mobile-toggle {
        display: flex;
        order: 2;
        flex-shrink: 0;
    }

    .vtt-nav {
        order: 3;
        display: block;
        /* Override center alignment */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        padding: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 999;
        border-top: 1px solid #e2e8f0;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .vtt-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .vtt-nav>ul {
        display: block;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .vtt-nav>ul>li {
        display: block;
        width: 100%;
    }

    .vtt-nav>ul>li>a {
        padding: 16px 20px;
        font-size: 15px;
        font-weight: 600;
        color: #1e293b;
        border-bottom: 1px solid #f1f5f9;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        transition: background 0.2s;
    }

    .vtt-nav>ul>li>a:hover {
        background-color: #f8fafc;
    }

    .vtt-nav>ul>li:last-child>a {
        border-bottom: none;
    }

    .vtt-nav>ul>li.active>a::after {
        display: none;
    }

    /* Submenu on mobile */
    .vtt-nav .sub-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background-color: #f8fafc;
        border: none;
        border-radius: 0;
        flex-direction: column;
        padding: 0;
    }

    .vtt-nav .has-submenu.open .sub-menu {
        display: flex;
    }

    .vtt-nav .sub-menu li {
        width: 100%;
    }

    .vtt-nav .sub-menu li a {
        padding: 14px 20px 14px 40px;
        font-size: 14px;
        font-weight: 500;
        color: #475569;
        border-bottom: 1px solid #e2e8f0;
        width: 100%;
        display: block;
    }

    .vtt-nav .sub-menu li:last-child a {
        border-bottom: 1px solid #e2e8f0;
    }

    .vtt-nav .has-submenu>a i {
        font-size: 14px;
        color: #94a3b8;
        transition: transform 0.3s ease, color 0.3s;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f1f5f9;
        border-radius: 6px;
    }

    .vtt-nav .has-submenu.open>a i {
        transform: rotate(180deg);
        background: #0066cc;
        color: white;
    }

    .vtt-hero {
        height: auto;
        min-height: 380px;
        padding-bottom: 100px;
    }

    .vtt-hero-content {
        padding-top: 40px;
    }

    .vtt-hero-title {
        font-size: 52px;
    }

    .vtt-hero-subtitle {
        font-size: 26px;
    }

    .vtt-hero-features {
        flex-wrap: wrap;
        gap: 15px;
    }

    .vtt-hero-bottom {
        position: static;
        margin-top: 30px;
    }

    .vtt-curve-connector {
        display: none;
    }

    .vtt-tabs-wrap {
        border-radius: 12px 12px 0 0;
        flex-wrap: wrap;
        width: 100%;
        padding: 10px 10px 0;
    }

    .vtt-tab {
        flex: 1 1 calc(50% - 6px);
        justify-content: center;
    }

    .vtt-search-body {
        border-radius: 0 0 12px 12px;
    }

    .vtt-search-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vtt-field--btn {
        grid-column: 1 / -1;
    }

    .vtt-tour-content {
        flex-direction: column;
        gap: 16px;
    }

    .vtt-tour-main {
        border-right: none;
        border-bottom: 1px dashed #e2e8f0;
        padding-right: 0;
        padding-bottom: 16px;
    }

    .vtt-tour-flights {
        border-right: none;
        border-bottom: 1px dashed #e2e8f0;
        padding-right: 0;
        padding-bottom: 16px;
    }

    .vtt-tour-pricing {
        align-items: flex-start;
        gap: 12px;
        flex-direction: row;
        justify-content: space-between;
    }

    .vtt-price-group {
        align-items: flex-start;
    }

    .vtt-footer-inner {
        flex-wrap: wrap;
    }

    .vtt-footer-col {
        width: calc(50% - 15px);
    }

    .vtt-col-brand {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .vtt-col-newsletter {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {

    /* Optimize Section Spacings for Mobile */
    .vtt-hero {
        min-height: 320px;
        padding-bottom: 80px;
    }

    .vtt-country-section {
        padding: 24px 0 16px;
    }

    .vtt-schedule-section {
        padding: 16px 0 32px;
    }

    .vtt-promo-section {
        padding: 0 0 32px 0;
    }

    .vtt-footer-inner {
        padding: 24px 0;
    }

    .vtt-header-inner {
        justify-content: space-between;
    }

    .vtt-logo-text strong {
        font-size: 18px;
    }

    .vtt-logo-text>span {
        font-size: 8px;
    }

    .vtt-hotline-number {
        font-size: 18px;
    }

    .vtt-hotline-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .vtt-hero-title {
        font-size: 42px;
    }

    .vtt-hero-subtitle {
        font-size: 22px;
    }

    .vtt-hero-highlight {
        font-size: 14px;
        padding: 8px 20px;
    }

    .vtt-feature-item {
        flex: 1 1 100%;
    }

    .vtt-tabs-wrap {
        padding: 10px 10px 0;
        gap: 4px;
        border-radius: 12px 12px 0 0;
    }

    .vtt-tab {
        flex: 1 1 calc(50% - 4px);
        justify-content: center;
        border-radius: 8px;
        padding: 8px 10px;
        font-size: 13px;
        gap: 5px;
        white-space: normal;
        text-align: center;
    }

    .vtt-search-body {
        padding: 14px;
        border-radius: 0 0 12px 12px;
    }

    .vtt-search-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .vtt-field {
        min-height: 48px;
    }

    .vtt-field-text label {
        font-size: 13px;
    }

    .vtt-field-text input {
        font-size: 13px;
    }

    .vtt-search-btn {
        width: 100%;
        height: 52px;
        font-size: 16px;
    }

    .vtt-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
    }

    .vtt-section-title h2 {
        font-size: 16px;
    }

    .vtt-country-grid {
        gap: 8px;
    }

    .vtt-country-item {
        min-width: 110px;
    }

    .vtt-country-info {
        padding: 8px;
        gap: 6px;
    }

    .vtt-country-text h3 {
        font-size: 12px;
    }

    .vtt-schedule-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .vtt-schedule-title-row h2 {
        font-size: 18px;
    }

    .vtt-schedule-title-row svg {
        width: 24px;
        height: 24px;
    }

    .vtt-schedule-actions {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 10px;
    }

    .vtt-sort-dropdown,
    .vtt-view-toggle {
        width: 100%;
    }

    .vtt-tour-card {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
    }

    .vtt-tour-image {
        width: 100%;
        height: 200px;
    }

    .vtt-tour-content {
        gap: 12px;
    }

    .vtt-tour-name {
        font-size: 15px;
        line-height: 1.4;
    }

    .vtt-tour-main {
        padding-right: 0;
        padding-bottom: 12px;
        border-bottom: 1px dashed #e2e8f0;
    }

    .vtt-tour-flights {
        padding-right: 0;
        padding-bottom: 12px;
        border-bottom: 1px dashed #e2e8f0;
    }

    .vtt-tour-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .vtt-price-group {
        align-items: flex-start;
    }

    .vtt-price-adult .vtt-price-val {
        font-size: 16px;
    }

    .vtt-status-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: flex;
        margin-top: 4px;
    }

    .vtt-promo-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .vtt-promo-left h2 {
        font-size: 16px;
        text-align: center;
    }

    .vtt-promo-right {
        flex-direction: column;
        width: 100%;
    }

    .vtt-promo-btn {
        width: 100%;
        justify-content: center;
    }

    .vtt-footer-col {
        width: 100%;
    }

    .vtt-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .vtt-hotline-text {
        display: none;
    }

    .vtt-hotline-time {
        display: none;
    }

    .vtt-nav>ul {
        gap: 2px 12px;
    }

    .vtt-nav>ul>li>a {
        font-size: 13px;
    }

    .vtt-hero-title {
        font-size: 36px;
    }

    .vtt-hero-subtitle {
        font-size: 18px;
    }

    .vtt-feature-info strong {
        font-size: 15px;
    }

    .vtt-feature-info span {
        font-size: 11px;
    }
}

/* Custom Schedule & Flight Box Styles */
.custom-schedule-box {
    background: #fff;
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.custom-schedule-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
}

.custom-flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-flex-start {
    display: flex;
    align-items: center;
}

.custom-flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-other-date {
    background: #f1f5f9;
    border: none;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 13px;
    color: #334155;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-other-date:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.badge-departure {
    background: #fff7ed;
    color: #ea580c;
    border: 1px solid #ffedd5;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
}

.custom-divider {
    border-top: 1px dashed #e2e8f0;
    margin: 24px 0;
}

.p-name {
    font-weight: 700;
    font-size: 16px;
    color: #1e293b;
}

.p-desc {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #475569;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: #0f172a;
}

.qty-input {
    width: 50px;
    text-align: center;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    margin: 0 10px;
    height: 36px;
    font-weight: 700;
    font-size: 15px;
    color: #0f172a;
}

.p-price {
    font-weight: 800;
    font-size: 17px;
    color: #0f172a;
}

.custom-actions {
    display: flex;
    gap: 15px;
}

.btn-advise,
.btn-book {
    flex: 1;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-advise {
    background: #fff;
    border: 2px solid #f97316;
    color: #f97316;
}

.btn-advise:hover {
    background: #fff7ed;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
}

.btn-book {
    background: linear-gradient(135deg, #f97316, #ea580c);
    border: none;
    color: #fff;
    box-shadow: 0 6px 16px rgba(234, 88, 12, 0.25);
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.3);
}

/* Flight box custom styles */
.custom-flight-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.custom-flight-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

/* Tour Detail Enhancements */
.js-slider-thumbs .slick-current .vtt-thumb-item {
    border-color: #ffc107 !important;
}

.vtt-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffc107;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.vtt-slider-nav:hover {
    background: rgba(0, 0, 0, 0.85);
}

.vtt-slider-nav--prev {
    left: 15px;
}

.vtt-slider-nav--next {
    right: 15px;
}

.vtt-policy-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    border-bottom: 2px solid #e2e8f0;
}

.vtt-policy-nav__item {
    margin: 0;
}

.vtt-policy-nav__button {
    padding: 10px 18px;
    border: none;
    background: #f1f5f9;
    color: #475569;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vtt-policy-nav__button:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.vtt-policy-nav__button--active {
    background: #ffc107;
    color: #1e293b;
}

.vtt-policy-pane {
    display: none;
    line-height: 1.8;
    color: #475569;
}

.vtt-policy-pane--active {
    display: block;
}

.vtt-policy-pane ul {
    padding-left: 20px;
}

.vtt-policy-pane ul li {
    margin-bottom: 8px;
}

.vtt-departures-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 50;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    width: 290px;
    max-height: 260px;
    overflow-y: auto;
    margin-top: 8px;
}

.vtt-departures-dropdown__item {
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.vtt-departures-dropdown__item:hover {
    background: #f8fafc;
}

.vtt-departures-dropdown__item--active {
    background: #fff7ed;
    border-left: 3px solid #f97316;
}
