/* ================= GLOBAL TYPOGRAPHY & RESETS ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Plus Jakarta Sans', sans-serif;
}

:root {
    --orange: #f26522;
    --orange-hover: #d85212;
    --navy: #0f1c3f;
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #475569;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }

/* ================= HEADER NAVBAR ================= */
.tb-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
    transition: all 0.3s ease;
}

.tb-header.scrolled {
    position: fixed;
    background: rgba(15, 28, 63, 0.98);
    backdrop-filter: blur(10px);
    padding: 14px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.tb-header-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.tb-logo {
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
}

.tb-logo-image {
    display: block;
    width: 180px;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: contain;
}

.tb-logo-main {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.logo-white { color: var(--white); }
.logo-orange { color: var(--orange); }

.logo-plane {
    color: var(--white);
    font-size: 1rem;
    margin-left: 4px;
    transform: rotate(-20deg);
}

.tb-logo-sub {
    font-size: 0.62rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1.5px;
    margin-top: 4px;
}

/* Navigation Links */
.tb-nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.tb-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 6px 0;
    position: relative;
    transition: color 0.3s ease;
}

.tb-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2.5px;
    background-color: var(--orange);
}

.tb-nav a:hover { color: var(--orange); }

.tb-nav li {
    position: relative;
}

.tb-nav .has-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tb-nav .submenu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    background: rgba(9, 19, 43, 0.98);
    border-radius: 14px;
    padding: 8px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 100;
}

.tb-nav .has-dropdown:hover .submenu,
.tb-nav .has-dropdown:focus-within .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tb-nav .submenu li {
    margin: 0;
}

.tb-nav .submenu a {
    display: block;
    padding: 10px 18px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.tb-nav .submenu a:hover {
    background: rgba(242, 101, 34, 0.1);
    color: var(--orange);
}

/* Header Top Button */
.tb-btn-top-quote {
    background-color: var(--orange);
    color: var(--white);
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(242, 101, 34, 0.4);
}

.tb-btn-top-quote:hover {
    background-color: var(--orange-hover);
    transform: translateY(-2px);
}

.tb-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
}

/* Mobile Drawer */
.tb-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background: var(--navy);
    z-index: 2000;
    padding: 30px;
    transition: right 0.4s ease;
}

.tb-mobile-drawer.open { right: 0; }

.tb-drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 800;
}

.tb-drawer-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
}

.tb-mobile-drawer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tb-mobile-drawer a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
}

.tb-mobile-drawer li {
    position: relative;
}

.drawer-submenu {
    list-style: none;
    padding-left: 14px;
    margin-top: 8px;
    display: none;
    flex-direction: column;
    gap: 12px;
}

.tb-mobile-drawer li:hover > .drawer-submenu,
.tb-mobile-drawer li:focus-within > .drawer-submenu {
    display: flex;
}

.drawer-submenu a {
    font-size: 0.85rem;
    font-weight: 600;
    color: #f8fafc;
}

.tb-btn-mobile-quote {
    display: block;
    text-align: center;
    background: var(--orange);
    padding: 14px;
    border-radius: 8px;
    margin-top: 15px;
}

/* ================= HERO SECTION ================= */
.tb-hero {
    position: relative;
    min-height: 100vh;
    height: 750px;
    background: url('../img/hero.webp') center/COVER no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.tb-hero-overlay {
    position: absolute;
    inset: 0;
   
    z-index: 1;
}

.tb-hero-content-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 110px 25px 70px 25px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.tb-hero-text-block {
    max-width: 650px;
}

/* Brush Main Title */
.tb-hero-title {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(4.8rem, 9vw, 8.2rem);
    color: var(--white);
    line-height: 0.9;
    letter-spacing: 1.5px;
    text-shadow: 3px 5px 15px rgba(0, 0, 0, 0.6);
    margin-bottom: 0;
}

/* Cursive Subtitle Directly Under Main Title */
.tb-hero-subtitle {
    font-family: 'Satisfy', cursive;
    font-size: clamp(2rem, 3.6vw, 2.9rem);
    color: var(--orange);
    margin-top: 6px;
    margin-bottom: 22px;
    text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.8);
}

/* Highly Readable Description Paragraph */
.tb-hero-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 35px;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.8);
}

/* ================= BIGGER HERO CTA BUTTONS ================= */
.tb-hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Bigger Orange Button */
.tb-btn-orange {
    background: linear-gradient(135deg, #f26522 0%, #e05312 100%);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(242, 101, 34, 0.5);
    transition: all 0.3s ease;
}

.tb-btn-orange i {
    font-size: 1.25rem;
}

.tb-btn-orange:hover {
    background: linear-gradient(135deg, #ff712e 0%, #f26522 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(242, 101, 34, 0.7);
}

/* Bigger WhatsApp Button */
.tb-btn-whatsapp {
    background: rgba(0, 0, 0, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: var(--white);
    padding: 15px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.tb-btn-whatsapp i {
    color: #25D366;
    font-size: 1.45rem;
}

.tb-btn-whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* ================= BOTTOM RIBBON ================= */
.tb-bottom-ribbon {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 0;
    z-index: 2;
}

.tb-ribbon-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tb-ribbon-col {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: var(--white);
}

.icon-orange {
    color: var(--orange);
    font-size: 1.2rem;
}

.tb-ribbon-divider {
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, 0.3);
}

/* ================= READABLE CONTENT SECTIONS ================= */
.why-us-section, .facts-map-section, .categories-section, .enquiry-section, .testimonials-section {
    padding: 80px 0;
}

.why-us-grid, .facts-map-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 45px;
    align-items: center;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
}

.section-header h2 span {
    color: var(--orange);
    font-style: italic;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 25px;
}

.feature-item {
    background: #ffffff;
    padding: 22px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.feature-icon {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 12px;
}

.feature-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.promise-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.promise-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.promise-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--orange);
    color: #fff;
    padding: 20px;
    border-radius: 50%;
    width: 135px;
    height: 135px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-10deg);
}

/* Facts Table Readability */
.facts-map-section {
    background-color: #f8fafc;
}

.country-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--navy);
}

.vietnam-map-container {
    position: relative;
    background: #ffffff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.map-img {
    width: 100%;
    border-radius: 8px;
    height: 440px;
    object-fit: cover;
}

.map-pin {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    border-left: 4px solid var(--orange);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-width: 170px;
}

.pin-sapa { top: 15%; left: 10%; }
.pin-hanoi { top: 28%; left: 25%; }
.pin-halong { top: 22%; right: 15%; }
.pin-danang { top: 50%; right: 20%; }
.pin-phuquoc { bottom: 10%; left: 15%; }

.culture-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.highlight-box {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
}

.highlight-box i {
    color: var(--orange);
    margin-right: 6px;
}

.facts-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.facts-header {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 18px;
    border-bottom: 3px solid var(--orange);
    padding-bottom: 8px;
    display: inline-block;
}

.facts-table {
    width: 100%;
    border-collapse: collapse;
}

.facts-table th, .facts-table td {
    padding: 12px 15px;
    font-size: 0.92rem;
    color: var(--text-dark);
    border-bottom: 1px solid #f1f5f9;
}

.facts-table th {
    font-weight: 700;
    background: #f8fafc;
}

.facts-table td i {
    color: var(--orange);
    width: 22px;
}

/* Tour Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 22px;
    margin-top: 35px;
}

.category-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 220px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
    color: #fff;
    padding: 20px 12px 12px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
}

/* Enquiry Form */
.enquiry-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.enquiry-wrapper {
    background: #ffffff;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.enquiry-left {
    background: url('https://images.unsplash.com/photo-1528127269322-539801943592?q=80&w=800&auto=format&fit=crop') center/cover no-repeat;
    position: relative;
    padding: 45px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.enquiry-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 28, 63, 0.88);
}

.enquiry-heading, .steps-container, .security-badge {
    position: relative;
    z-index: 2;
}

.enquiry-heading h2 {
    font-size: 2.2rem;
    font-weight: 800;
}

.enquiry-heading h2 span { color: var(--orange); }

.step-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.12);
    padding: 14px 22px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
}

.step-box i { color: var(--orange); font-size: 1.2rem; }

.enquiry-right { padding: 45px; }

