/* =====================================================
   TVE Custom CSS - Home Page UI Redesign
   Brand Colors: #F96D21 (Orange) | #002830 (Dark Teal)
   ===================================================== */

/* =====================================================
   CSS VARIABLES
   ===================================================== */
:root {
    --tve-orange: #f96d21;
    --tve-orange-dark: #e05a10;
    --tve-teal: #002830;
    --tve-teal-light: #004a5c;
    --tve-off-white: #eeeeeeab;
    --tve-white: #ffffff;
    --tve-shadow: 0 8px 30px rgba(0, 40, 48, 0.12);
    --tve-shadow-hover: 0 16px 48px rgba(0, 40, 48, 0.2);
    --tve-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    /* ── Typography scale ── */
    --tve-fs-body:    18px;   /* normal paragraph text */
    --tve-fs-md:      16px;   /* secondary descriptions */
    --tve-fs-sm:      14px;   /* captions, labels, meta */
    --tve-fs-xs:      12px;   /* fine print */
    --tve-lh-body:    1.75;   /* comfortable reading line-height */
}

/* =====================================================
   TYPOGRAPHY UTILITIES  (reusable across all sections)
   ===================================================== */

.tve-text-body {
    font-size: var(--tve-fs-body) !important;
    line-height: var(--tve-lh-body) !important;
}

.tve-text-md {
    font-size: var(--tve-fs-md) !important;
    line-height: 1.65 !important;
}

.tve-text-sm {
    font-size: var(--tve-fs-sm) !important;
    line-height: 1.55 !important;
}

.tve-text-xs {
    font-size: var(--tve-fs-xs) !important;
    line-height: 1.5 !important;
}

/* =====================================================
   GLOBAL OVERRIDES
   ===================================================== */

/* Override red (#C62828) with brand orange */
.ht-btn,
.ht-btn-sm,
.btn-one,
.search-area .search-input:hover,
.theme-menu-one .search-area .search-input:hover,
.theme-menu-one .cart-menu .shopping-cart:hover {
    background-color: var(--tve-orange) !important;
    border-color: var(--tve-orange) !important;
}

.main-menu ul li a.active,
.main-menu ul li a:hover {
    color: var(--tve-orange) !important;
}

/* Section headings underline accent */
.title-one .title::after {
    background: var(--tve-orange) !important;
}

/* =====================================================
   SECTION BACKGROUNDS (Alternating Pattern)
   ===================================================== */

/* Services Section → White */
.service-section {
    background-color: var(--tve-white) !important;
}

/* How It Works → Off-white */
.tw_how-it-works-section {
    background-color: var(--tve-off-white) !important;
}

/* Countries Section → White */
.offer-country-section {
    background-color: var(--tve-white) !important;
}

/* Country pills — 20% smaller */
.country-list .item {
    padding: 12px 38px 12px 12px;
    gap: 12px;
    margin-left: 12px;
    margin-right: 12px;
    border-radius: 44px;
}

.country-list .item span {
    font-size: 22px;
}

.country-list .item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

/* Required Documents → Dark Teal */
.what-we-do-section {
    background: linear-gradient(
        135deg,
        var(--tve-teal) 0%,
        var(--tve-teal-light) 100%
    ) !important;
}

/* Testimonials → Off-white */
.testimonial-section,
.testimonials {
    background-color: var(--tve-off-white) !important;
}



/* =====================================================
   BANNER / HERO — FULL CARD TILT
   ===================================================== */

/* Hero page background — just spacing, no color override */
.tve-hero-bg {
    padding: 60px 40px 40px;
    overflow: hidden;
    position: relative;
}

/* Decorative background shapes */
.tve-hero-bg::before,
.tve-hero-bg::after {
    content: '';
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}

/* Shape 2 - Top Right */
.tve-hero-bg::before {
    background-image: url('../img/shape/shape-2.png');
    width: 320px;
    height: 320px;
    top: 20px;
    right: 40px;
}

/* Shape 4 - Top Left */
.tve-hero-bg::after {
    background-image: url('../img/shape/shape-4.png');
    width: 300px;
    height: 300px;
    top: 10px;
    left: 30px;
}

/* Shape 10 - Left Side */
.tve-hero-shape-left {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    height: 280px;
    background: url('../img/shape/shape-10.png') no-repeat center;
    background-size: contain;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

/* Shape 5 - Random placement (bottom right area) */
.tve-hero-shape-random1 {
    position: absolute;
    right: 15%;
    bottom: 8%;
    width: 240px;
    height: 240px;
    background: url('../img/shape/shape-5.png') no-repeat center;
    background-size: contain;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
}

/* Shape 41 - Random placement (left bottom area) */
.tve-hero-shape-random2 {
    position: absolute;
    left: 10%;
    bottom: 12%;
    width: 220px;
    height: 220px;
    background: url('../img/shape/shape-41.png') no-repeat center;
    background-size: contain;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

/* The full banner card — tilted + scaled down (desktop only) */
.tve-hero-bg .banner-section {
    transform: rotate(-3deg) scale(0.78);
    transform-origin: center center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.55),
        0 0 60px rgba(249, 109, 33, 0.12);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.5s ease;
    position: relative;
    z-index: 1;
}

.tve-hero-bg .banner-section:hover {
    transform: rotate(0deg) scale(0.93) translateY(-8px);
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(249, 109, 33, 0.2);
}

@media (max-width: 991.98px) {
    .tve-hero-bg {
        padding: 60px 0px 40px;
    }

    .tve-hero-bg h1 {
        text-align: center;
        width: 100%;
    }

    .tve-hero-bg .banner-section {
        transform: none;
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    .tve-hero-bg .banner-section:hover {
        transform: translateY(-4px);
    }
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */

.tve-services-section {
    background: #eeeeeeab;
}

.tve-services-section .title-one .title {
    color: var(--tve-teal);
}

.tve-services-section .title-one .title::after {
    background: var(--tve-orange);
}

/* See All Services button */
.tve-services-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--tve-orange);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--tve-transition);
}

.tve-services-btn:hover {
    background: var(--tve-teal);
    color: #fff;
    transform: translateY(-2px);
}

/* Card */
.tve-service-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,40,48,0.08);
    border-bottom: 4px solid transparent;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tve-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(0,40,48,0.16);
    border-bottom-color: var(--tve-orange);
}

/* Image area */
.tve-service-card__img {
    position: relative;
    overflow: hidden;
}

.tve-service-card__img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.tve-service-card:hover .tve-service-card__img img {
    transform: scale(1.07);
}

/* Floating icon badge */
.tve-service-card__icon {
    position: absolute;
    bottom: 10px;
    left: 24px;
    width: 52px;
    height: 52px;
    background: var(--tve-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 6px 20px rgba(249,109,33,0.4);
    transition: background 0.3s ease, transform 0.3s ease;
}

.tve-service-card:hover .tve-service-card__icon {
    background: var(--tve-teal);
    transform: rotate(10deg) scale(1.1);
}

/* Card body */
.tve-service-card__body {
    padding: 40px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tve-service-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--tve-teal);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.tve-service-card:hover .tve-service-card__title {
    color: var(--tve-orange);
}

.tve-service-card__desc {
    font-size: var(--tve-fs-body);
    color: #555;
    line-height: var(--tve-lh-body);
    flex: 1;
    margin-bottom: 20px;
}

.tve-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--tve-orange);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.tve-service-card__link:hover {
    gap: 10px;
    color: var(--tve-teal);
}


