        /* ===== BLOG PAGE STYLES ===== */
        :root {
            --brand-orange: #fcbf14;
            --brand-dark: #024b99;
            --brand-light-orange: #fff4e6;
            --text-muted: #777;
            --border-light: #f0ece5;
            --card-shadow: 0 4px 28px rgba(0,0,0,0.07);
        }
@media (max-width: 991px) {
    .trv-blog-why,
    .trv-sidebar-cta {
        display: none !important;
    }
}
        /* BLOG LAYOUT */
        .trv-blog-page-wrap {
            padding: 80px 0 100px;
            background: #fdfaf7;
        }

        /* ===== SIDEBAR ===== */
        .trv-blog-sidebar {
            position: sticky;
            top: 100px;
        }

        .trv-sidebar-widget {
            background: #fff;
            border-radius: 18px;
            padding: 28px 24px;
            margin-bottom: 28px;
            box-shadow: var(--card-shadow);
        }

        .trv-sidebar-title {
            font-size: 20px;
            font-weight: 800;
            color: var(--brand-dark);
            margin-bottom: 20px;
            padding-bottom: 14px;
            border-bottom: 2px solid var(--border-light);
            position: relative;
        }

        .trv-sidebar-title::after {
            content: '';
            position: absolute;
            bottom: -2px; left: 0;
            width: 50px; height: 2px;
            background: var(--brand-orange);
        }

        /* CATEGORY BUTTONS */
        .trv-cat-btn-list {
            list-style: none;
            padding: 0; margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-height: 350px;
            overflow-y: auto;
            padding-right: 5px;
        }

        .trv-cat-btn-list::-webkit-scrollbar {
            width: 6px;
        }
        .trv-cat-btn-list::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 10px;
        }

        .trv-cat-btn-list li a {
            display: block;
            padding: 12px 18px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            color: var(--brand-dark);
            background: var(--brand-light-orange);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .trv-cat-btn-list li a:hover,
        .trv-cat-btn-list li a.active {
            background: var(--brand-orange);
            color: #fff;
            border-color: var(--brand-orange);
            transform: translateX(4px);
        }

        /* RECENT POSTS IN SIDEBAR */
        .trv-recent-post {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-light);
        }

        .trv-recent-post:last-child { border-bottom: none; }

        .trv-recent-post .rp-img {
            width: 70px; height: 60px;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
            background: #eee;
        }

        .trv-recent-post .rp-img img {
            width: 100%; height: 100%;
            object-fit: cover;
        }

        .trv-recent-post .rp-info .rp-date {
            font-size: 12px;
            color: var(--brand-orange);
            font-weight: 600;
            margin-bottom: 4px;
        }

        .trv-recent-post .rp-info a {
            font-size: 13.5px;
            font-weight: 700;
            color: var(--brand-dark);
            text-decoration: none;
            line-height: 1.4;
            display: block;
            transition: color 0.2s;
        }

        .trv-recent-post .rp-info a:hover {
            color: var(--brand-orange);
        }

        /* ===== BLOG GRID ===== */
        .trv-blog-grid-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 32px;
            flex-wrap: wrap;
            gap: 12px;
        }

        .trv-blog-grid-header h3 {
            font-size: 22px;
            font-weight: 800;
            color: var(--brand-dark);
            margin: 0;
        }

        .trv-blog-grid-header p {
            color: var(--text-muted);
            font-size: 14px;
            margin: 0;
        }

        /* BLOG CARD */
        .trv-blog-card {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            margin-bottom: 30px;
            transition: all 0.35s ease;
            border: 1px solid var(--border-light);
        }

        .trv-blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 50px rgba(0,0,0,0.12);
        }

        .trv-blog-card .card-img {
            position: relative;
            overflow: hidden;
            height: 220px;
        }

        .trv-blog-card .card-img img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .trv-blog-card:hover .card-img img {
            transform: scale(1.07);
        }

        .trv-blog-card .card-img .card-category {
            position: absolute;
            top: 14px; left: 14px;
            background: var(--brand-orange);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .trv-blog-card .card-img .card-overlay-title {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            background: linear-gradient(to top, rgba(26,26,46,0.92) 0%, transparent 100%);
            padding: 50px 18px 18px;
        }

        .trv-blog-card .card-img .card-overlay-title h4 {
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            margin: 0;
            line-height: 1.4;
        }

        .trv-blog-card .card-img .card-overlay-title h4 span {
            color: var(--brand-orange);
        }

        .trv-blog-card .card-body-custom {
            padding: 22px 20px 20px;
        }

        .trv-blog-card .card-meta {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 12px;
        }

        .trv-blog-card .card-meta .meta-date {
            font-size: 12.5px;
            color: var(--brand-orange);
            font-weight: 700;
        }

        .trv-blog-card .card-meta .meta-author {
            font-size: 12.5px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .trv-blog-card .card-title {
            font-size: 17px;
            font-weight: 800;
            color: var(--brand-dark);
            margin-bottom: 10px;
            line-height: 1.45;
            text-decoration: none;
            display: block;
            transition: color 0.2s;
        }

        .trv-blog-card .card-title:hover { color: var(--brand-orange); }

        .trv-blog-card .card-desc {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .blog-scroll {
            max-height: 1200px;
            overflow-y: auto;
            padding-right: 5px;
        }

        /* Scrollbar */
        .blog-scroll::-webkit-scrollbar {
            width: 6px;
        }
        .blog-scroll::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 10px;
        }

        .trv-blog-card .read-more {
            font-size: 13.5px;
            font-weight: 700;
            color: var(--brand-orange);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.2s;
        }

        .trv-blog-card .read-more:hover { gap: 10px; color: var(--brand-orange); }

        /* INTRO SECTION */
        .trv-blog-intro {
            background: linear-gradient(135deg, #fff9f2 0%, #fff4e6 100%);
            border: 1px solid #ffe0bc;
            border-radius: 18px;
            padding: 36px 32px;
            margin-bottom: 40px;
        }

        .trv-blog-intro h2 {
            font-size: 26px;
            font-weight: 800;
            color: var(--brand-dark);
            margin-bottom: 10px;
        }

        .trv-blog-intro h2 span { color: var(--brand-orange); }

        .trv-blog-intro p {
            color: #555;
            line-height: 1.75;
            margin-bottom: 10px;
            font-size: 15px;
        }

        /* WHY FOLLOW */
        .trv-blog-why {
            background: var(--brand-dark);
            border-radius: 18px;
            padding: 28px 24px;
        }

        .trv-blog-why h5 {
            color: #fff;
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 16px;
        }

        .trv-blog-why ul {
            list-style: none;
            padding: 0; margin: 0;
        }

        .trv-blog-why ul li {
            color: rgba(255,255,255,0.8);
            font-size: 13.5px;
            padding: 7px 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .trv-blog-why ul li:last-child { border-bottom: none; }

        .trv-blog-why ul li::before {
            content: '✔';
            color: var(--brand-orange);
            font-size: 12px;
            flex-shrink: 0;
        }

        /* PAGINATION */
        .trv-blog-pagination {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 40px;
        }

        .trv-blog-pagination a {
            width: 42px; height: 42px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            color: var(--brand-dark);
            background: #fff;
            text-decoration: none;
            border: 2px solid var(--border-light);
            transition: all 0.2s;
        }

        .trv-blog-pagination a:hover,
        .trv-blog-pagination a.active {
            background: var(--brand-orange);
            color: #fff;
            border-color: var(--brand-orange);
        }

        /* SEARCH BOX */
        .trv-search-box {
            position: relative;
        }

        .trv-search-box input {
            width: 100%;
            padding: 12px 48px 12px 18px;
            border: 2px solid var(--border-light);
            border-radius: 50px;
            font-size: 14px;
            outline: none;
            transition: border-color 0.2s;
        }

        .trv-search-box input:focus {
            border-color: var(--brand-orange);
        }

        .trv-search-box button {
            position: absolute;
            right: 6px; top: 50%;
            transform: translateY(-50%);
            background: var(--brand-orange);
            border: none;
            width: 36px; height: 36px;
            border-radius: 50%;
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* CTA SIDEBAR */
        .trv-sidebar-cta {
background-color: #024b99;
            border-radius: 18px;
            padding: 30px 24px;
            text-align: center;
        }

        .trv-sidebar-cta h5 {
            color: #fff;
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .trv-sidebar-cta p {
            color: rgba(255,255,255,0.85);
            font-size: 13px;
            margin-bottom: 18px;
        }

        .trv-sidebar-cta a {
            display: block;
            background:#f5a623  ;
            color:white;
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.2s;
        }

        .trv-sidebar-cta a:hover {
            background: #f5a623;
            color: #fff;
        }

        .no-blogs-message {
            text-align: center;
            padding: 60px 20px;
            background: #fff;
            border-radius: 18px;
            font-size: 16px;
            color: #777;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .trv-blog-sidebar { position: relative; top: auto; margin-top: 40px; }
        }

        @media (max-width: 576px) {
            .trv-blog-card .card-img { height: 180px; }
            .trv-blog-intro { padding: 24px 18px; }
        }