.form-group {
    position: relative;
    margin-bottom: 18px;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px 16px 14px 46px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover { background: var(--orange-hover); }

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.quote-mark {
    font-size: 3.5rem;
    color: var(--orange);
    line-height: 1;
}

.review-text {
    font-size: 0.95rem;
    color: #334155;
    margin-bottom: 20px;
    line-height: 1.6;
}

.author-info strong {
    font-size: 1rem;
    color: var(--navy);
    display: block;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stars { color: #f59e0b; margin-top: 6px; }

/* Responsive Rules */
@media (max-width: 1024px) {
    .tb-nav, .tb-header-btn-wrap { display: none; }
    .tb-mobile-toggle { display: block; }
    .tb-ribbon-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .tb-ribbon-divider { display: none; }
}

@media (max-width: 600px) {
    .tb-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .tb-btn-orange, .tb-btn-whatsapp {
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    .tb-ribbon-inner { grid-template-columns: 1fr; }
    .why-us-grid, .facts-map-grid, .enquiry-wrapper {
        grid-template-columns: 1fr;
    }
}



/* ================= TRANSPARENT TALL RIBBON BAR ================= */
.tb-bottom-ribbon {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Taller height preserved */
    padding: 28px 0; 
    /* Transparent Background Overlay */
    background: rgba(0, 0, 0, 0.25); 
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.tb-ribbon-inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tb-ribbon-col {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.7); /* Ensures text stays 100% readable over background image */
    transition: transform 0.3s ease;
    cursor: default;
}

.tb-ribbon-col:hover {
    transform: translateY(-2px);
}

.icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-orange {
    color: #f26522;
    font-size: 1.45rem;
    filter: drop-shadow(0 2px 8px rgba(242, 101, 34, 0.6));
    transition: transform 0.3s ease;
}

.tb-ribbon-col:hover .icon-orange {
    transform: scale(1.1);
}

/* Subtle Transparent Vertical Divider */
.tb-ribbon-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive Handling */
@media (max-width: 1100px) {
    .tb-ribbon-inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .tb-ribbon-divider {
        display: none;
    }
    .tb-bottom-ribbon {
        padding: 22px 0;
        position: relative;
    }
}

@media (max-width: 600px) {
    .tb-ribbon-inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .tb-ribbon-col {
        font-size: 0.82rem;
    }
}



/* ================= VIETNAM AT A GLANCE & QUICK FACTS ================= */
.tb-facts-section {
    padding: 80px 0;
    background-color: #fbfcfd;
}

.tb-facts-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

/* Section Titles */
.tb-section-title {
    margin-bottom: 25px;
}

.tb-section-title h2 {
    font-size: 2.1rem;
    font-weight: 900;
    color: #0f1c3f;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.tb-section-title h2 span {
    color: #f26522;
}

.tb-title-line {
    width: 45px;
    height: 3px;
    background: linear-gradient(90deg, #0f1c3f 50%, #f26522 50%);
    margin-top: 8px;
    border-radius: 2px;
}

/* Left Image Styling */
.tb-glance-col {
    display: flex;
    flex-direction: column;
}

.tb-map-wrapper {
    width: 100%;
    text-align: center;
}

.tb-glance-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
   
}

/* Right Quick Facts 3x2 Grid */
.tb-fact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tb-fact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 16px;
    text-align: center;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 18px rgba(15, 28, 63, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tb-fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(242, 101, 34, 0.12);
    border-color: rgba(242, 101, 34, 0.3);
}

.tb-fact-icon {
    font-size: 2.4rem;
    color: #f26522;
    margin-bottom: 14px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tb-fact-card h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f1c3f;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.tb-fact-card p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.45;
    font-weight: 500;
    margin: 0;
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .tb-facts-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .tb-fact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 420px) {
    .tb-fact-cards-grid {
        grid-template-columns: 1fr;
    }
}



/* ================= SITE FOOTER STYLES ================= */
.site-footer {
    background-color: #09132b;
    color: #94a3b8;
    padding: 75px 0 25px 0;
    font-size: 0.88rem;
    position: relative;
    z-index: 5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr) 1.2fr;
    justify-content: center;
    max-width: 1180px;
    margin: 0 auto;
    gap: 30px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: 0.5px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: #f26522;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #f26522;
    padding-left: 4px;
}

/* Brand Column */
.brand-col .footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 6px;
}

.brand-col .footer-logo-image {
    width: 180px;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.brand-col .logo-white { font-size: 1.6rem; font-weight: 800; color: #ffffff; }
.brand-col .logo-orange { font-size: 1.6rem; font-weight: 800; color: #f26522; }
.brand-col .logo-domain { font-size: 1.2rem; font-weight: 700; color: #f26522; }
.brand-col .logo-plane { font-size: 0.95rem; color: #ffffff; margin-left: 4px; transform: rotate(-20deg); }

.brand-col .tagline {
    color: #f26522;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.brand-col .brand-desc {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 22px;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.social-links a:hover {
    background: #f26522;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(242, 101, 34, 0.4);
}

/* Contact Info Column */
.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
    font-size: 0.88rem;
}

.contact-info li i {
    color: #f26522;
    font-size: 1rem;
    width: 18px;
}

/* Bottom Copyright Bar */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    color: #64748b;
    font-size: 0.82rem;
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}








/* ================= TRUST BADGES & STATS RIBBON ================= */
.tb-trust-ribbon {
  background-color: #fff8f2; /* Soft warm cream background */
  border-top: 1px solid #fce8db;
  border-bottom: 1px solid #fce8db;
  padding: 26px 0;
}

.tb-trust-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.tb-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tb-trust-icon {
  font-size: 2.1rem;
  color: #f26522; /* Primary Orange Icon */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.tb-trust-text {
  display: flex;
  flex-direction: column;
}

.tb-trust-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #0f1c3f; /* Dark Navy Title */
  line-height: 1.15;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tb-trust-title .star-gold {
  color: #f59e0b;
  font-size: 0.95rem;
}

.tb-trust-sub {
  font-size: 0.72rem;
  font-weight: 800;
  color: #334155;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Subtle Vertical Dividers */
.tb-trust-divider {
  width: 1px;
  height: 38px;
  background-color: #ebdcd0;
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .tb-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .tb-trust-divider {
    display: none;
  }
}

@media (max-width: 640px) {
  .tb-trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .tb-trust-item {
    gap: 10px;
  }
  .tb-trust-icon {
    font-size: 1.7rem;
    width: 36px;
  }
  .tb-trust-title {
    font-size: 1.05rem;
  }
  .tb-trust-sub {
    font-size: 0.65rem;
  }
}











/* ================= START YOUR JOURNEY ENQUIRY SECTION ================= */
.tb-journey-section {
    position: relative;
    padding: 90px 0;
    background: url('../img/cta3.webp') center center/cover no-repeat;
    display: flex;
    align-items: center;
}



.tb-journey-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 45px;
    align-items: center;
}



.tb-journey-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #0f1c3f; /* Dark Navy or White depending on overlay */
    background: rgba(255, 255, 255, 0.85);
    display: inline-block;
    padding: 4px 14px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.plane-doodle {
    color: #f26522;
    font-size: 1.5rem;
    margin-left: 6px;
    transform: rotate(-15deg);
}

.tb-journey-script {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: #f26522;
    margin-top: 6px;
    margin-bottom: 30px;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.7);
}

/* Checkmark Bullets */
.tb-journey-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tb-journey-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
}

.tb-journey-list li i {
    color: #f26522; /* Bright Orange Checkmark */
    font-size: 1.3rem;
    background: #ffffff;
    border-radius: 50%;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

/* Right Column: Form Card */
.tb-journey-form-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* 2-Column Inputs Grid */
.tb-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.tb-input-group {
    position: relative;
}

.tb-input-group.full-width {
    margin-bottom: 20px;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #f26522;
    font-size: 0.95rem;
    pointer-events: none;
}

.tb-input-group textarea + .input-icon {
    top: 20px;
}

.tb-input-group input, 
.tb-input-group textarea {
    width: 100%;
    padding: 13px 14px 13px 40px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #0f1c3f;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* ================= MOBILE OVERFLOW FIXES ================= */
/* Constrain oversized media and prevent horizontal scrolling on small screens */
html, body {
    overflow-x: hidden;
}

img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

.tb-p-hero-bg {
    position: relative;
    overflow: hidden;
}

.tb-p-hero-bg .tb-p-hero-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 100%;
}

@media (max-width: 768px) {
    .container { padding-left: 16px; padding-right: 16px; }
    .tb-header-container { padding: 0 16px; max-width: 100%; }
    .tb-nav ul { gap: 12px; }
    .tb-mobile-drawer { width: 100%; max-width: 340px; }
}

.tb-input-group input:focus, 
.tb-input-group textarea:focus {
    border-color: #f26522;
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.15);
}

.tb-input-group textarea {
    padding-top: 12px;
    resize: vertical;
}

/* Form Orange Submit Button */
.tb-btn-form-submit {
    width: 100%;
    background: linear-gradient(135deg, #f26522 0%, #e05312 100%);
    color: #ffffff;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(242, 101, 34, 0.4);
    transition: all 0.3s ease;
}

.tb-btn-form-submit:hover {
    background: linear-gradient(135deg, #ff712e 0%, #f26522 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 101, 34, 0.6);
}

/* WhatsApp Sub-link */
.tb-whatsapp-chat-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    color: #475569;
    transition: color 0.3s ease;
}

.tb-whatsapp-chat-link:hover {
    color: #0f1c3f;
}

.wa-icon {
    color: #25D366;
    font-size: 1.2rem;
}

/* Responsive Rules */
@media (max-width: 992px) {
    .tb-journey-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .tb-journey-info {
        text-align: center;
    }
    .tb-journey-list {
        align-items: center;
    }
}

@media (max-width: 580px) {
    .tb-form-grid {
        grid-template-columns: 1fr;
    }
    .tb-journey-form-card {
        padding: 25px 20px;
    }
}




/* ================= LUXURY FUN TESTIMONIALS SECTION ================= */
.tb-testimonials-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Heading with Cursive Script Word */
.tb-section-title h2 {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: #0f1c3f;
    line-height: 1.2;
}

.script-word {
    font-family: 'Caveat', cursive;
    color: #f26522;
    font-size: 1.5em;
    font-weight: 700;
    display: inline-block;
    margin: 0 4px;
    transform: rotate(-3deg);
    text-shadow: 1px 2px 5px rgba(242, 101, 34, 0.2);
}

/* Google Trust Badge Bar */
.tb-trust-rating-bar {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 50px;
}

.google-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 10px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-size: 0.88rem;
    color: #0f1c3f;
}

.google-trust-badge strong {
    font-size: 1rem;
    font-weight: 800;
    color: #0f1c3f;
}

.tb-stars-inline {
    color: #f59e0b;
    display: flex;
    gap: 2px;
    font-size: 0.85rem;
}

.google-trust-badge span {
    color: #64748b;
    font-weight: 600;
    font-size: 0.82rem;
}

/* Review Cards Grid */
.tb-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Base Card Styling */
.tb-review-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 28px 28px 28px;
    border: 1px solid #e2e8f0;
    position: relative;
    box-shadow: 0 10px 30px rgba(15, 28, 63, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tb-review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(242, 101, 34, 0.4);
    box-shadow: 0 20px 40px rgba(15, 28, 63, 0.12);
}

/* Featured Top Review Highlight */
.featured-review {
    border-color: #f26522;
    box-shadow: 0 15px 35px rgba(242, 101, 34, 0.12);
}

.top-badge-ribbon {
    position: absolute;
    top: -14px;
    right: 25px;
    background: linear-gradient(135deg, #f26522, #d85212);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(242, 101, 34, 0.3);
}

/* Watermark SVG Quote Mark */
.quote-bg-svg {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    color: rgba(242, 101, 34, 0.07);
    pointer-events: none;
}

/* Top Bar: Verified Tag + Stars */
.card-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.verified-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 211, 102, 0.12);
    color: #16a34a;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
}

.card-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    display: flex;
    gap: 2px;
}

/* Review Text Body */
.review-body {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.65;
    font-weight: 500;
    margin-bottom: 22px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

/* Tour Tag */
.tour-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    color: #0f1c3f;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 25px;
    align-self: flex-start;
}

.tour-tag i {
    color: #f26522;
}

/* Reviewer Profile Footer */
.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px dashed #e2e8f0;
}