/* =====================================================
   HOW IT WORKS SECTION
   ===================================================== */

.tw_how-it-works-section {
    background-color: #f8f9fa;
    padding-top: 100px !important;
}

.tw_how-it-works-section .title {
    color: var(--tve-teal);
}

/* =====================================================
   WORKING PROCESS — Dark Variant
   ===================================================== */

.tw_process-dark {
    background-color: var(--tve-off-white) !important;
}

.tw_process-heading {
    color: var(--tve-teal) !important;
}

.tw_process-subheading {
    color: var(--tve-teal-light);
}

.tw_process-step {
    padding: 10px 20px;
}

.tw_process-number {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--tve-orange);
    margin-bottom: 6px;
}

.tw_process-icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--tve-orange);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.tw_process-icon-wrap i {
    font-size: 36px;
    color: #fff;
}

.tw_process-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--tve-teal);
    margin-bottom: 10px;
    line-height: 1.3;
}

.tw_process-desc {
    font-size: var(--tve-fs-body);
    color: var(--tve-teal-light);
    line-height: var(--tve-lh-body);
    margin: 0;
    max-width: 200px;
    margin-inline: auto;
}

.tw_process-arrow {
    width: 260px;
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(10%) sepia(30%) saturate(500%) hue-rotate(155deg) brightness(60%);
}

.tw_process-arrow--flip {
    transform: scaleY(-1);
}

.tw_process-arrow--sm {
    width: 160px;
}

.tw_process-arrow--sm.tw_process-arrow--flip {
    transform: scaleY(-1);
}

.arrow-down {
    padding-bottom: 120px;
}

.arrow-up {
    padding-top: 90px;
}

.tw_process-row-divider {
    height: 1px;
    background: rgba(0, 40, 48, 0.12);
    margin: 60px 0;
}

.tw_process-wide-container {
    width: 100%;
    max-width: 1600px;
    margin-inline: auto;
    padding-inline: 24px;
}

/* Card */
.tw_step-card {
    position: relative;
    background: var(--tve-white);
    border-radius: 12px;
    padding: 30px 24px 28px;
    box-shadow: 0 4px 24px rgba(0, 40, 48, 0.08);
    transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
    height: 100%;
}

.tw_step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 40, 48, 0.2);
}

/* Per-step hover background */
.tw_step-1:hover,
.tw_step-3:hover { background: var(--tve-orange); }

.tw_step-2:hover,
.tw_step-4:hover { background: var(--tve-teal); }

/* Large faded watermark number — top right */
.tw_step-watermark {
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    color: rgba(0, 40, 48, 0.07);
    font-family: "GeneralSans", "Lato", sans-serif;
    pointer-events: none;
    user-select: none;
    transition: color 0.35s ease;
}

.tw_step-card:hover .tw_step-watermark {
    color: rgba(255, 255, 255, 0.15);
}

/* Circular icon badge */
.tw_step-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.35s ease, transform 0.35s ease;
}

.tw_step-icon-wrap i {
    font-size: 26px;
    color: var(--tve-white);
    transition: color 0.35s ease;
}

.tw_step-card:hover .tw_step-icon-wrap {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: scale(1.08) rotate(5deg);
}

/* Alternating icon colors */
.tw_step-1 .tw_step-icon-wrap { background: var(--tve-orange); }
.tw_step-2 .tw_step-icon-wrap { background: var(--tve-teal); }
.tw_step-3 .tw_step-icon-wrap { background: var(--tve-orange); }
.tw_step-4 .tw_step-icon-wrap { background: var(--tve-teal); }

/* Title */
.tw_step-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.35;
    transition: color 0.35s ease;
}

.tw_step-1 .tw_step-title,
.tw_step-3 .tw_step-title { color: var(--tve-orange); }

.tw_step-2 .tw_step-title,
.tw_step-4 .tw_step-title { color: var(--tve-teal); }

.tw_step-card:hover .tw_step-title {
    color: var(--tve-white) !important;
}

/* Description */
.tw_step-desc {
    color: rgba(0, 40, 48, 0.65);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    transition: color 0.35s ease;
}

.tw_step-card:hover .tw_step-desc {
    color: rgba(255, 255, 255, 0.85);
}


/* =====================================================
   COUNTRIES SECTION — MARQUEE STRIP REDESIGN
   ===================================================== */

/* Section wrapper */
.tve-country-strip-section {
    background-color: var(--tve-white);
    padding: 100px 0 140px;
    overflow: hidden;
    position: relative;
}

/* Subtle bg overlay */
.tve-country-strip-section .tve-section-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* Shape image — top right */
.tve-country-strip-section .tve-shape-img {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.85;
}

/* Keep content above overlay/shape */
.tve-country-strip-section > .container {
    position: relative;
    z-index: 1;
}

/* Heading — uses site's existing .title-one styles, no overrides needed */

/* ── Outer tilted wrapper ── */
.tve-marquee-wrapper {
    margin-top: 50px;
    transform: rotate(-2deg);
    width: 110%;
    margin-left: -5%;
    overflow: visible;
    background: #002830;
    padding: 18px 0;
    box-shadow:
        0 -6px 30px rgba(0, 0, 0, 0.15),
        0 6px 30px rgba(0, 0, 0, 0.15);
}

/* Each row */
.tve-marquee-row {
    overflow: hidden;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tve-marquee-row:last-child {
    border-bottom: none;
}

/* Scrolling track */
.tve-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 0;
}

/* Left-scrolling animation */
@keyframes marqueeLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Right-scrolling animation */
@keyframes marqueeRight {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.tve-marquee-left {
    animation: marqueeLeft 28s linear infinite;
}

.tve-marquee-right {
    animation: marqueeRight 32s linear infinite;
}

/* Pause on hover */
.tve-marquee-row:hover .tve-marquee-track {
    animation-play-state: paused;
}

/* Individual country item */
.tve-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 32px 0 0;
    cursor: pointer;
    transition: opacity 0.25s ease;
    white-space: nowrap;
}

.tve-marquee-item:hover {
    opacity: 0.85;
}

/* Orange circular flag badge */
.tve-marquee-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    background: var(--tve-orange);
    overflow: hidden;
    border: 3px solid var(--tve-orange);
    box-shadow: 0 4px 14px rgba(249, 109, 33, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tve-marquee-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.tve-marquee-item:hover .tve-marquee-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(249, 109, 33, 0.6);
}

/* Country name text */
.tve-marquee-name {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'GeneralSans', 'Lato', sans-serif;
}

/* Separator dot between items */
.tve-marquee-item::after {
    content: '•';
    color: rgba(249, 109, 33, 0.5);
    font-size: 20px;
    margin-left: 32px;
    line-height: 1;
}

/* Mobile: slow down slightly */
@media (max-width: 767.98px) {
    .tve-marquee-left  { animation-duration: 20s; }
    .tve-marquee-right { animation-duration: 24s; }
    .tve-marquee-name  { font-size: 13px; letter-spacing: 1px; }
    .tve-marquee-icon  { width: 36px; height: 36px; min-width: 36px; font-size: 16px; }
    .tve-marquee-item  { gap: 10px; padding-right: 22px; }
    .tve-marquee-item::after { margin-left: 22px; font-size: 16px; }
}

/* Bottom wave for country section */
.tve-wave--country-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    animation: wavesFadeIn 1.2s ease 0.3s forwards;
}

.tve-wave--country-bottom svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Individual country card */
.tve-country-card {
    background: var(--tve-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 40, 48, 0.1);
    transition: var(--tve-transition);
    display: flex;
    flex-direction: column;
}

.tve-country-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 40, 48, 0.18);
}

/* Card image area */
.tve-country-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tve-country-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tve-country-card:hover .tve-country-card__image img {
    transform: scale(1.08);
}

/* Country name overlay on image */
.tve-country-card__name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 16px 14px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        transparent 100%
    );
    color: var(--tve-white);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "GeneralSans", "Lato", sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Card body */
.tve-country-card__body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tve-country-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--tve-teal);
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Details list */
.tve-country-card__details {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    flex: 1;
}

.tve-country-card__details li {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 13px;
    color: rgba(0, 40, 48, 0.75);
    padding: 4px 0;
    border-bottom: 1px solid rgba(0, 40, 48, 0.06);
    line-height: 1.4;
}

.tve-country-card__details li:last-child {
    border-bottom: none;
}

.tve-country-card__details li strong {
    color: var(--tve-teal);
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.tve-country-card__details li span {
    color: var(--tve-orange);
    font-weight: 500;
}

/* Price row */
.tve-country-card__price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 40, 48, 0.08);
}

.tve-country-card__price-label {
    font-size: 11px;
    color: rgba(0, 40, 48, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.tve-country-card__price {
    font-size: 20px;
    font-weight: 800;
    color: var(--tve-orange);
    line-height: 1;
}

.tve-country-card__price small {
    font-size: 11px;
    color: rgba(0, 40, 48, 0.5);
    font-weight: 400;
    display: block;
    margin-top: 2px;
}

/* Apply Now button */
.tve-country-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--tve-orange);
    color: var(--tve-white) !important;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 3.125rem;
    text-decoration: none;
    transition: var(--tve-transition);
    white-space: nowrap;
    border: 2px solid var(--tve-orange);
}

.tve-country-card__btn:hover {
    background: var(--tve-teal);
    border-color: var(--tve-teal);
    color: var(--tve-white) !important;
    transform: translateX(3px);
}

.tve-country-card__btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.tve-country-card__btn:hover i {
    transform: translateX(3px);
}

/* =====================================================
   VISA CARD SIMPLE (visa-processing homepage section)
   ===================================================== */

.tve-visa-card-simple {
    background: #fff;
   border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 40, 48, 0.1);
    transition: var(--tve-transition);
    display: flex;
    flex-direction: column;
}

.tve-visa-card-simple:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 40, 48, 0.18);
}

.tve-visa-card-simple__frame {
    padding: 10px 10px 0;
}

.tve-visa-card-simple__frame a {
    display: block;
}

.tve-visa-card-simple__frame img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 1.5rem;

    display: block;
    transition: transform 0.5s ease;
}

.tve-visa-card-simple:hover .tve-visa-card-simple__frame img {
    transform: scale(1.04);
}

.tve-visa-card-simple__btn {
display: block;
    text-align: center;
    background: #1a2332;
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 20px;
       margin: 28px 10px 12px;
    border-radius: 40px;
    transition: var(--tve-transition);
}

.tve-visa-card-simple__btn:hover {
    background: var(--tve-orange);
    color: #fff !important;
}

@media (max-width: 991.98px) {
    .tve-visa-card-simple__frame img {
        height: 170px;
    }
}

@media (max-width: 767.98px) {
    .tve-visa-card-simple__frame img {
        height: 155px;
    }
}

/* =====================================================
   VISA PACKAGES SECTION (visa-processing.blade.php)
   ===================================================== */

.tve-visa-packages-section {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}

/* View All Visa button - same style as See All Services */
.tve-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--tve-orange);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--tve-transition);
}

.tve-view-all-btn:hover {
    background: var(--tve-teal);
    color: #fff;
    transform: translateY(-2px);
}

/* Wave wrappers — all absolutely positioned behind content */
.tve-wave {
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    animation: wavesFadeIn 1.2s ease forwards;
}

.tve-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

@keyframes wavesFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Top wave: hugs the very top edge, 280px tall */
.tve-wave--top {
    top: 0;
    height: 280px;
    animation-delay: 0s;
}

/* Middle wave 1 — upper third */
.tve-wave--mid1 {
    top: 35%;
    transform: translateY(-50%);
    height: 440px;
    animation-delay: 0.3s;
    animation: wavesMidFadeIn 1.2s ease 0.3s forwards;
}

/* Middle wave 2 — lower third, different shape */
.tve-wave--mid2 {
    top: 50%;
    transform: translateY(-50%);
    height: 360px;
    animation-delay: 0.5s;
    animation: wavesMidFadeIn 1.2s ease 0.5s forwards;
}

/* Bottom wave: hugs the very bottom edge */
.tve-wave--bottom {
    bottom: 0;
    height: 360px;
    animation-delay: 0.2s;
}

@keyframes wavesMidFadeIn {
    from { opacity: 0; transform: translateY(calc(-50% + 10px)); }
    to   { opacity: 1; transform: translateY(-50%); }
}

/* Keep content above the waves */
.tve-visa-packages-section > .container {
    position: relative;
    z-index: 1;
}

.tve-section-shoulder {
    color: var(--tve-orange);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* =====================================================
   REQUIRED DOCUMENTS SECTION
   ===================================================== */

.what-we-do-section .title {
    color: var(--tve-white) !important;
}

.what-we-do-section .title-one .title::after {
    background: var(--tve-orange) !important;
}

/* Document cards */
.tv_visa-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: var(--tve-transition);
    position: relative;
    overflow: hidden;
}

.tv_visa-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--tve-orange);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.tv_visa-card:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(249, 109, 33, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.tv_visa-card:hover::before {
    transform: scaleX(1);
}

.tv_visa-card h4 {
    color: #002830;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.tv_visa-card .card-icon svg path {
    fill: #002830;
}

.tv_info-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    top: auto;
    width: 34px;
    height: 34px;
    background: #f96d21;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--tve-transition);
    z-index: 10;
}

.tv_info-icon:hover {
    background: var(--tve-teal);
    transform: scale(1.1);
}