/* Stylish Person Symbol Icon Wrapper */
.person-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff3ec;
    border: 2px solid #f26522;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f26522;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(242, 101, 34, 0.15);
}

.feature-person {
    background: #0f1c3f;
    border-color: #0f1c3f;
    color: #ffffff;
}

.profile-details {
    flex: 1;
}

.profile-details h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f1c3f;
    margin-bottom: 2px;
}

.profile-details span {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 600;
}

/* Trip Photo Thumbnails for Authentic Proof */
.trip-photos {
    display: flex;
    gap: 6px;
}

.trip-photos img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #cbd5e1;
    transition: transform 0.3s ease;
}

.trip-photos img:hover {
    transform: scale(1.15);
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .tb-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .tb-reviews-grid {
        grid-template-columns: 1fr;
    }
    .reviewer-profile {
        flex-wrap: wrap;
    }
    .trip-photos {
        margin-left: auto;
    }
}




/* ================= WHAT WE ENJOY IN VIETNAM ================= */
.tb-enjoy-section {
    position: relative;
    padding: 100px 0;
    background: url('../img/enjoy.webp') center center/cover no-repeat fixed;
    color: #ffffff;
    overflow: hidden;
}

/* Dark Overlay */
.tb-enjoy-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 28, 63, 0.78) 90%, rgba(8, 15, 30, 0.93) 100%);
    
    z-index: 1;
}

.tb-enjoy-section .container {
    position: relative;
    z-index: 2;
}

.light-theme h2 {
    color: #ffffff !important;
}

.light-theme .section-desc {
    color: #fdfdff !important;
}

/* Snaky Path Layout Container */
.tb-snaky-path-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
    position: relative;
}

/* Step Card Base */
.tb-enjoy-step {
    position: relative;
    width: 54%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(14px);
    border-radius: 24px;
    padding: 35px 38px;
    display: flex;
    align-items: center;
    gap: 26px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tb-enjoy-step:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(242, 101, 34, 0.6);
    box-shadow: 0 20px 45px rgba(242, 101, 34, 0.3);
}

/* Alternating Snaky Alignment */
.step-left { align-self: flex-start; }
.step-right { align-self: flex-end; }

/* Large Crisp Script Step Numbers */
.step-number {
    position: absolute;
    top: -20px;
    left: 35px;
    background: linear-gradient(135deg, #f26522 0%, #d85212 100%);
    color: #ffffff;
    font-family: 'Satisfy', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 5px 22px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(242, 101, 34, 0.5);
    letter-spacing: 1px;
}

/* BIGGER ICON WRAPPER */
.step-icon-wrap {
    width: 85px;
    height: 85px;
    min-width: 85px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f26522 0%, #e05312 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2.4rem; /* Significantly larger icons */
    box-shadow: 0 10px 25px rgba(242, 101, 34, 0.5);
    transition: transform 0.3s ease;
}

.tb-enjoy-step:hover .step-icon-wrap {
    transform: scale(1.12) rotate(6deg);
}

/* Step Content & Script Heading Accents */
.step-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

/* Cursive Script Span in Headings */
.card-script {
    font-family: 'Satisfy', cursive;
    color: #f26522;
    font-weight: 400;
    font-size: 1.25em;
    margin: 0 3px;
    display: inline-block;
    text-shadow: 1px 2px 6px rgba(242, 101, 34, 0.3);
}

.step-content p {
    font-size: 0.95rem;
    color: #feffff;
    line-height: 1.6;
    margin: 0;
}

.step-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(242, 101, 34, 0.22);
    color: #f26522;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Curved Arrow SVG Connectors */
.tb-arrow-connector {
    width: 200px;
    height: 75px;
    margin: -10px 0;
}

.arrow-right {
    align-self: center;
    margin-left: 20%;
}

.arrow-left {
    align-self: center;
    margin-right: 20%;
}

.tb-arrow-connector svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(242, 101, 34, 0.6));
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .tb-enjoy-step {
        width: 100%;
    }
    .tb-arrow-connector {
        display: none;
    }
    .tb-snaky-path-container {
        gap: 35px;
    }
}

@media (max-width: 580px) {
    .tb-enjoy-step {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 22px;
    }
    .step-icon-wrap {
        width: 70px;
        height: 70px;
        min-width: 70px;
        font-size: 2rem;
    }
}


/* ================= WHY TRAVEL WITH US (ULTRA-FUN BENTO REDESIGN) ================= */
.tb-why-bento-section {
    padding: 95px 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

/* Header Styling */
.fun-badge {
    background: #fff3ec;
    color: #f26522 !important;
    padding: 6px 18px;
    border-radius: 30px;
    border: 1px solid rgba(242, 101, 34, 0.2);
}

.fun-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 900;
    color: #0f1c3f;
    margin-top: 10px;
}

.fun-script-highlight {
    font-family: 'Caveat', cursive;
    color: #f26522;
    font-weight: 700;
    font-size: 1.5em;
    display: inline-block;
    transform: rotate(-3deg);
}

.fun-plane-fly {
    color: #f26522;
    font-size: 1.8rem;
    margin-left: 8px;
    animation: planeFloat 3s ease-in-out infinite;
}

@keyframes planeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(-8deg); }
}

/* Bento Main Wrapper */
.tb-bento-wrapper {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 40px;
    margin-top: 50px;
    align-items: center;
}

/* 6-Card Bento Grid */
.tb-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

/* Bento Card Base */
.bento-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 26px;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 8px 22px rgba(15, 28, 63, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(15, 28, 63, 0.1);
}

.bento-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

/* Icon Wrap Base */
.bento-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.bento-card:hover .bento-icon {
    transform: rotate(-8deg) scale(1.1);
}