/* =====================================================
   TESTIMONIALS SECTION — REDESIGN
   ===================================================== */

.tve-testimonial-section {
    background: var(--tve-white);
    position: relative;
    overflow: hidden;
}

/* Decorative shape */
.tve-testi-shape {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.04;
    pointer-events: none;
}


/* Card */
.tve-testi-card {
    background: var(--tve-white);
    border-radius: 16px;
    padding: 32px 28px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.tve-testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Quote icon */
.tve-testi-quote {
    position: absolute;
    top: 20px;
    right: 24px;
}

.tve-testi-quote i {
    font-size: 52px;
    color: var(--tve-orange);
    opacity: 0.12;
    line-height: 1;
}

/* Stars */
.tve-testi-stars i {
    color: #f5a623;
    font-size: 14px;
}

/* Review text */
.tve-testi-text {
    font-size: var(--tve-fs-body);
    line-height: var(--tve-lh-body);
    color: rgba(0, 26, 31, 0.75);
    flex: 1;
    margin: 0;
    font-style: italic;
}

/* Author row */
.tve-testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 40, 48, 0.08);
    margin-top: auto;
}

/* Avatar + flag */
.tve-testi-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.tve-testi-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--tve-orange);
}

.tve-testi-flag {
    position: absolute;
    bottom: -2px;
    right: -4px;
    width: 20px;
    height: 14px;
    border-radius: 3px;
    object-fit: cover;
    border: 1px solid #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.tve-testi-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--tve-teal);
    margin: 0 0 3px;
}

.tve-testi-handle {
    font-size: 12px;
    color: rgba(0, 40, 48, 0.5);
}

/* Navigation */
.tve-testi-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.tve-testi-prev,
.tve-testi-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: transparent;
    color: var(--tve-white);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tve-testi-prev:hover,
.tve-testi-next:hover {
    background: var(--tve-orange);
    border-color: var(--tve-orange);
}

.tve-testi-pagination .swiper-pagination-bullet {
    background: rgba(0, 40, 48, 0.25);
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

.tve-testi-pagination .swiper-pagination-bullet-active {
    background: var(--tve-orange);
    width: 24px;
    border-radius: 4px;
}

/* ── Testimonial card (uses existing .testimonials Swiper) ── */
.testimonials-item {
    background: var(--tve-white);
    border-radius: 16px;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 40, 48, 0.08);
    border: 1px solid rgba(0, 40, 48, 0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: auto;
}

.testimonials-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 40px rgba(0, 40, 48, 0.14) !important;
    background: var(--tve-white) !important;
    border-color: rgba(0, 40, 48, 0.2) !important;
}

/* Override theme's .testimonials grid layout — let Swiper control it */
.tve-testimonial-section .testimonials {
    display: block !important;
    grid-template-columns: unset !important;
    gap: unset !important;
    padding: 10px 0 50px !important;
    background: transparent !important;
    overflow: visible !important;
}

/* Allow hover lift to show above the swiper row */
.tve-testimonial-section .testimonials .swiper-wrapper {
    overflow: visible !important;
}


/* =====================================================
   FAQ SECTION
   ===================================================== */

.tve-faq-section {
    background: #f8f9fa;
}

.tve-faq-item {
    background: var(--tve-white);
    border-radius: 12px;
    border: 1px solid rgba(0, 40, 48, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.tve-faq-item:hover,
.tve-faq-item.open {
    box-shadow: 0 8px 32px rgba(0, 40, 48, 0.1);
    border-color: rgba(0, 40, 48, 0.15);
}

/* Header */
.tve-faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    cursor: pointer;
    gap: 16px;
    border-left: 4px solid transparent;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.tve-faq-item.open .tve-faq-header {
    border-left-color: var(--tve-orange);
    background: rgba(249, 109, 33, 0.03);
}

.tve-faq-header h2 {
    font-size: 17px;
    font-weight: 600;
    color: var(--tve-teal);
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

/* Icon */
.tve-faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 40, 48, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.35s ease;
}

.tve-faq-icon i {
    font-size: 16px;
    color: var(--tve-teal);
    transition: color 0.3s ease;
}

.tve-faq-item.open .tve-faq-icon {
    background: var(--tve-orange);
    transform: rotate(45deg);
}

.tve-faq-item.open .tve-faq-icon i {
    color: var(--tve-white);
}

/* Body */
.tve-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.tve-faq-item.open .tve-faq-body {
    max-height: 400px;
}

.tve-faq-body-inner {
    padding: 0 28px 24px 32px;
    border-left: 4px solid var(--tve-orange);
}

.tve-faq-body-inner p {
    color: rgba(0, 40, 48, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* =====================================================
   BLOG SECTION
   ===================================================== */

/* =====================================================
   BLOG SECTION (Editorial Layout)
   ===================================================== */

.tve-blog-section {
    background: var(--tve-white);
    padding-bottom: 100px;
    position: relative;
}

/* Top Accent Bar */
.tve-blog-topbar {
    background: var(--tve-teal);
    padding: 12px 0;
    margin-bottom: 60px;
}

.tve-blog-topbar-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--tve-white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tve-blog-topbar-label i {
    color: var(--tve-orange);
    font-size: 16px;
}

.tve-blog-topbar-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tve-blog-topbar-link:hover {
    color: var(--tve-orange);
}

/* Special Heading */
.tve-blog-heading {
    margin-bottom: 50px;
    text-align: center;
}

.tve-blog-main-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--tve-teal);
    margin-bottom: 15px;
    line-height: 1.2;
}

.tve-blog-main-title span {
    color: var(--tve-orange);
    position: relative;
    display: inline-block;
}

.tve-blog-main-title span::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(249, 109, 33, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.tve-blog-subtitle {
    font-size: 18px;
    color: rgba(0, 40, 48, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layout */
.tve-blog-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 40px;
    align-items: stretch; /* Stretch to equal height */
}

@media (max-width: 991px) {
    .tve-blog-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Featured Card (Left) */
.tve-blog-featured {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--tve-white);
    box-shadow: 0 10px 40px rgba(0, 40, 48, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure it fills height if grid stretches */
    display: flex;
    flex-direction: column;
}

.tve-blog-featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 40, 48, 0.12);
}

.tve-blog-featured-thumb {
    height: 400px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.tve-blog-featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tve-blog-featured:hover .tve-blog-featured-thumb img {
    transform: scale(1.05);
}

.tve-blog-featured-body {
    padding: 35px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tve-blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(0, 40, 48, 0.6);
    font-weight: 500;
}

.tve-blog-meta i {
    color: var(--tve-orange);
}

.tve-blog-meta-dot {
    font-size: 20px; /* Big dot */
    line-height: 0;
    color: var(--tve-orange);
}

.tve-blog-featured .tve-blog-title {
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.tve-blog-excerpt {
    font-size: 16px;
    color: rgba(0, 40, 48, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Stacked Link Cards (Right) */
.tve-blog-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

.tve-blog-card {
    display: flex;
    gap: 20px;
    align-items: center; /* Vertical center alignment */
    background: var(--tve-white);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(0, 40, 48, 0.08);
    transition: all 0.3s ease;
    flex: 1; /* Distribute height equally */
}

.tve-blog-card:hover {
    border-color: var(--tve-orange);
    box-shadow: 0 10px 30px rgba(0, 40, 48, 0.08);
    transform: translateX(5px);
}

.tve-blog-card-thumb {
    width: 140px; /* Slightly smaller to give room for text */
    height: 100%; /* Match content height */
    min-height: 120px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.tve-blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tve-blog-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* New: Tag styling in body */
.tve-blog-card-body .tve-blog-tag {
    position: static;
    transform: none;
    display: inline-block;
    width: fit-content;
    margin-bottom: 10px;
    padding: 4px 10px;
    font-size: 11px;
    box-shadow: none;
}

.tve-blog-card .tve-blog-title {
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.tve-blog-card .tve-blog-excerpt {
    display: -webkit-box; /* Show excerpt now */
    font-size: 14px;
    margin-bottom: 12px;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tve-blog-card .tve-blog-readmore {
    font-size: 13px;
    margin-top: 0;
}

/* Common Components */
.tve-blog-tag {
    position: absolute;
    top: 20px;
    left: 20px; /* Default for featured */
    background: var(--tve-orange);
    color: var(--tve-white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(249, 109, 33, 0.4);
    white-space: nowrap;
}

.tve-blog-title a {
    color: var(--tve-teal);
    text-decoration: none;
    transition: color 0.3s linear;
}

.tve-blog-title a:hover {
    color: var(--tve-orange);
}

.tve-blog-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--tve-teal);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.tve-blog-readmore:hover {
    color: var(--tve-orange);
    gap: 12px;
}

/* Responsive adjustments */
@media (max-width: 575px) {
    .tve-blog-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .tve-blog-card-thumb {
        width: 100%;
        height: 180px;
    }
    .tve-blog-main-title {
        font-size: 32px;
    }
    .tve-blog-featured-thumb {
        height: 250px;
    }
    .tve-blog-featured-body {
        padding: 25px;
    }
}

/* =====================================================
   CONTACT / CTA SECTION
   ===================================================== */

.contact-section,
.cta-section {
    background: linear-gradient(
        135deg,
        var(--tve-orange) 0%,
        #e05a10 100%
    ) !important;
}

.contact-section *,
.cta-section * {
    color: var(--tve-white) !important;
}

.contact-section input,
.contact-section textarea,
.cta-section input,
.cta-section textarea {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: var(--tve-white) !important;
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

.contact-section input:focus,
.contact-section textarea:focus {
    border-color: var(--tve-white) !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.contact-section .ht-btn,
.cta-section .ht-btn {
    background: var(--tve-teal) !important;
    border-color: var(--tve-teal) !important;
}

.contact-section .ht-btn:hover,
.cta-section .ht-btn:hover {
    background: var(--tve-white) !important;
    color: var(--tve-teal) !important;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */

/* Fade in up for cards */
@keyframes tve-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for country cards */
.tve-country-card {
    animation: tve-fadeInUp 0.5s ease both;
}

.tve-country-card:nth-child(1) {
    animation-delay: 0.05s;
}
.tve-country-card:nth-child(2) {
    animation-delay: 0.1s;
}
.tve-country-card:nth-child(3) {
    animation-delay: 0.15s;
}
.tve-country-card:nth-child(4) {
    animation-delay: 0.2s;
}
.tve-country-card:nth-child(5) {
    animation-delay: 0.25s;
}
.tve-country-card:nth-child(6) {
    animation-delay: 0.3s;
}
.tve-country-card:nth-child(7) {
    animation-delay: 0.35s;
}
.tve-country-card:nth-child(8) {
    animation-delay: 0.4s;
}

/* Service cards stagger */
.service-wrap-one {
    animation: tve-fadeInUp 0.5s ease both;
}

/* Step cards stagger */
.tw_step-card {
    animation: tve-fadeInUp 0.5s ease both;
}

/* Smooth hover for all buttons */
a,
button {
    transition: var(--tve-transition);
}

/* =====================================================
   SECTION HEADING ACCENT LINE
   ===================================================== */

.title-one .title {
    position: relative;
    display: inline-block;
}

/* =====================================================
   SCROLLBAR STYLING
   ===================================================== */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--tve-off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--tve-orange);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--tve-teal);
}

/* =====================================================
   RESPONSIVE UTILITIES
   ===================================================== */

@media (max-width: 991.98px) {
    .tve-ticket-wrapper {
        transform: rotate(0deg);
    }

    .tve-ticket-wrapper:hover {
        transform: translateY(-4px);
    }

    .tve-country-card__image {
        height: 170px;
    }

    .tve-country-card__name-overlay {
        font-size: 18px;
    }
}

@media (max-width: 767.98px) {
    .tve-country-card__image {
        height: 160px;
    }

    .tve-country-card__price {
        font-size: 17px;
    }

    .tve-country-card__btn {
        font-size: 12px;
        padding: 8px 14px;
    }

    .tw_step-card {
        margin-bottom: 24px;
    }
}

@media (max-width: 479.98px) {
    .tve-country-card__price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .tve-country-card__btn {
        width: 100%;
        justify-content: center;
    }
}

/* =====================================================
   OFFER NEWS SECTION
   ===================================================== */

/* Offer news banner styling */

/* =====================================================
   VISA DETAIL PAGE — Override .what-we-do-section
   Reset dark teal background for visa detail sections.
   Combined into single rules to avoid specificity bugs.
   ===================================================== */

/* Hero section — white, no background color */
.tve-visa-hero-section,
.tve-visa-hero-section.what-we-do-section {
    background: #ffffff !important;
    position: relative;
    overflow: visible;
}

/* ── Visa image panel (left column) ── */
.tve-visa-img-panel {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--tve-shadow);
    aspect-ratio: 16 / 9;
}

.tve-visa-img-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.tve-visa-img-panel__fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--tve-teal) 0%, var(--tve-teal-light) 100%);
}

/* ── Full-width banner image (legacy, kept for other uses) ── */
.tve-visa-banner {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 420px;
    max-height: 560px;
    overflow: hidden;
    margin-bottom: 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.tve-visa-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Large screens ≥ 1400px — fix over-tall banner */
@media (min-width: 1400px) {
    .tve-visa-banner {
        height: 75vh;
        max-height: 860px;
    }
}

.tve-visa-banner__fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--tve-teal) 0%, #005a6e 100%);
}

/* ── Visa Intro Heading ── */
.tve-visa-intro {
    padding-top: 4px;
}

.tve-visa-intro__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--tve-orange);
    color: #ffffff;
    font-size: var(--tve-fs-xs);
    font-family: "Lato", sans-serif;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.tve-visa-intro__heading {
    font-size: 40px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: var(--tve-teal);
    line-height: 1.2;
    margin: 0 0 10px 0;
}

.tve-visa-intro__from {
    font-size: var(--tve-fs-md);
    font-family: "Lato", sans-serif;
    color: rgba(0, 40, 48, 0.60);
    line-height: var(--tve-lh-body);
    margin: 0 0 28px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tve-visa-intro__from strong {
    color: var(--tve-teal);
    font-weight: 700;
}

/* ── Trust Highlights ── */
.tve-visa-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.tve-vh-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--tve-off-white);
    border: 1px solid rgba(0, 40, 48, 0.08);
    border-radius: 12px;
    padding: 16px 18px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.tve-vh-item:hover {
    border-color: var(--tve-orange);
    box-shadow: 0 4px 16px rgba(0, 40, 48, 0.08);
}

.tve-vh-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(0, 40, 48, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--tve-teal);
    font-size: 18px;
}

.tve-vh-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.tve-vh-title {
    font-size: var(--tve-fs-sm);
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: var(--tve-teal);
    line-height: 1.2;
}

.tve-vh-sub {
    font-size: var(--tve-fs-xs);
    font-family: "Lato", sans-serif;
    color: rgba(0, 40, 48, 0.55);
    line-height: 1.4;
}

/* ── Meta Strip ── */
.tve-visa-meta-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tve-vms-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--tve-off-white);
    border: 1px solid rgba(0, 40, 48, 0.10);
    border-radius: 12px;
    padding: 14px 18px;
    flex: 1 1 calc(33.333% - 12px);
    min-width: 155px;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.tve-vms-item:hover {
    background: #ffffff;
    border-color: var(--tve-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 40, 48, 0.10);
}

.tve-vms-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--tve-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    font-size: 16px;
    transition: background 0.25s ease;
}

.tve-vms-item:hover .tve-vms-icon {
    background: var(--tve-teal);
}

.tve-vms-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.tve-vms-label {
    font-size: var(--tve-fs-xs);
    font-family: "Lato", sans-serif;
    font-weight: 600;
    color: rgba(0, 40, 48, 0.50);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
}

.tve-vms-value {
    font-size: var(--tve-fs-sm);
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: var(--tve-teal);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Responsive ── */

/* Tablet landscape (≤1199px) */
@media (max-width: 1199.98px) {
    .tve-visa-intro__heading {
        font-size: 34px;
    }
}

/* Tablet portrait (≤991px) */
@media (max-width: 991.98px) {
    .tve-visa-banner {
        height: 60vh;
        min-height: 380px;
        margin-bottom: 32px;
    }

    .tve-visa-intro__heading {
        font-size: 30px;
    }

    .tve-vms-item {
        flex: 1 1 calc(50% - 12px);
    }
}

/* Large mobile (≤767px) */
@media (max-width: 767.98px) {
    .tve-visa-banner {
        height: auto;
        min-height: unset;
        max-height: unset;
        margin-bottom: 24px;
    }

    .tve-visa-banner img {
        height: auto;
        object-fit: unset;
    }

    .tve-visa-intro__heading {
        font-size: 26px;
    }

    .tve-visa-intro__from {
        font-size: var(--tve-fs-sm);
        margin-bottom: 20px;
    }

    .tve-vms-item {
        flex: 1 1 calc(50% - 12px);
    }
}

/* Small mobile (≤575px) */
@media (max-width: 575.98px) {
    .tve-visa-intro__heading {
        font-size: 22px;
    }

    .tve-visa-intro__badge {
        font-size: 10px;
        padding: 4px 12px;
    }

    .tve-vms-item {
        flex: 1 1 calc(50% - 8px);
        padding: 12px 14px;
    }

    .tve-visa-meta-strip {
        gap: 8px;
    }

    .tve-visa-highlights {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .tve-vh-item {
        padding: 12px 14px;
    }
}

/* Process section — warm cream */
.visa-process,
.visa-process.what-we-do-section {
    background: #eeeeeeab !important;
}

/* Benefits section — white */
.tve-benefits-section,
.tve-benefits-section.what-we-do-section {
    background: #ffffff !important;
}

/* Required Documents section — warm cream */
.tve-docs-section,
.tve-docs-section.what-we-do-section {
    background: #eeeeeeab !important;
}

/* Title & text colors */
.tve-visa-hero-section .title,
.visa-process .title,
.tve-docs-section .title {
    color: var(--tve-teal) !important;
}

.tve-visa-hero-section .description-text,
.visa-process .description-text,
.tve-docs-section .description-text {
    color: rgba(0, 40, 48, 0.7) !important;
}

/* Section-wide font fixes — match home page Poppins/Lato scale */
.visa-process .process-card h3,
.tve-docs-section .tv_visa-card h4 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.visa-process .process-card p,
.tve-docs-section .tv_visa-card p {
    font-family: "Lato", sans-serif;
    font-size: var(--tve-fs-md);
    line-height: var(--tve-lh-body);
}

.tve-visa-hero-section .title,
.visa-process .title,
.tve-docs-section .title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}

.tve-visa-hero-section .description-text,
.visa-process .description-text,
.tve-docs-section .description-text {
    font-family: "Lato", sans-serif;
    font-size: var(--tve-fs-body);
    line-height: var(--tve-lh-body);
}

/* =====================================================
   REQUIRED DOCUMENTS CARDS — docs-section colour overrides
   (layout comes from base style.css .tv_visa-card)
   ===================================================== */

/* Card base appearance */
.tve-docs-section .tv_visa-card {
    background: #ffffff;
    border: 1px solid rgba(0, 40, 48, 0.09);
    box-shadow: 0 2px 12px rgba(0, 40, 48, 0.06);
}

/* Icon background — light teal tint */
.tve-docs-section .card-icon {
    background-color: #eef5f5;
}

/* Icon hover → light blue (matches image) */
.tve-docs-section .tv_visa-card:hover .card-icon {
    background-color: #deedf8;
}

/* SVG icon: dark teal by default */
.tve-docs-section .tv_visa-card .card-icon svg path {
    fill: #002830;
    transition: fill 0.35s ease;
}

/* Title */
.tve-docs-section .tv_visa-card h4,
.tve-visa-hero-section .tv_visa-card h4 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #002830;
    line-height: 1.35;
}

/* Info icon — orange */
.tve-docs-section .tv_info-icon {
    background: #f96d21;
    width: 34px;
    height: 34px;
}

.tve-docs-section .tv_info-icon svg {
    width: 18px;
    height: 18px;
}

/* On hover: info icon turns white with orange icon lines */
.tve-docs-section .tv_visa-card:hover .tv_info-icon {
    background: #ffffff;
}

.tve-docs-section .tv_visa-card:hover .tv_info-icon svg line,
.tve-docs-section .tv_visa-card:hover .tv_info-icon svg circle {
    stroke: #f96d21;
}

.tve-docs-section .tv_visa-card:hover .tv_info-icon svg circle[r="1"] {
    fill: #f96d21;
}

/* Process-card in alt-bg context */
.visa-process .process-card {
    background: #ffffff;
    border: 1px solid rgba(0, 40, 48, 0.08);
    box-shadow: 0 4px 20px rgba(0, 40, 48, 0.08);
}

.visa-process .process-card h3 {
    color: var(--tve-teal);
}

.visa-process .process-card p {
    color: rgba(0, 40, 48, 0.7);
}

.visa-process .process-card .step-no span {
    color: var(--tve-orange);
}

/* feature-wrap-three in white-bg context */
.tve-benefits-section .feature-wrap-three .feature-title {
    color: var(--tve-teal);
}

.tve-benefits-section .feature-wrap-three .feature-content p {
    color: rgba(0, 40, 48, 0.7);
}

/* =====================================================
   BANNER — Reduce overall height
   ===================================================== */
.banner-section .banner-section-wrapper .tourist-visa-expert {
    padding: 50px 100px !important;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .banner-section .banner-section-wrapper .tourist-visa-expert {
        padding: 40px 35px !important;
    }
}

@media (max-width: 1399px) {
    .banner-section .banner-section-wrapper .tourist-visa-expert {
        padding: 45px 20px !important;
    }
}

@media (max-width: 991.98px) {
    .banner-section .banner-section-wrapper .tourist-visa-expert {
        padding: 60px 40px 40px !important;
    }
}

.banner-section .banner-section-wrapper .visa-assistant {
    padding: 30px 40px 50px 26px !important;
}

/* =====================================================
   HEADER — Fix Layout Shift (CLS)
   The JS toggles class "sticky" (position:fixed) on
   any scroll, removing the header from the document
   flow and causing the banner to jump. Overriding to
   position:sticky keeps the header in flow at all
   times — no space is ever lost, no layout shift.
   ===================================================== */
header.header-area {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    border-bottom: 1px solid rgba(0, 40, 48, 0.1);
    transition: box-shadow 0.35s ease, background-color 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
}

header.style-1.sticky {
    position: sticky !important;
    border-bottom-color: transparent;
}

/* =====================================================
   APPLY VISA SECTION — Premium Card Design
   ===================================================== */

/* Visa image on the left — card height determines row height */
.tve-visa-hero-section > .container > .row {
    align-items: stretch !important;
}

.tve-visa-hero-section .col-lg-9 {
    position: relative;
    min-height: 340px;
}

.visa-thumb {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 40, 48, 0.14);
}