/* Bento Pill Badges */
.bento-pill {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Color Identity Themes */
/* Coral */
.bento-coral .bento-icon { background: #fff1ec; color: #f26522; }
.pill-coral { background: #fff1ec; color: #f26522; }
.bento-coral:hover { border-color: #f26522; }

/* Navy */
.bento-navy .bento-icon { background: #eef2ff; color: #0f1c3f; }
.pill-gold { background: #fef3c7; color: #b45309; }
.bento-navy:hover { border-color: #0f1c3f; }

/* Teal */
.bento-teal .bento-icon { background: #ccfbf1; color: #0d9488; }
.pill-cyan { background: #ccfbf1; color: #0d9488; }
.bento-teal:hover { border-color: #0d9488; }

/* Purple */
.bento-purple .bento-icon { background: #f3e8ff; color: #7c3aed; }
.pill-purple { background: #f3e8ff; color: #7c3aed; }
.bento-purple:hover { border-color: #7c3aed; }

/* Green */
.bento-green .bento-icon { background: #dcfce7; color: #16a34a; }
.pill-green { background: #dcfce7; color: #16a34a; }
.bento-green:hover { border-color: #16a34a; }

/* Amber */
.bento-amber .bento-icon { background: #fef3c7; color: #d97706; }
.pill-amber { background: #fef3c7; color: #d97706; }
.bento-amber:hover { border-color: #d97706; }

/* Live Green Pulse Dot */
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: greenPulse 1.8s infinite;
}

@keyframes greenPulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.bento-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f1c3f;
    margin-bottom: 8px;
}

.bento-card p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Right Side: Polaroid Photo & Floating Badges */
.tb-bento-hero {
    position: relative;
}

.fun-polaroid-frame {
    position: relative;
    background: #ffffff;
    padding: 14px;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(15, 28, 63, 0.12);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.fun-polaroid-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.fun-polaroid-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* Rotating Promise Badge */
.fun-spin-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: linear-gradient(135deg, #f26522, #d85212);
    color: #ffffff;
    width: 135px;
    height: 135px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(242, 101, 34, 0.4);
    z-index: 5;
    transform: rotate(-10deg);
}

.badge-inner span {
    font-family: 'Satisfy', cursive;
    font-size: 0.85rem;
    display: block;
}

.badge-inner strong {
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.2;
    display: block;
}

/* Floating Glass Chat Bubbles */
.fun-chat-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 12px 18px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    z-index: 5;
}

.bubble-top {
    top: 40px;
    right: -15px;
}

.bubble-bottom {
    bottom: 30px;
    left: 20px;
}

.bubble-icon {
    font-size: 1.5rem;
    color: #f26522;
}

.fun-chat-bubble strong {
    font-size: 0.85rem;
    font-weight: 800;
    color: #0f1c3f;
    display: block;
}

.fun-chat-bubble p {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .tb-bento-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 640px) {
    .tb-bento-grid {
        grid-template-columns: 1fr;
    }
    .fun-polaroid-frame img {
        height: 360px;
    }
    .fun-spin-badge {
        width: 110px;
        height: 110px;
        top: -15px;
        left: -10px;
    }
    .badge-inner strong {
        font-size: 0.82rem;
    }
    .fun-chat-bubble {
        padding: 8px 14px;
    }
}


/* ================= HEADER STYLES (TRANSPARENT TO WHITE STICKY) ================= */
.tb-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    /* Gradient overlay for text contrast at the top of hero */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tb-header-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* --- Brand Logo --- */
.tb-logo {
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
}

.tb-logo-main {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1;
    display: flex;
    align-items: center;
}

/* Default Colors (Transparent Top Header) */
.logo-white { 
    color: #ffffff; 
    transition: color 0.35s ease;
}

.logo-orange { 
    color: #f26522; 
}

.logo-plane {
    color: #ffffff;
    font-size: 0.95rem;
    margin-left: 4px;
    transform: rotate(-20deg);
    transition: color 0.35s ease;
}

.tb-logo-sub {
    font-size: 0.58rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 1.3px;
    margin-top: 4px;
    transition: color 0.35s ease;
}

/* --- Navigation Links --- */
.tb-nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.tb-nav a {
    color: #ffffff; /* White text on transparent header */
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 6px 0;
    position: relative;
    transition: color 0.35s ease;
}

.tb-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2.5px;
    background-color: #f26522;
}

.tb-nav a:hover {
    color: #f26522;
}

/* --- Header Quote Button --- */
.tb-btn-top-quote {
    background-color: #f26522;
    color: #ffffff;
    padding: 11px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(242, 101, 34, 0.4);
    transition: all 0.3s ease;
}

.tb-btn-top-quote:hover {
    background-color: #d85212;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 101, 34, 0.6);
}

.tb-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff; /* White icon on transparent header */
    font-size: 1.6rem;
    cursor: pointer;
    transition: color 0.35s ease;
}

/* ================= SCROLLED STATE (WHITE HEADER + NAVY TEXT) ================= */
.tb-header.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 4px 25px rgba(15, 28, 63, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Text & Icons Turn Navy Blue (#0f1c3f) on Scroll */
.tb-header.scrolled .logo-white {
    color: #0f1c3f;
}

.tb-header.scrolled .logo-plane {
    color: #0f1c3f;
}

.tb-header.scrolled .tb-logo-sub {
    color: #475569;
}

.tb-header.scrolled .tb-nav a {
    color: #0f1c3f; /* NAVY BLUE TEXT */
}

.tb-header.scrolled .tb-nav a:hover {
    color: #f26522; /* Orange on hover */
}

.tb-header.scrolled .tb-mobile-toggle {
    color: #0f1c3f; /* Navy mobile toggle */
}

/* ================= MOBILE DRAWER STYLES ================= */
.tb-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background: #0f1c3f;
    z-index: 2000;
    padding: 30px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tb-mobile-drawer.open {
    right: 0;
}

.tb-drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 800;
}

.tb-drawer-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.6rem;
    cursor: pointer;
}

.tb-mobile-drawer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tb-mobile-drawer a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
}

.tb-btn-mobile-quote {
    display: block;
    text-align: center;
    background: #f26522;
    color: #ffffff !important;
    padding: 14px;
    border-radius: 8px;
    margin-top: 15px;
}

/* Responsive Trigger */
@media (max-width: 1024px) {
    .tb-nav, .tb-header-btn-wrap { 
        display: none; 
    }
    .tb-mobile-toggle { 
        display: block; 
    }
}


/* ================= DYNAMIC RESPONSIVE HERO SECTION ================= */
.tb-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 740px;
    display: flex;
    align-items: center;
    overflow: hidden; /* Clips background scaling gracefully */
    color: #ffffff;
    padding-top: 80px;
}

/* Dynamic Image Wrapper for Smooth Zoom In / Zoom Out */
.tb-hero-bg-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.tb-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
}



/* Hero Content Container */
.tb-hero-container {
    position: relative;
    z-index: 3;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 25px;
    width: 100%;
}

.tb-hero-content {
    max-width: 650px;
}

/* Brush Title (VIETNAM) */
.tb-hero-title {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(4.5rem, 8.5vw, 8rem);
    color: #ffffff;
    line-height: 0.92;
    letter-spacing: 1.5px;
    text-shadow: 3px 5px 15px rgba(0, 0, 0, 0.65);
    margin-bottom: 0;
}

/* Cursive Subtitle */
.tb-hero-subtitle {
    font-family: 'Satisfy', cursive;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: #f26522;
    margin-top: 4px;
    margin-bottom: 20px;
    text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.8);
}

/* Description Paragraph */
.tb-hero-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 35px;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.85);
}

/* Hero CTA Buttons */
.tb-hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 40px;
}

/* Orange Free Quote Button */
.tb-btn-quote-hero {
    background: linear-gradient(135deg, #f26522 0%, #e05312 100%);
    color: #ffffff !important;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none !important;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(242, 101, 34, 0.5);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tb-btn-quote-hero:hover {
    background: linear-gradient(135deg, #ff712e 0%, #f26522 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(242, 101, 34, 0.7);
}

/* WhatsApp Button */
.tb-btn-wa-hero {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #ffffff !important;
    padding: 15px 34px;
    border-radius: 8px;
    text-decoration: none !important;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(6px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-icon {
    color: #25D366;
    font-size: 1.45rem;
}

.tb-btn-wa-hero:hover {
    background: rgba(37, 211, 102, 0.25);
    border-color: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

/* ================= TRANSPARENT BOTTOM RIBBON ================= */
.tb-bottom-ribbon {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.tb-ribbon-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tb-ribbon-col {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #ffffff;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.7);
}

.icon-orange {
    color: #f26522;
    font-size: 1.25rem;
    filter: drop-shadow(0 2px 8px rgba(242, 101, 34, 0.6));
}

.tb-ribbon-divider {
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive Rules */
@media (max-width: 992px) {
    .tb-ribbon-inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .tb-ribbon-divider {
        display: none;
    }
    .tb-bottom-ribbon {
        position: relative;
    }
}

@media (max-width: 600px) {
    .tb-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .tb-btn-quote-hero, .tb-btn-wa-hero {
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    .tb-ribbon-inner {
        grid-template-columns: 1fr;
    }
}





/* ================= ABOUT US PAGE STYLES ================= */

/* Hero Breadcrumb Banner */
.tb-about-hero {
    position: relative;
    padding: 140px 0 70px 0;
    background: url('../img/bread.webp') center center/cover no-repeat;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.tb-about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 28, 63, 0.85) 0%, rgba(15, 28, 63, 0.7) 100%);
    z-index: 1;
}

.tb-about-hero-container {
    position: relative;
    z-index: 2;
}

.tb-about-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 12px;
}

.tb-breadcrumb {
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tb-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tb-breadcrumb a:hover {
    color: #f26522;
}

.tb-breadcrumb i {
    font-size: 0.75rem;
    color: #f26522;
}

/* Brand Story Section */
.tb-about-story-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.tb-about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 55px;
    align-items: center;
}

/* Left Images Collage */
.tb-story-images {
    position: relative;
    padding-bottom: 30px;
    padding-right: 30px;
}

.story-img-main-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(15, 28, 63, 0.12);
}

.story-img-main {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.story-img-main-wrap:hover .story-img-main {
    transform: scale(1.05);
}

.story-img-sub-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 180px;
    border-radius: 18px;
    overflow: hidden;
    border: 5px solid #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.story-img-sub {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Story Badge */
.tb-story-badge {
    position: absolute;
    top: 25px;
    left: -15px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.tb-story-badge .badge-icon {
    font-size: 1.8rem;
    color: #f26522;
}

.tb-story-badge strong {
    display: block;
    font-size: 0.95rem;
    color: #0f1c3f;
    font-weight: 800;
}

.tb-story-badge span {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 600;
}

/* Story Content Typography */
.tb-story-content .tb-section-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #0f1c3f;
    line-height: 1.25;
    margin-bottom: 20px;
}

.story-lead {
    font-size: 1.05rem;
    color: #0f1c3f;
    line-height: 1.65;
    margin-bottom: 16px;
}

.story-body {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 16px;
}

.tb-story-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px dashed #e2e8f0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f1c3f;
}

/* Vision & Mission Cards */
.tb-vm-section {
    padding: 90px 0;
    background-color: #f8fafc;
}

.tb-vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-top: 45px;
}

.tb-vm-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 28, 63, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tb-vm-card:hover {
    transform: translateY(-8px);
    border-color: rgba(242, 101, 34, 0.4);
    box-shadow: 0 20px 40px rgba(15, 28, 63, 0.12);
}

.vm-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.vm-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: #fff1ec;
    color: #f26522;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.tb-vm-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f1c3f;
    margin: 0;
}

.tb-vm-card p {
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.75;
    margin: 0;
    position: relative;
    z-index: 2;
}

.vm-bg-icon {
    position: absolute;
    bottom: -15px;
    right: 15px;
    font-size: 8rem;
    color: rgba(242, 101, 34, 0.05);
    pointer-events: none;
}

/* Core Values Section */
.tb-values-section {
    padding: 85px 0;
    background-color: #ffffff;
}

.tb-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 45px;
}

.tb-value-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px 22px;
    text-align: center;
    transition: all 0.3s ease;
}

.tb-value-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
    border-color: #f26522;
    box-shadow: 0 12px 30px rgba(242, 101, 34, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    color: #f26522;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 18px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.tb-value-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f1c3f;
    margin-bottom: 10px;
}

.tb-value-card p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* CTA Banner Section */
.tb-about-cta-section {
    padding: 60px 0 90px 0;
}

.tb-cta-card {
    background: linear-gradient(135deg, #0f1c3f 0%, #1a2e63 100%);
    border-radius: 28px;
    padding: 50px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 20px 45px rgba(15, 28, 63, 0.2);
}

.tb-cta-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 8px;
}

.tb-cta-content p {
    font-size: 0.98rem;
    color: #cbd5e1;
    margin: 0;
    max-width: 550px;
}

.tb-cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* Responsive Rules for About Us */
@media (max-width: 1024px) {
    .tb-about-story-grid, .tb-vm-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tb-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tb-cta-card {
        flex-direction: column;
        text-align: center;
    }
    .tb-cta-content p {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .tb-values-grid {
        grid-template-columns: 1fr;
    }
    .story-img-sub-wrap {
        width: 150px;
        height: 140px;
    }
    .tb-cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .tb-cta-actions a {
        justify-content: center;
    }
}










/* ================= CONTACT US PAGE - PERFECT ALIGNMENT STYLES ================= */

/* Hero Banner */
.tb-contact-hero {
    position: relative;
    padding: 140px 0 70px 0;
    background: url('../img/bread.webp') center center/cover no-repeat;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.tb-contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 28, 63, 0.85) 0%, rgba(15, 28, 63, 0.72) 100%);
    z-index: 1;
}

.tb-contact-hero-container {
    position: relative;
    z-index: 2;
}

.tb-contact-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 12px;
}

/* Quick Contact Cards */
.tb-contact-cards-section {
    padding: 60px 0;
    background-color: #f8fafc;
    margin-top: -30px;
    position: relative;
    z-index: 5;
}

.tb-contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tb-contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 28px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(15, 28, 63, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tb-contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(242, 101, 34, 0.4);
    box-shadow: 0 20px 40px rgba(15, 28, 63, 0.12);
}

.contact-card-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #fff1ec;
    color: #f26522;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 6px 18px rgba(242, 101, 34, 0.2);
}

.icon-blue { background: #e0f2fe; color: #0284c7; box-shadow: 0 6px 18px rgba(2, 132, 199, 0.2); }
.icon-green { background: #dcfce7; color: #16a34a; box-shadow: 0 6px 18px rgba(22, 163, 74, 0.2); }

.tb-contact-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f1c3f;
    margin-bottom: 8px;
}

.tb-contact-card p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 16px;
}

.contact-link {
    font-size: 1.15rem;
    font-weight: 800;
    color: #f26522;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover { color: #0f1c3f; }
.contact-text { font-size: 1.15rem; font-weight: 800; color: #0f1c3f; }

/* Main Section Wrapper */
.tb-contact-main-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.tb-contact-wrapper {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 45px;
    align-items: flex-start;
}

.tb-contact-form-box {
    background: #f8fafc;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #e2e8f0;
}

.form-desc {
    font-size: 0.92rem;
    color: #64748b;
    margin-top: 6px;
    margin-bottom: 28px;
}

/* --- PERFECT FORM ALIGNMENT CSS --- */
.tb-aligned-form {
    width: 100%;
}

.tb-aligned-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.tb-aligned-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
}

.tb-aligned-form .form-group.full-width {
    width: 100%;
}

.tb-aligned-form label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f1c3f;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tb-aligned-form label .required {
    color: #f26522;
}

.tb-aligned-form .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.tb-aligned-form .input-icon {
    position: absolute;
    left: 16px;
    color: #f26522;
    font-size: 0.95rem;
    pointer-events: none;
    z-index: 2;
}

.tb-aligned-form .textarea-wrapper .input-icon {
    top: 16px;
    transform: none;
}

.tb-aligned-form input[type="text"],
.tb-aligned-form input[type="tel"],
.tb-aligned-form input[type="email"],
.tb-aligned-form input[type="date"] {
    width: 100%;
    height: 52px; /* Uniform height across all browsers */
    padding: 0 16px 0 46px;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: #0f1c3f;
    background: #ffffff;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.tb-aligned-form textarea {
    width: 100%;
    padding: 14px 16px 14px 46px;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: #0f1c3f;
    background: #ffffff;
    outline: none;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 120px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.tb-aligned-form input:focus,
.tb-aligned-form textarea:focus {
    border-color: #f26522;
    box-shadow: 0 0 0 4px rgba(242, 101, 34, 0.15);
}

.tb-aligned-form .tb-btn-form-submit {
    margin-top: 6px;
    width: 100%;
    height: 54px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f26522 0%, #d85212 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(242, 101, 34, 0.35);
    transition: all 0.3s ease;
}

.tb-aligned-form .tb-btn-form-submit:hover {
    background: linear-gradient(135deg, #ff712e 0%, #f26522 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(242, 101, 34, 0.5);
}

/* Sidebar Styling */
.tb-contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tb-sidebar-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 25px rgba(15, 28, 63, 0.04);
}

.sidebar-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
}

.sidebar-card-title h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f1c3f;
    margin: 0;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hours-list li {
    display: flex;
    flex-direction: column;
    font-size: 0.88rem;
}

.hours-list span {
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hours-list strong {
    color: #0f1c3f;
    font-size: 0.95rem;
    font-weight: 800;
    margin-top: 2px;
}

.text-green { color: #16a34a !important; }

/* Direct WhatsApp Sidebar Banner */
.wa-direct-card {
    background: linear-gradient(135deg, #0f1c3f 0%, #1a2e63 100%);
    color: #ffffff;
    text-align: center;
}

.wa-big-icon {
    font-size: 3rem;
    color: #25D366;
    margin-bottom: 15px;
}

.wa-direct-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.wa-direct-card p {
    font-size: 0.88rem;
    color: #cbd5e1;
    margin-bottom: 22px;
    line-height: 1.5;
}

.tb-btn-wa-direct {
    background: #25D366;
    color: #ffffff !important;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none !important;
    font-size: 0.95rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    width: 100%;
}

.tb-btn-wa-direct:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Embedded Map Section */
.tb-contact-map-section {
    padding: 0 0 90px 0;
}

.tb-map-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(15, 28, 63, 0.1);
    border: 3px solid #ffffff;
    margin-top: 35px;
}

/* Responsive Alignment Fixes */
@media (max-width: 1024px) {
    .tb-contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tb-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .tb-contact-cards-grid {
        grid-template-columns: 1fr;
    }
    .tb-contact-form-box {
        padding: 25px 20px;
    }
    .tb-aligned-form .form-row {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 0;
    }
}


/* ================= STICKY HEADER DROPDOWN TEXT FIX ================= */

/* 1. Dropdown Container Styling (Dark Navy Background) */
.tb-nav ul ul,
.tb-nav .sub-menu,
.tb-nav .dropdown-menu {
    background-color: #0f1c3f !important; /* Dark Navy Background */
    border-radius: 12px !important;
    padding: 10px 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    border-top: 3px solid #f26522 !important; /* Brand Orange Top Border */
}

/* 2. Default Dropdown Links Text Color -> WHITE */
.tb-header.scrolled .tb-nav ul ul a,
.tb-header.scrolled .tb-nav .sub-menu a,
.tb-header.scrolled .tb-nav .dropdown-menu a,
.tb-header.scrolled .tb-nav li ul li a {
    color: #ffffff !important; /* DEFAULT WHITE TEXT */
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    padding: 10px 20px !important;
    display: block !important;
    transition: all 0.3s ease !important;
}

/* 3. Hover State Dropdown Links -> ORANGE */
.tb-header.scrolled .tb-nav ul ul a:hover,
.tb-header.scrolled .tb-nav .sub-menu a:hover,
.tb-header.scrolled .tb-nav .dropdown-menu a:hover,
.tb-header.scrolled .tb-nav li ul li a:hover {
    color: #f26522 !important; /* ORANGE ON HOVER */
    background-color: rgba(242, 101, 34, 0.12) !important; /* Soft orange hover highlight */
    padding-left: 25px !important; /* Subtle slide-right effect */
}













/* ================= EDITORIAL TRAVEL GUIDE STYLES ================= */

/* Hero Banner */
.tb-guide-hero {
    position: relative;
    width: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 70px 24px;
    background-color: #0f1c3f;
    overflow: hidden;
    color: #ffffff;
}

.tb-dh-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tb-dh-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tb-dh-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 28, 63, 0.75) 0%, rgba(15, 28, 63, 0.9) 100%);
    z-index: 2;
}

.tb-dh-container {
    position: relative;
    z-index: 3;
}

.tb-dh-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    margin: 14px 0 16px 0;
}

.tb-dh-byline {
    font-size: 1.05rem;
    font-weight: 500;
    color: #cbd5e1;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Directory Page Outer Wrapper */
.tb-guide-page {
    padding: 60px 0 90px 0;
    background-color: #f8fafc;
}

.tb-editorial-directory {
    background-color: #ffffff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 40px rgba(15, 28, 63, 0.05);
    overflow: hidden;
}

.tb-editorial-section {
    padding: 60px 50px;
    border-bottom: 1px solid #e2e8f0;
}

.tb-editorial-section:last-child {
    border-bottom: none;
}

.tb-section-index {
    font-size: 0.82rem;
    font-weight: 800;
    color: #f26522;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.tb-chapter-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: #0f1c3f;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.tb-chapter-desc {
    font-size: 1.02rem;
    color: #475569;
    font-weight: 500;
    margin: 0 0 35px 0;
    line-height: 1.65;
}

/* Quick Facts Grid & Frame */
.tb-grid-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 45px;
    align-items: center;
}

.tb-facts-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.tb-facts-list li {
    font-size: 0.88rem;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 8px;
}

.tb-facts-list li strong {
    color: #0f1c3f;
    font-weight: 800;
    display: block;
    margin-bottom: 2px;
}

.tb-editorial-frame {
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 12px;
    background-color: #f8fafc;
}

.tb-editorial-frame img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    margin-bottom: 10px;
}

.tb-frame-caption {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 600;
    text-align: center;
}

/* Dual Column Spreads */
.tb-editorial-split, .tb-food-split, .tb-shopping-grid, .tb-etiquette-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 35px;
}

.tb-editorial-col p {
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* Highlight Cards Grid */
.tb-highlight-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.tb-highlight-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 28px;
    transition: all 0.3s ease;
}

.tb-highlight-card:hover {
    border-color: #f26522;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(242, 101, 34, 0.1);
}

.tb-hc-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background-color: #fff1ec;
    color: #f26522;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.tb-highlight-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f1c3f;
    margin: 0 0 10px 0;
}

.tb-highlight-card p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* Climate Cards & Table */
.tb-climate-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 45px;
}

.tb-climate-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.tb-climate-card:hover {
    border-color: #f26522;
    transform: translateY(-4px);
}

.tb-climate-card h5 {
    font-size: 1.08rem;
    font-weight: 800;
    color: #0f1c3f;
    margin: 0 0 4px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tb-card-temp {
    font-size: 0.88rem;
    font-weight: 800;
    color: #f26522;
}

.tb-climate-sub {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    margin: 0 0 14px 0;
}

.tb-climate-para {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.55;
    margin: 0;
}

/* Weather Table Styling */
.tb-block-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f1c3f;
    margin-bottom: 16px;
}

.tb-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.tb-guide-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.tb-guide-table th {
    background-color: #0f1c3f;
    color: #ffffff;
    padding: 14px 18px;
    font-weight: 800;
    text-align: left;
}

.tb-guide-table td {
    padding: 12px 18px;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    font-weight: 600;
}

.tb-guide-table tr:hover td {
    background-color: #f8fafc;
}

.gold-text {
    color: #f59e0b;
    font-weight: 700;
}

/* Festivals List */
.tb-festivals-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tb-festival-item {
    border-left: 3.5px solid #f26522;
    padding-left: 20px;
}

.tb-festival-item h5 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f1c3f;
    margin: 0 0 6px 0;
}