@media (max-width: 991.98px) {
    .visa-thumb {
        left: 15px;
        right: 15px;
    }
}

.visa-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    transition: transform 0.4s ease;
}

.visa-thumb:hover img {
    transform: scale(1.03);
}

/* Fallback when no image — centered text */
.visa-hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 30px;
    height: 100%;
}

.visa-hero-text__tag {
    display: inline-block;
    background: var(--tve-teal);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.visa-hero-text__title {
    color: var(--tve-teal);
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.visa-hero-text__sub {
    color: rgba(0, 40, 48, 0.55);
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

/* Overlay: gradient + text at bottom of image */
.visa-thumb-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 24px 22px;
    background: linear-gradient(
        to top,
        rgba(0, 40, 48, 0.88) 0%,
        rgba(0, 40, 48, 0.3) 60%,
        transparent 100%
    );
    border-radius: 0 0 16px 16px;
}

.visa-thumb-tag {
    display: inline-block;
    background: var(--tve-orange);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.visa-thumb-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.apply-visa-section {
    position: sticky;
    top: 100px;
    background: #ffffff;
    border-radius: 16px;
    /* No overflow:hidden — it traps Bootstrap modals behind the overlay */
    box-shadow: 0 8px 40px rgba(0, 40, 48, 0.12);
    border: 1px solid rgba(0, 40, 48, 0.08);
    font-family: 'Outfit', 'Inter', sans-serif;
}

/* Header */
.avs-header {
    background: linear-gradient(135deg, var(--tve-teal) 0%, #0a7272 100%);
    padding: 28px 24px 22px;
    text-align: center;
    position: relative;
}

.avs-badge {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.3);
    margin-bottom: 10px;
}

.avs-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 6px 0;
    letter-spacing: -0.3px;
}

.avs-subtitle {
    color: rgba(255,255,255,0.75);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Body */
.avs-body {
    padding: 22px 22px 24px;
}

/* Rows */
.avs-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.avs-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(0, 40, 48, 0.55);
    letter-spacing: 0.2px;
}

.avs-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--tve-teal);
    background: rgba(0, 128, 128, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
}

/* Traveller counter */
.avs-counter {
    display: flex;
    align-items: center;
    gap: 0;
    background: #eeeeeeab;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 40, 48, 0.1);
}

.avs-counter-btn {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    font-size: 16px;
    font-weight: 600;
    color: var(--tve-teal);
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avs-counter-btn:hover {
    background: rgba(0, 128, 128, 0.12);
}

.avs-counter-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--tve-teal);
    min-width: 28px;
    text-align: center;
}