.tb-gold-highlight {
    color: #f26522;
}

.tb-festival-item p {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.55;
    margin: 0;
}

/* Food & Bullet List */
.tb-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tb-bullet-list li {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.tb-bullet-list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: #f26522;
    border-radius: 50%;
}

.tb-editorial-callout {
    background-color: #fff1ec;
    border-left: 5px solid #f26522;
    padding: 28px;
    border-radius: 0 16px 16px 0;
}

.tb-editorial-callout h4 {
    font-size: 1.12rem;
    font-weight: 800;
    color: #0f1c3f;
    margin: 0 0 10px 0;
}

.tb-editorial-border-box {
    background-color: #fff7ed;
    border: 1px solid rgba(242, 101, 34, 0.3);
    border-radius: 16px;
    padding: 25px;
    margin-top: 25px;
}

.tb-editorial-border-box h5 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #f26522;
    margin: 0 0 8px 0;
}

.tb-editorial-border-box p {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Transit Grid & Etiquette */
.tb-transit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tb-transit-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 26px;
}

.tb-transit-card h5 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f1c3f;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tb-etiquette-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 28px;
}

.tb-etiquette-card h5 {
    font-size: 1.08rem;
    font-weight: 800;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive Adaptation Rules */
@media (max-width: 1024px) {
    .tb-editorial-section {
        padding: 45px 30px;
    }
    .tb-grid-container, 
    .tb-editorial-split, 
    .tb-food-split, 
    .tb-shopping-grid, 
    .tb-etiquette-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .tb-highlight-cards, 
    .tb-climate-blocks, 
    .tb-transit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .tb-editorial-section {
        padding: 35px 20px;
    }
    .tb-facts-list {
        grid-template-columns: 1fr;
    }
    .tb-highlight-cards, 
    .tb-climate-blocks, 
    .tb-transit-grid {
        grid-template-columns: 1fr;
    }
}





/* ================= FLIGHT DIRECTORY STYLES ================= */

/* Hero Banner */
.tb-flight-hero {
    position: relative;
    width: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 70px 24px;
    background-color: #0f1c3f;
    overflow: hidden;
    color: #ffffff;
}

.tb-gh-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tb-gh-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tb-gh-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 28, 63, 0.75) 0%, rgba(15, 28, 63, 0.92) 100%);
    z-index: 2;
}

.tb-gh-container {
    position: relative;
    z-index: 3;
}

.tb-gh-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    margin: 14px 0 16px 0;
}

.tb-gh-tagline {
    font-size: 1.05rem;
    font-weight: 500;
    color: #cbd5e1;
    max-width: 720px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
}

.tb-gh-ribbon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 16px 35px;
    backdrop-filter: blur(8px);
    max-width: 800px;
    margin: 0 auto;
}

.tb-ribbon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tb-ribbon-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #f26522;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
}

.tb-ribbon-value {
    font-size: 0.9rem;
    font-weight: 800;
    color: #ffffff;
}

.tb-ribbon-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.25);
}

/* Page Outer Section */
.tb-flight-page {
    padding: 60px 0 90px 0;
    background-color: #f8fafc;
}

/* Tab Switcher Buttons */
.tb-tab-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.tb-tab-btn {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #0f1c3f;
    font-size: 0.92rem;
    font-weight: 800;
    padding: 12px 26px;
    border-radius: 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.tb-tab-btn i {
    color: #f26522;
}

.tb-tab-btn:hover,
.tb-tab-btn.active {
    background-color: #0f1c3f;
    border-color: #0f1c3f;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(15, 28, 63, 0.2);
}

.tb-tab-btn.active i {
    color: #ffffff;
}

/* Tab Panels Switching */
.tb-tab-panel {
    display: none;
}

.tb-tab-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Route Blocks */
.tb-route-block {
    margin-bottom: 45px;
}

.tb-route-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 12px;
    margin-bottom: 22px;
}

.tb-route-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f1c3f;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tb-pill-tag {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #0f1c3f;
    padding: 4px 14px;
    border-radius: 20px;
}

/* Flight Grid & Minimalist Cards */
.tb-flight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.tb-flight-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(15, 28, 63, 0.03);
    transition: all 0.3s ease;
}

.tb-flight-card:hover {
    border-color: #f26522;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(242, 101, 34, 0.1);
}

.tb-fc-header {
    background-color: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tb-airline-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f1c3f;
}

.tb-fc-frequency {
    font-size: 0.78rem;
    font-weight: 700;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tb-fc-body {
    padding: 20px;
}

.tb-time-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.tb-time-stop {
    display: flex;
    flex-direction: column;
}

.tb-time-stop strong {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f1c3f;
    line-height: 1.1;
}

.tb-time-stop span {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 700;
    margin-top: 2px;
}

.tb-time-line {
    flex: 1;
    text-align: center;
    padding: 0 16px;
}

.tb-time-line span {
    font-size: 0.72rem;
    font-weight: 700;
    color: #f26522;
    display: block;
    margin-bottom: 4px;
}

.tb-plane-line {
    height: 2px;
    background-color: #cbd5e1;
    position: relative;
}

.tb-plane-line::after {
    content: "\f072";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    background-color: #ffffff;
    padding: 0 4px;
    color: #0f1c3f;
    font-size: 0.8rem;
}

.tb-fc-days {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0;
    border-top: 1px dashed #e2e8f0;
    padding-top: 12px;
}

.tb-fc-days strong {
    color: #0f1c3f;
}

/* Connecting Flights & Good Box */
.tb-transit-intro {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 25px;
}

.tb-transit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.tb-transit-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 24px;
}

.tb-t-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.tb-t-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #fff1ec;
    color: #f26522;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.tb-t-header h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f1c3f;
    margin: 0;
}

.tb-t-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tb-t-list li {
    font-size: 0.88rem;
    color: #475569;
    margin-bottom: 10px;
    line-height: 1.5;
}

.tb-good-box {
    background-color: #fff7ed;
    border: 1px solid rgba(242, 101, 34, 0.3);
    border-radius: 16px;
    padding: 25px;
}

.tb-good-box h5 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #f26522;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tb-gtk-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tb-gtk-list li {
    font-size: 0.88rem;
    color: #475569;
    margin-bottom: 10px;
    line-height: 1.55;
}

/* Disclaimer Box */
.tb-disclaimer-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 25px 30px;
    margin-top: 40px;
}

.tb-disclaimer-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f1c3f;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tb-disclaimer-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Rules */
@media (max-width: 992px) {
    .tb-gh-ribbon {
        flex-direction: column;
        gap: 12px;
        padding: 18px;
    }
    .tb-ribbon-divider {
        display: none;
    }
    .tb-transit-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .tb-tab-btn {
        width: 100%;
        justify-content: center;
    }
    .tb-route-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ================= FIX AIRPLANE ICON ORIENTATION (POINT RIGHTWARD) ================= */
.tb-plane-line::after {
    content: "\f072";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    /* Rotates icon to point straight RIGHTWARD towards destination */
    transform: translate(-50%, -50%) rotate(0deg) !important; 
    background-color: #ffffff;
    padding: 0 4px;
    color: #0f1c3f;
    font-size: 0.85rem;
    line-height: 1;
}



/* ================= GLOBAL SOFT CONTAINER UTILITY EFFECT ================= */
.tb-soft-container {
    background: #ffffff !important;
    border-radius: 24px !important; /* Smooth 24px corner curve matching your screenshot */
    border: 1px solid #e2e8f0 !important; /* Subtle light gray-blue outline */
    /* Soft floating shadow extending to left & bottom */
    box-shadow: -15px 15px 40px rgba(15, 28, 63, 0.06), 0 4px 15px rgba(0, 0, 0, 0.02) !important;
    position: relative;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.tb-soft-container:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(242, 101, 34, 0.35) !important; /* Orange glow on hover */
    box-shadow: -20px 20px 50px rgba(15, 28, 63, 0.1), 0 8px 25px rgba(242, 101, 34, 0.08) !important;
}

/* ================= VISA GUIDE PAGE STYLES ================= */

/* Hero Banner */
.tb-visa-hero {
    position: relative;
    width: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 70px 24px;
    background-color: #0f1c3f;
    overflow: hidden;
    color: #ffffff;
}

/* Page Outer Section */
.tb-visa-page {
    padding: 60px 0 90px 0;
    background-color: #f8fafc;
}

.tb-visa-guide {
    padding: 20px 0;
}

.tb-editorial-section {
    padding: 55px 45px;
    border-bottom: 1px solid #f1f5f9;
}

.tb-editorial-section:last-child {
    border-bottom: none;
}

.tb-section-index {
    font-size: 0.82rem;
    font-weight: 800;
    color: #f26522;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.tb-chapter-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: #0f1c3f;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.tb-chapter-desc {
    font-size: 1.02rem;
    color: #475569;
    font-weight: 500;
    margin: 0 0 35px 0;
    line-height: 1.65;
}

/* Inner Split Cards */
.tb-inner-card {
    padding: 30px 28px !important;
}

.tb-editorial-frame {
    padding: 14px !important;
}

.tb-editorial-frame img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    margin-bottom: 12px;
}

.tb-frame-caption {
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 600;
    text-align: center;
}

/* Highlight Cards Grid */
.tb-highlight-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.tb-highlight-card {
    padding: 30px 26px !important;
}

.tb-hc-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background-color: #fff1ec;
    color: #f26522;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 18px;
}

.tb-highlight-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f1c3f;
    margin: 0 0 10px 0;
}