/* Divider */
.avs-divider {
    height: 1px;
    background: rgba(0, 40, 48, 0.08);
    margin: 4px 0;
}

/* Total row */
.avs-row--total .avs-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(0, 40, 48, 0.8);
}

.avs-total-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--tve-orange);
    letter-spacing: -0.5px;
}

/* Promo pill */
.avs-promo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 14px 0 18px;
}

.avs-promo-pill {
    flex: 1;
    display: inline-block;
    background: linear-gradient(90deg, #fff8ec, #fff3d6);
    border: 1px dashed var(--tve-orange);
    color: #9a5e00;
    font-size: 11.5px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 8px;
    letter-spacing: 0.2px;
}

.avs-promo-info {
    color: rgba(0, 40, 48, 0.4);
    cursor: pointer;
    flex-shrink: 0;
    transition: color 0.2s;
}

.avs-promo-info:hover {
    color: var(--tve-teal);
}

/* CTA button */
.avs-cta-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px !important;
    background: linear-gradient(135deg, var(--tve-orange) 0%, #e05500 100%) !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(240, 100, 20, 0.35);
}

.avs-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(240, 100, 20, 0.45);
}

.avs-cta-btn i {
    font-size: 15px;
    transition: transform 0.2s;
}

.avs-cta-btn:hover i {
    transform: translateX(4px);
}

/* Notice bar */
.avs-notice-bar {
    background: rgba(0, 40, 48, 0.05);
    border-left: 3px solid var(--tve-teal);
    padding: 10px 16px;
    font-size: 13px;
    color: var(--tve-teal);
    border-radius: 16px 16px 0 0;
    margin-bottom: 0;
}

.avs-notice-bar strong {
    color: var(--tve-orange);
}

/* Fee rows */
.avs-fee-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 40, 48, 0.07);
}

.avs-fee-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--tve-teal);
}

.avs-fee-label i {
    color: var(--tve-teal-light);
}

.avs-fee-amount {
    font-size: 15px;
    font-weight: 700;
    color: var(--tve-teal);
}

.text-orange {
    color: var(--tve-orange) !important;
}

/* What's included */
.avs-included {
    background: rgba(249, 109, 33, 0.06);
    border-radius: 8px;
    padding: 12px 14px;
    margin: 4px 0 8px;
}

.avs-included-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--tve-orange);
    margin-bottom: 8px;
}

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

.avs-included-list li {
    font-size: 13px;
    color: var(--tve-teal);
    padding: 3px 0;
}

.avs-included-list li i {
    color: var(--tve-orange);
}

/* Support bar */
.avs-support-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 40, 48, 0.08);
    flex-wrap: wrap;
}

.avs-support-text {
    display: flex;
    flex-direction: column;
}

.avs-support-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--tve-teal);
}

.avs-support-sub {
    font-size: 11px;
    color: var(--tve-teal-light);
}

.avs-support-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.avs-support-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--tve-transition);
}

.avs-support-btn--wa {
    background: #25D366;
    color: #fff;
    font-size: 16px;
    padding: 7px 10px;
}

.avs-support-btn--wa:hover {
    background: #1ebe5d;
    color: #fff;
}

.avs-support-btn--phone {
    background: var(--tve-teal);
    color: #fff;
}

.avs-support-btn--phone:hover {
    background: var(--tve-teal-light);
    color: #fff;
}

.avs-support-btn--info {
    background: var(--tve-off-white);
    color: var(--tve-teal);
    border: 1px solid rgba(0, 40, 48, 0.15);
    font-size: 18px;
    padding: 6px 10px;
    cursor: pointer;
}

.avs-support-btn--info:hover {
    background: var(--tve-teal);
    color: #fff;
    border-color: var(--tve-teal);
}

/* =====================================================
   VISA INFO MODAL
   ===================================================== */

.avs-modal .modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.avs-modal__header {
    background: linear-gradient(135deg, var(--tve-teal) 0%, #0a7272 100%);
    color: #fff;
    border-bottom: none;
    padding: 20px 24px;
}

.avs-modal__header .modal-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.avs-modal__tabs {
    display: flex;
    border-bottom: 2px solid rgba(0, 40, 48, 0.08);
    background: var(--tve-off-white);
    padding: 0 16px;
    gap: 4px;
    flex-wrap: nowrap;
}

.avs-modal__tab {
    background: none;
    border: none;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--tve-teal-light);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--tve-transition);
    cursor: pointer;
}

.avs-modal__tab.active,
.avs-modal__tab:hover {
    color: var(--tve-teal);
    border-bottom-color: var(--tve-orange);
}

.avs-modal__body {
    padding: 24px;
}

/* Documents list */
.avs-modal__doc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.avs-modal__doc-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--tve-off-white);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--tve-teal);
}

.avs-modal__doc-icon {
    width: 32px;
    height: 32px;
    background: var(--tve-orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

/* FAQ accordion */
.avs-modal__acc-item {
    border: 1px solid rgba(0, 40, 48, 0.1);
    border-radius: 10px !important;
    margin-bottom: 8px;
    overflow: hidden;
}

.avs-modal__acc-btn {
    font-size: 14px;
    font-weight: 600;
    color: var(--tve-teal);
    background: var(--tve-off-white);
    padding: 14px 18px;
    box-shadow: none !important;
}

.avs-modal__acc-btn:not(.collapsed) {
    background: var(--tve-teal);
    color: #fff;
}

.avs-modal__acc-btn::after {
    filter: brightness(0) saturate(100%);
}

.avs-modal__acc-btn:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.avs-modal__acc-body {
    font-size: 14px;
    color: var(--tve-teal-light);
    line-height: 1.7;
    padding: 14px 18px;
}

.avs-modal__empty {
    text-align: center;
    color: var(--tve-teal-light);
    font-size: 14px;
    padding: 32px 0;
}

/* =====================================================
   SECTION HEADINGS — Reusable tag + heading
   ===================================================== */
.tve-section-tag {
    display: inline-block;
    background: rgba(0, 128, 128, 0.1);
    color: var(--tve-teal);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.tve-section-heading {
    font-size: 30px;
    font-weight: 800;
    color: var(--tve-teal);
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin: 0;
}

/* =====================================================
   BENEFIT CARDS — Premium warm-toned cards
   ===================================================== */
/* ── Benefits section header ── */
.tve-benefits-section {
    background: var(--tve-teal);
}

.tve-benefits-label {
    display: inline-block;
    font-family: "Lato", sans-serif;
    font-size: var(--tve-fs-xs);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tve-orange);
    margin-bottom: 12px;
}

.tve-benefits-heading {
    font-family: "Poppins", sans-serif;
    font-size: 35px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 14px 0;
}

.tve-benefits-sub {
    font-family: "Lato", sans-serif;
    font-size: var(--tve-fs-md);
    line-height: var(--tve-lh-body);
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* ── Benefit cards ── */
.tve-benefit-card {
    background: var(--tve-off-white);
    border: 1px solid rgba(0, 40, 48, 0.08);
    border-top: 4px solid var(--tve-orange);
    border-radius: 16px;
    padding: 36px 30px 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 40, 48, 0.07);
}

.tve-benefit-card:hover {
    background: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 40, 48, 0.14);
}

.tve-benefit-card__num {
    font-family: "Poppins", sans-serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    color: rgba(0, 40, 48, 0.07);
    position: absolute;
    top: 16px;
    right: 24px;
    user-select: none;
    transition: color 0.3s;
}

.tve-benefit-card:hover .tve-benefit-card__num {
    color: rgba(249, 109, 33, 0.13);
}

.tve-benefit-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--tve-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 22px;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(249, 109, 33, 0.25);
    transition: background 0.3s, transform 0.3s;
}

.tve-benefit-card:hover .tve-benefit-card__icon {
    background: var(--tve-teal);
    transform: scale(1.08);
}

.tve-benefit-card__title {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--tve-teal);
    margin: 0 0 12px 0;
    line-height: 1.35;
}

.tve-benefit-card__text {
    font-family: "Lato", sans-serif;
    font-size: var(--tve-fs-body);
    line-height: var(--tve-lh-body);
    color: rgba(0, 40, 48, 0.60);
    margin: 0;
}

.tve-benefit-card__accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--tve-orange);
    opacity: 0;
    transition: opacity 0.3s;
}

.tve-benefit-card:hover .tve-benefit-card__accent {
    opacity: 1;
}

@media (max-width: 767.98px) {
    .tve-benefit-card {
        padding: 28px 22px 24px;
    }
}
.tve-visa-packages-section .tve-shape-img {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.85;
}

.bg-one{
    background-color: #eeeeeeab !important;
}
.bg-two{
    background-color: #ffffff !important;
}
.banner-section .banner-section-wrapper .tourist-visa-expert .apply-and-travelling-area > ul li .single-search-box {
   border: 2px dashed var(--tw-p1);
    padding: 25px 16px;
}


/* #eeeeeeab */

/* =====================================================
   FOOTER — Social image links
   ===================================================== */
.footer-social-imgs {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-social-imgs a {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-social-imgs a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.footer-social-imgs img {
    height: 36px;
    width: auto;
    border-radius: 6px;
    display: block;
}
/* #F8F5F0 */