.tb-highlight-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Timeline Flow - Step-by-Step */
.tb-timeline-flow {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.tb-timeline-spine {
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 28px;
    width: 2px;
    background-color: #cbd5e1;
    z-index: 1;
}

.tb-timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.tb-timeline-marker {
    width: 130px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.tb-timeline-icon {
    width: 54px;
    height: 54px;
    background-color: #ffffff;
    border: 2px solid #0f1c3f;
    color: #0f1c3f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(15, 28, 63, 0.1);
    flex-shrink: 0;
}

.tb-timeline-time {
    font-size: 0.85rem;
    font-weight: 800;
    color: #f26522;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tb-timeline-item .tb-activity-card {
    flex: 1;
    padding: 22px 26px !important;
}

.tb-timeline-item .tb-activity-card h5 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f1c3f;
    margin: 0 0 6px 0;
}

.tb-timeline-item .tb-activity-card p {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Callout Box Warning */
.tb-editorial-callout {
    padding: 28px 30px !important;
    border-left: 5px solid #f26522 !important;
    margin-top: 25px;
}

.tb-editorial-callout.warning {
    border-left-color: #f26522 !important;
}

.tb-editorial-callout h4 {
    font-size: 1.12rem;
    font-weight: 800;
    color: #0f1c3f;
    margin: 0 0 10px 0;
}

.tb-editorial-callout p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

/* FAQ List Cards */
.tb-faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tb-faq-item {
    padding: 24px 28px !important;
    border-left: 5px solid #f26522 !important;
}

.tb-faq-item h5 {
    font-size: 1.08rem;
    font-weight: 800;
    color: #0f1c3f;
    margin: 0 0 8px 0;
}

.tb-faq-item p {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* CTA Exploration Banner */
.tb-explore-cta {
    padding: 35px 40px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin: 30px 45px 50px 45px !important;
    border-left: 6px solid #f26522 !important;
}

.tb-exp-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f1c3f;
    margin: 0 0 6px 0;
}

.tb-exp-desc {
    font-size: 0.92rem;
    color: #475569;
    margin: 0;
}

.tb-exp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #ffffff !important;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none !important;
    font-size: 0.92rem;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tb-exp-btn:hover {
    background-color: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Responsive Adaptation Rules */
@media (max-width: 1024px) {
    .tb-editorial-section {
        padding: 45px 25px;
    }
    .tb-highlight-cards {
        grid-template-columns: 1fr;
    }
    .tb-editorial-split {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .tb-timeline-spine {
        left: 18px;
    }
    .tb-timeline-item {
        flex-direction: column;
        gap: 12px;
    }
    .tb-timeline-marker {
        width: 100%;
    }
    .tb-timeline-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .tb-explore-cta {
        margin: 20px !important;
        flex-direction: column;
        text-align: center;
        padding: 25px 20px !important;
    }
    .tb-exp-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ================= FIX: DISABLE HOVER ON OUTER CONTAINER / BLANK SPACE ================= */

/* 1. Lock the outer section container so it stays still when hovering blank areas */
.tb-editorial-directory.tb-soft-container,
.tb-visa-guide.tb-soft-container,
main > .container > .tb-soft-container {
    transform: none !important;
    transition: none !important;
}

.tb-editorial-directory.tb-soft-container:hover,
.tb-visa-guide.tb-soft-container:hover,
main > .container > .tb-soft-container:hover {
    transform: none !important; /* No shift on blank space hover */
    box-shadow: -15px 15px 40px rgba(15, 28, 63, 0.06), 0 4px 15px rgba(0, 0, 0, 0.02) !important;
    border-color: #e2e8f0 !important;
}

/* 2. Keep the hover lift & glow EXCLUSIVELY on internal cards & text boxes */
.tb-highlight-card:hover,
.tb-fact-card:hover,
.tb-activity-card:hover,
.tb-faq-item:hover,
.tb-climate-card:hover,
.tb-transit-card:hover,
.tb-inner-card:hover,
.tb-editorial-frame:hover,
.tb-explore-cta:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(242, 101, 34, 0.35) !important;
    box-shadow: -20px 20px 50px rgba(15, 28, 63, 0.1), 0 8px 25px rgba(242, 101, 34, 0.08) !important;
}





/* ================= FORCE VERTICAL LIST VIEW FOR DROPDOWN SUBMENU ================= */

/* 1. Force Submenu to Stack Vertically */
.has-dropdown .submenu,
.tb-nav ul ul,
.tb-nav .submenu {
    display: flex !important;
    flex-direction: column !important; /* FORCES VERTICAL LIST VIEW */
    width: 330px !important;            /* Clean vertical dropdown width */
    max-width: 90vw !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background-color: #0f1c3f !important; /* Dark Navy Background */
    border-radius: 12px !important;
    padding: 8px 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important;
    border-top: 3px solid #f26522 !important; /* Brand Orange Top Border */
    list-style: none !important;
    margin: 0 !important;
    z-index: 9999 !important;
}

/* 2. Each List Item Takes Full Width on Its Own Line */
.has-dropdown .submenu li,
.tb-nav ul ul li,
.tb-nav .submenu li {
    width: 100% !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 3. Dropdown Link Formatting (Default White) */
.has-dropdown .submenu li a,
.tb-nav ul ul li a,
.tb-nav .submenu li a {
    display: block !important;
    width: 100% !important;
    padding: 12px 20px !important;
    color: #ffffff !important; /* Default White Text */
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-transform: none !important; /* Natural Reading Case */
    text-align: left !important;
    white-space: normal !important; /* Allows long text to wrap cleanly */
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    transition: all 0.3s ease !important;
}

.has-dropdown .submenu li:last-child a,
.tb-nav ul ul li:last-child a {
    border-bottom: none !important;
}

/* 4. Hover State (Orange Text + Soft Background Tint) */
.has-dropdown .submenu li a:hover,
.tb-nav ul ul li a:hover {
    color: #f26522 !important; /* Brand Orange Text */
    background-color: rgba(242, 101, 34, 0.12) !important; /* Soft Hover Tint */
    padding-left: 25px !important; /* Smooth Slide-Right Animation */
}








/* ==========================================================================
   CONTACT US PAGE - COMPLETE STYLESHEET
   ========================================================================== */

/* --- Soft Floating Container Effect (Matching Screenshot) --- */
.tb-soft-container {
    background: #ffffff !important;
    border-radius: 24px !important; /* Smooth 24px corner curve */
    border: 1px solid #e2e8f0 !important; /* Soft gray-blue border outline */
    /* Soft floating shadow extending to left & bottom */
    box-shadow: -15px 15px 40px rgba(15, 28, 63, 0.06), 0 4px 15px rgba(0, 0, 0, 0.02) !important;
    position: relative;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Card-Level Interactive Hover Glow */
.tb-contact-card.tb-soft-container:hover,
.tb-sidebar-card.tb-soft-container:hover,
.tb-map-card.tb-soft-container:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(242, 101, 34, 0.35) !important;
    box-shadow: -20px 20px 50px rgba(15, 28, 63, 0.1), 0 8px 25px rgba(242, 101, 34, 0.08) !important;
}

/* Stops outer form container from shifting on blank space hover */
.tb-contact-form-box.tb-soft-container:hover {
    transform: none !important;
}

/* --- Hero Breadcrumb Banner --- */
.tb-contact-hero {
    position: relative;
    padding: 140px 0 70px 0;
    background: url('https://images.unsplash.com/photo-1528127269322-539801943592?q=80&w=1600&auto=format&fit=crop') center center/cover no-repeat;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.tb-contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 28, 63, 0.85) 0%, rgba(15, 28, 63, 0.72) 100%);
    z-index: 1;
}

.tb-contact-hero-container {
    position: relative;
    z-index: 2;
}

.tb-contact-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 12px;
}

.tb-breadcrumb {
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tb-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tb-breadcrumb a:hover {
    color: #f26522;
}

.tb-breadcrumb i {
    font-size: 0.75rem;
    color: #f26522;
}

/* --- Quick Contact Info Cards --- */
.tb-contact-cards-section {
    padding: 60px 0;
    background-color: #f8fafc;
    margin-top: -30px;
    position: relative;
    z-index: 5;
}

.tb-contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tb-contact-card {
    padding: 35px 28px !important;
    text-align: center;
}

.contact-card-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #fff1ec;
    color: #f26522;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 6px 18px rgba(242, 101, 34, 0.2);
}

.icon-blue { background: #e0f2fe; color: #0284c7; box-shadow: 0 6px 18px rgba(2, 132, 199, 0.2); }
.icon-green { background: #dcfce7; color: #16a34a; box-shadow: 0 6px 18px rgba(22, 163, 74, 0.2); }

.tb-contact-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f1c3f;
    margin-bottom: 8px;
}

.tb-contact-card p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 16px;
}

.contact-link {
    font-size: 1.15rem;
    font-weight: 800;
    color: #f26522;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover { color: #0f1c3f; }
.contact-text { font-size: 1.15rem; font-weight: 800; color: #0f1c3f; }

/* --- Contact Form & Sidebar Section --- */
.tb-contact-main-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.tb-contact-wrapper {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 45px;
    align-items: flex-start;
}

.tb-contact-form-box {
    padding: 40px !important;
}

.form-desc {
    font-size: 0.92rem;
    color: #64748b;
    margin-top: 6px;
    margin-bottom: 25px;
}

/* --- Re-Optimized 11-Field Form --- */
.tb-reoptimized-form {
    width: 100%;
}

.form-section-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #0f1c3f;
    margin: 22px 0 16px 0;
    padding-bottom: 6px;
    border-bottom: 2px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-section-title:first-of-type {
    margin-top: 0;
}

.tb-reoptimized-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 0;
}

.tb-reoptimized-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.tb-reoptimized-form .form-group.full-width {
    width: 100%;
    grid-column: span 2;
}

.tb-reoptimized-form label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f1c3f;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tb-reoptimized-form label .required {
    color: #f26522;
}

.tb-reoptimized-form .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.tb-reoptimized-form .input-icon {
    position: absolute;
    left: 16px;
    color: #f26522;
    font-size: 0.95rem;
    pointer-events: none;
    z-index: 2;
}

.tb-reoptimized-form .input-icon.wa-green {
    color: #25D366;
}

.tb-reoptimized-form .textarea-wrapper .input-icon {
    top: 16px;
    transform: none;
}

/* Uniform 52px Inputs & Select Boxes */
.tb-reoptimized-form input[type="text"],
.tb-reoptimized-form input[type="tel"],
.tb-reoptimized-form input[type="email"],
.tb-reoptimized-form input[type="number"],
.tb-reoptimized-form input[type="date"],
.tb-reoptimized-form .select-input {
    width: 100%;
    height: 52px; /* Fixed uniform height */
    padding: 0 16px 0 46px;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: #0f1c3f;
    background-color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Custom Dropdown Arrow */
.tb-reoptimized-form .select-input {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f26522' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.tb-reoptimized-form textarea {
    width: 100%;
    padding: 14px 16px 14px 46px;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: #0f1c3f;
    background-color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 100px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.tb-reoptimized-form input:focus,
.tb-reoptimized-form select:focus,
.tb-reoptimized-form textarea:focus {
    border-color: #f26522;
    box-shadow: 0 0 0 4px rgba(242, 101, 34, 0.15);
}

/* Submit Button */
.tb-reoptimized-form .tb-btn-form-submit {
    margin-top: 10px;
    width: 100%;
    height: 54px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f26522 0%, #d85212 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(242, 101, 34, 0.35);
    transition: all 0.3s ease;
}

.tb-reoptimized-form .tb-btn-form-submit:hover {
    background: linear-gradient(135deg, #ff712e 0%, #f26522 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(242, 101, 34, 0.5);
}

/* --- Sidebar Info Cards --- */
.tb-contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tb-sidebar-card {
    padding: 30px !important;
}

.sidebar-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
}

.sidebar-card-title h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f1c3f;
    margin: 0;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hours-list li {
    display: flex;
    flex-direction: column;
    font-size: 0.88rem;
}

.hours-list span {
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hours-list strong {
    color: #0f1c3f;
    font-size: 0.95rem;
    font-weight: 800;
    margin-top: 2px;
}

.text-green { color: #16a34a !important; }

/* Direct WhatsApp Banner */
.wa-direct-card {
    background: linear-gradient(135deg, #0f1c3f 0%, #1a2e63 100%) !important;
    color: #ffffff;
    text-align: center;
}

.wa-big-icon {
    font-size: 3rem;
    color: #25D366;
    margin-bottom: 15px;
}

.wa-direct-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
}

.wa-direct-card p {
    font-size: 0.88rem;
    color: #cbd5e1;
    margin-bottom: 22px;
    line-height: 1.5;
}

.tb-btn-wa-direct {
    background: #25D366;
    color: #ffffff !important;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none !important;
    font-size: 0.95rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    width: 100%;
}

.tb-btn-wa-direct:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* --- Embedded Map Section --- */
.tb-contact-map-section {
    padding: 0 0 90px 0;
}

.tb-map-card {
    overflow: hidden;
    margin-top: 35px;
    padding: 0 !important;
}

.tb-map-card iframe {
    display: block;
    border-radius: 24px;
}

/* --- Responsive Rules --- */
@media (max-width: 1024px) {
    .tb-contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tb-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .tb-contact-cards-grid {
        grid-template-columns: 1fr;
    }
    .tb-contact-form-box {
        padding: 25px 18px !important;
    }
    .tb-reoptimized-form .form-row {
        grid-template-columns: 1fr; /* Single column stack on mobile */
        gap: 0;
    }
    .tb-reoptimized-form .form-group.full-width {
        grid-column: span 1;
    }
}


/* ================= HERO TITLE FIX: ORANGE & MATCHED FONT SIZE ================= */

/* Hero Title Container */
.tb-contact-hero-title,
.tb-dh-title,
.tb-about-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem) !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

/* Script Word ("TripBinders") -> Same Size as "Contact" & Primary Orange */
.tb-contact-hero-title .script-word,
.tb-contact-hero-title .script-word-gold,
.tb-dh-title .script-word-gold,
.tb-gh-title .script-word-gold,
.tb-about-hero-title .script-word {
    font-family: 'Satisfy', cursive !important;
    font-size: clamp(2.5rem, 5vw, 3.8rem) !important; /* EXACT SAME SIZE AS "CONTACT" */
    font-weight: 400 !important;
    color: #f26522 !important; /* BRAND ORANGE INSTEAD OF GOLD */
    text-shadow: 2px 3px 10px rgba(242, 101, 34, 0.4) !important;
    text-transform: none !important;
    display: inline-block !important;
    line-height: 1 !important;
    margin-left: 4px !important;
    vertical-align: middle !important;
}



/* ================= FLOATING WHATSAPP BUTTON ================= */
.tb-wa-float {
    position: fixed;
    bottom: 40px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    z-index: 99999;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: waPulse 2.5s infinite;
}

.tb-wa-float:hover {
    background-color: #20bd5a;
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* Green Pulse Effect */
@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Tooltip on Hover */
.tb-wa-tooltip {
    position: absolute;
    right: 75px;
    background: #0f1c3f;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tb-wa-float:hover .tb-wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobile Adjustment */
@media (max-width: 600px) {
    .tb-wa-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.8rem;
    }
    .tb-wa-tooltip {
        display: none; /* Hide tooltip on mobile touch screens */
    }
}



/* ================= BACK TO TOP BUTTON ================= */
.tb-back-to-top {
    position: fixed;
    bottom: 120px; /* Positioned stacked right above WhatsApp button */
    right: 35px;
    width: 50px;
    height: 50px;
    background-color: #0f1c3f; /* Dark Navy Background */
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 6px 20px rgba(15, 28, 63, 0.3);
    z-index: 99998;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Shown on scroll */
.tb-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tb-back-to-top:hover {
    background-color: #f26522; /* Primary Orange on hover */
    border-color: #f26522;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(242, 101, 34, 0.45);
}

/* Mobile Adjustment */
@media (max-width: 600px) {
    .tb-back-to-top {
        bottom: 82px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}