/* HERO */
.hero-section {
    height: 550px;
    overflow: hidden;
    background: url("/assets/images/homebanner.jpg") center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgb(0 0 0 / 22%), rgba(17, 24, 39, 0.75));
}

/* HERO TEXT */
.hero-text {
    position: relative;
    z-index: 2;
    padding-top: 210px;
}

.hero-text h1 {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
}

.hero-text h5 {
    margin-top: 20px;
    font-size: 28px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
}

.hero-text p {
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.78);
}

/* SEARCH CARD */
.search-container {
    position: relative;
    z-index: 2;
    margin-top: -3%;
    max-width: 1000px !important;
}

.search-card {
    background: #f7f3f3;
    border-radius: 16px;
    padding: 0px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* TABS */
.search-tabs {
    display: flex;
    gap: 32px;
}

.search-tabs span {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    position: relative;
    padding: 20px 20px;
}

.search-tabs span i {
    margin-right: 6px;
}

.search-tabs .active {
    color: #1a73e8;
    background: #fff;
}



/* LABELS */
.hlabel {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: #1a73e8;
}

/* INPUT BOX */
.input-box {
    height: 48px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 10px;
}

.input-box i {
    font-size: 16px;
    color: #1a73e8;
}

.input-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: #111827;
}

.input-box input::placeholder {
    color: #9ca3af;
}

/* SEARCH BUTTON */
.search-btn {
    width: 100%;
    height: 48px;
    border-radius: 10px;
    border: none;
    background: #1a73e8;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

/* POPULAR */
.popular {
    margin-top: 18px;
    font-size: 13px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 8px;
    /* 👈 yahi main gap */
    flex-wrap: wrap;
    border-top: 1px solid #e5e7eb;
    padding: 22px 0px 6px 0px;
}


.popular b {
    margin-left: 6px;
    background: #e8f0fe;
    color: #1a73e8;
    padding: 6px 12px;
    border-radius: 16px;
    font-weight: 500;
}


/* Wrapper spacing */
.action-buttons {
    margin-top: 40px;
}

/* Primary button */
.btn-main {
    height: 48px;
    padding: 0 28px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1a73e8;
    border: none;
    box-shadow: 0 6px 18px rgba(26, 115, 232, 0.35);
    transition: all 0.25s ease;
}

.btn-main:hover {
    background-color: #1669d4;
    box-shadow: 0 8px 22px rgba(26, 115, 232, 0.45);
}

/* Outline button */
.btn-outline-main {
    height: 48px;
    padding: 0 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #1a73e8;
    border: 2px solid #1a73e8;
    background: transparent;
    transition: all 0.25s ease;
}

.btn-outline-main:hover {
    background-color: #1a73e8;
    color: #ffffff;
}

/* Icon size */
.btn-main i {
    font-size: 18px;
}

.bd-F3F4F64D {
    background-color: #f3f4f64d !important;
}

.responsive-title {
    font-size: 30px;
    /* text-3xl ≈ 30px */
}

.text-primary {
    color: #0874f7 !important;
}

/* Card hover */
.tour-card {
    transition: all 0.3s ease;
}

.tour-card:hover {
    border-color: #0d6efd !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Icon box */
.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease;
}

.tour-card:hover .icon-box {
    transform: scale(1.1);
}

/* Title color change */
.tour-card:hover .tour-title {
    color: #0d6efd;
}

h5.fw-semibold.mb-2.tour-title {
    font-size: 18px;
}

/* Arrow animation */
.arrow-icon {
    transition: transform .3s ease;
}

.tour-card:hover .arrow-icon {
    transform: translateX(4px);
}

/* Slide-up animation */
.animate-slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp .6s ease forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Destination Cards */
.destination-card {
    display: block;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transition: all .3s ease;
    text-decoration: none;
}

.destination-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.destination-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform .2s ease;
}

.destination-card h6 {
    padding: 16px;
    margin: 0;
    font-weight: 600;
    color: #111;
    font-size: 14px;
}

.destination-card:hover img {
    transform: scale(1.01);
}

.destination-card:hover h6 {
    color: #0d6efd;
}

/* Pilgrimage Section */
/* Wrapper Gradient */
.pilgrimage-wrapper {
    background: linear-gradient(135deg, #fff7ed, #f0f6ff);
}

/* Header Icon */
.icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 153, 51, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* View All */
.view-all-link {
    font-weight: 600;
    color: #0d6efd;
    text-decoration: none;
    white-space: nowrap;
}

/* Card */
.pilgrimage-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: all .35s ease;
    text-decoration: none;
    color: inherit;
}

.pilgrimage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
}

/* Image Area */
.img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.pilgrimage-card:hover img {
    transform: scale(1.1);
}

/* Dark Overlay */
.img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .75), transparent);
}

/* Title */
.img-wrap h5 {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    color: #fff;
    font-weight: 600;
    z-index: 2;
    font-size: 15px;
}

/* Tag */
.tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff8c00;
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 999px;
    z-index: 2;
}

/* Days */
.days {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, .95);
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 8px;
    z-index: 2;
}

/* Bottom */
.card-bottom {
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #fff, #f1f5ff);
    font-weight: 600;
    color: #0d6efd;
}

.card-bottom .arrows {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(13, 110, 253, .1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-bottom .arrows:hover {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(13, 110, 253, .1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popular-title-home {
    font-size: 20px
}

/* Section BG */
.why-us-section {
    background: rgba(13, 110, 253, 0.05);
}

/* Card */
.why-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px 14px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

.why-card:hover {
    border-color: #0d6efd;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

/* Icon */
.icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    margin: 0 auto 12px;
    font-size: 20px;
}

/* Text */
.why-card h6 {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.why-card p {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

/* Slider Layout */
.slider-wrapper {
    overflow: hidden;
    padding: 30px 0px;
}

.slider-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s ease;
}

/* Card */
.testimonial-card {
    min-width: 100%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 576px) {
    .testimonial-card {
        min-width: 48%;
    }
}

@media (min-width: 992px) {
    .testimonial-card {
        min-width: 32%;
    }
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* Quote */
.quote {
    font-size: 48px;
    color: rgba(13, 110, 253, 0.3);
    line-height: 1;
}

/* Stars */
.stars {
    color: #f5b301;
    font-size: 14px;
    margin-bottom: 8px;
}

/* Footer */
.card-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatars {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.name {
    font-size: 14px;
    font-weight: 600;
}

.city {
    font-size: 12px;
    color: #6b7280;
}

.date {
    font-size: 12px;
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 6px;
}

/* Nav Buttons */
.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #0d6efd;
    background: transparent;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #0d6efd;
    color: #fff;
}

.max-w-4 {
    max-width: 56rem;
    /* 896px (Tailwind max-w-4xl) */
}

/* SECTION */
.cta-section {
    padding: 4rem 0;
    /* py-16 */
    background-color: var(--primary, #0d6efd);
}

/* CENTER WRAPPER */
.cta-wrapper {
    max-width: 48rem;
    /* max-w-3xl (768px) */
}

/* TITLE */
.cta-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    /* text-2xl → md:text-4xl */
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

/* TEXT */
.cta-text {
    font-size: 1.125rem;
    /* text-lg */
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* PRIMARY BUTTON */
.btn-cta-primary {
    background: #fff;
    color: var(--primary, #0d6efd);
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* OUTLINE BUTTON */
.btn-cta-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* HEIGHT */
.hero-foreign {
    height: 300px;
}

@media (min-width: 768px) {
    .hero-foreign {
        height: 350px;
    }
}

/* GRADIENT OVERLAYS */
.hero-gradient-1 {
    background: linear-gradient(135deg,
            rgba(255, 159, 67, 0.2),
            rgba(13, 110, 253, 0.2));
    z-index: 1;
}

.hero-gradient-2 {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.7));
    z-index: 2;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    color: #fff;
}

/* TAG */
.hero-tags {
    color: #ff9f43;
    font-weight: 600;
    /* font-size: 0.875rem; */
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* TITLE */
.hero-title {
    font-weight: 700;
    font-size: clamp(1.75rem, 4vw, 3rem);
    /* 3xl → 5xl */
    margin-bottom: 1rem;
    color: #fff;
}

/* SUBTITLE */
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 640px;
    /* max-w-2xl */
}

.destination-cards {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all .3s ease;
}

.destination-cards:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.destination-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform .4s ease;
}

.destination-cards:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    inset: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .8),
            rgba(0, 0, 0, .4),
            transparent);
    color: #fff;
}

.destination-overlay h5 {
    font-weight: 700;
    margin-bottom: 4px;
}

.destination-overlay p {
    font-size: 14px;
    opacity: .9;
}

.custom-cta {
    padding: 48px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(13, 110, 253, .1), rgba(255, 140, 0, .1));
    border: 1px solid #0874f733;
}

.card-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 5;
}

.destination-cards:hover .card-arrow {
    opacity: 1;
}

@media (max-width: 568px) {
    .tour-hero-title {
        font-size: 20px !important;
    }

    .policy-title {
        font-size: 18px;
        line-height: 24px;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .responsive-title {
        font-size: 22px;
        /* text-2xl ≈ 24px */
    }

    .section-desc {
        font-size: 16px;
    }

    .hero-title {
        font-size: 20px !important;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-wrapper {
        height: 250px !important;
    }

    .hero-text h5 {
        font-size: 18px;
    }

    .popular-title-home {
        font-size: 14px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .hero-text {
        padding-top: 90px;
    }

    .hero-section {
        height: 340px;
    }

    .search-tabs {
        display: flex;
        gap: 12px;
        border-bottom: 1px solid #e5e7eb;
        padding: 0px 0px;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        /* smooth iOS scroll */
        scrollbar-width: none;
        /* Firefox */
    }

    .search-tabs::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari */
    }

    .search-tabs span {
        white-space: nowrap;
        flex-shrink: 0;
        padding: 14px 27px;
        border-radius: 0px;
    }

    .search-btn {
        margin-top: 10px;
    }

    .hlabel {
        margin-top: 10px;
    }

    .destination-card h6 {
        padding: 11px;
        font-size: 10px;
    }

    .destination-card img {
        height: 140px;
    }

    .destination-cards img {
        height: 250px;
    }

    .custom-cta {
        padding: 24px;
    }

    .why-card h6 {
        font-size: 12px;
    }

    .why-card p {
        font-size: 10px;
        font-weight: 600;
    }
}

/* HERO HEIGHT (Tailwind: h-[300px] md:h-[350px]) */
.hero-wrapper {
    height: 300px;
    position: relative;
}

@media (min-width: 768px) {
    .hero-wrapper {
        height: 350px;
    }
}

/* IMAGE */
.hero-wrapper img {
    object-fit: cover;
}

/* GRADIENT OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgb(0 0 0 / 61%), rgb(0 0 0 / 57%));
}

/* CONTENT */
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    color: #fff;
}

/* TEXT STYLES */
.hero-tag {
    color: var(--bs-primary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-title {
    font-weight: 700;
    font-size: 1.75rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-subtitle {
    font-size: 1rem;
    max-width: 650px;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* TITLE */
.section-title {
    font-size: 1.25rem;
    /* text-xl */
    font-weight: 700;
    /* font-bold */
    color: #212529;
    /* foreground */
    margin: 0;
}


/* SEARCH ICON */
.search-icon {
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    /* muted */
}

/* SEARCH INPUT */
.search-input {
    height: 46px !important;
    padding-left: 44px;
    /* icon space */
    padding-right: 16px;
    border-radius: 12px;
    /* rounded-xl */
    border: 2px solid #dee2e6;
    font-size: 0.875rem;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.search-input::placeholder {
    color: #6c757d;
}

.search-input:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 .2rem rgba(13, 110, 253, .15);
}

/* RESPONSIVE WIDTH */
@media (min-width: 768px) {
    .w-md-25 {
        width: 320px !important;
    }
}

/* CARD */
.tour-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .08);
    transition: all .3s ease;
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

/* IMAGE */
.tour-img-wrapper {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.tour-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.tour-card:hover .tour-img {
    transform: scale(1.1);
}

/* GRADIENT */
.img-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .6), transparent);
}

/* BADGES */
.badge-best {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--bs-primary);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.badge-price {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, .95);
    color: #000;
    padding: 6px 12px;
    border-radius: 10px;
    font-weight: 700;
}

/* RATING */
.rating-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, .9);
    padding: 4px 8px;
    border-radius: 10px;
}

/* CONTENT */
.tour-title {
    font-weight: 700;
    margin-bottom: 6px;
    transition: color .3s;
}

.tour-card:hover .tour-title {
    color: var(--bs-primary);
}

/* TAGS */
.tags {
    background: #f1f3f5;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
}

/* BUTTON */
.tour-btn {
    border-radius: 10px;
    font-weight: 600;
    transition: all .3s;
}

.tour-btn:hover {
    box-shadow: 0 6px 16px rgba(13, 110, 253, .35);
}

/* HERO HEIGHT */
.tour-hero {
    height: 350px;
}

@media (min-width: 768px) {
    .tour-hero {
        height: 450px;
    }
}

/* IMAGE */
.tour-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* GRADIENT */
.tour-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .8),
            rgba(0, 0, 0, .4),
            rgba(0, 0, 0, .2));
}

/* CONTENT POSITION */
.tour-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

@media (min-width: 768px) {
    .tour-hero-content {
        padding: 40px;
    }
}

/* TEXT */
.tour-hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

@media (min-width: 768px) {
    .tour-hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 992px) {
    .tour-hero-title {
        font-size: 36px;
    }
}

/* BADGE */
.badge-bests {
    background: var(--bs-primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

/* RATING */
.rating-pill {
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(6px);
    padding: 4px 8px;
    border-radius: 10px;
}

/* MUTED WHITE */
.text-white-90 {
    color: rgba(255, 255, 255, .9);
}

.tour-cards {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.tour-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.tour-desc {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 0;
}

.tour-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.tour-badges {
    padding: 5px 11px;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
}

.itinerary-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.itinerary-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

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

.itinerary-btn {
    background: #fff;
    font-weight: 500;
    gap: 12px;
}

.itinerary-btn:not(.collapsed) {
    background: #fff;
    box-shadow: none;
}

.day-badge {
    width: 44px;
    height: 44px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.accordion-button::after {
    width: 14px;
    height: 14px;
    background-size: 14px;
}

.itinerary-desc {
    margin-left: 10px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
}

.itinerary-desc p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
}

/* Accordion open state border color */
.itinerary-accordion .accordion-item:has(.accordion-collapse.show) {
    border: 2px solid #0d6efd;
    box-shadow: 0 6px 18px rgba(13, 110, 253, 0.15);
}

/* Optional: button text color when open */
.itinerary-accordion .accordion-button:not(.collapsed) {
    color: #0d6efd;
    background: #ffffff;
}

/* Remove default bootstrap focus shadow */
.accordion-button:focus {
    box-shadow: none;
}

.route-card {
    background: #fff;
    border-radius: 20px;
    padding: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.route-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.route-icon {
    color: #0d6efd;
}

.map-box {
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.route-list {
    /* margin-top: 20px; */
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
}

.route-subtitle {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
}

.route-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.route-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: #fff;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.route-count {
    width: auto;
    height: 28px;
    border-radius: 70%;
    background: #0d6efd;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    padding: 4px 8px;
    justify-content: center;
}

.route-name {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
}

.route-arrow {
    font-size: 20px;
    color: #0d6efd;
}

.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    min-height: 260px;
}

.info-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.icon-circle.green {
    background: #dcfce7;
    color: #16a34a;
}

.icon-circle.red {
    background: #fee2e2;
    color: #dc2626;
}

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

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

.icon {
    font-weight: 700;
    margin-top: 2px;
}

.icon.green {
    color: #16a34a;
    font-size: 14px;
}

.icon.red {
    color: #dc2626;
    font-size: 14px;
}

.important-card {
    background: rgba(249, 115, 22, 0.05);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 20px;
    padding: 24px;
}

.important-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.important-icon {
    color: #f97316;
}

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

.important-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #6b7280;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f97316;
    margin-top: 8px;
    flex-shrink: 0;
}

.policy-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    color: #111827;
}

.policy-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
}

.policy-icon {
    color: #0d6efd;
    width: 20px;
    height: 20px;
}

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

.policy-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

/* Colors */
.bg-green-light {
    background-color: #dcfce7;
}

.border-green {
    border-color: #bbf7d0;
}

.bg-yellow-light {
    background-color: #fef9c3;
}

.border-yellow {
    border-color: #fef08a;
}

.bg-orange-light {
    background-color: #ffedd5;
}

.border-orange {
    border-color: #fed7aa;
}

.bg-red-light {
    background-color: #fee2e2;
}

.border-red {
    border-color: #fecaca;
}

.bg-green {
    background-color: #16a34a;
}

.text-green {
    color: #15803d;
}

.text-green-dark {
    color: #166534;
}

.bg-yellow {
    background-color: #ca8a04;
}

.text-yellow {
    color: #854d0e;
}

.text-yellow-dark {
    color: #713f12;
}

.bg-orange {
    background-color: #f97316;
}

.text-orange {
    color: #c2410c;
}

.text-orange-dark {
    color: #9a3412;
}

.bg-red {
    background-color: #dc2626;
}

.text-red {
    color: #991b1b;
}

.text-red-dark {
    color: #7f1d1d;
}

.aspect-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
}

.aspect-video iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.bg-gradient-to-r {
    background: linear-gradient(to right, rgba(13, 110, 253, 0.1), rgba(255, 165, 0, 0.1));
}

/* Sticky container with top offset */
.sticky-top-24 {
    position: sticky;
    top: 6rem;
    /* equals top-24 in Tailwind */
}

/* space-y-6 equivalent: add margin-top to every child except the first */
.space-y-6>*+* {
    margin-top: 1.5rem;
    /* 6 * 0.25rem = 1.5rem */
}

/* Background gradient (from-primary/10 to-orange/10) */
.bg-gradient-primary-orange {
    background: linear-gradient(135deg,
            rgba(13, 110, 253, 0.1) 0%,
            /* Bootstrap primary 10% opacity */
            rgba(255, 165, 0, 0.1) 100%
            /* Orange 10% opacity */
        );
    border-radius: 20px;
}

/* Border color similar to border-primary/20 */
.border-primary-20 {
    border-color: rgba(13, 110, 253, 0.2) !important;
}

/* Circle background */
.bg-primary-20 {
    background-color: rgba(13, 110, 253, 0.2);
}

.hero-gradient-3 {
    background: linear-gradient(to bottom, #0d6efd, #0d6efd, #2278fb);
    z-index: 2;
}

.backdrop-blur-sm {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hover-primary:hover {
    background-color: rgba(13, 110, 253, 0.15) !important;
}

.hover-secondary:hover {
    background-color: rgba(108, 117, 125, 0.75) !important;
}

.hover-pill:hover {
    background-color: #0d6efd !important;
    color: #fff !important;
    cursor: pointer;
}

span.select2-selection.select2-selection--single {
    height: 56px;
    box-shadow: none;
    border: 1px solid #dadfe6 !important;
    background-clip: initial;
}

.fixed-form {
    height: 700px;
    overflow-y: scroll;
}

.day-circle {
    width: 48px;
    height: 48px;
    padding: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #fd7e14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
}

.media-box {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 16 / 9;
}

.media-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.media-box:hover img {
    transform: scale(1.05);
}

.media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .5), transparent);
    opacity: 0;
    transition: opacity .3s ease;
}

.media-box:hover .media-overlay {
    opacity: 1;
}

.media-overlay small {
    position: absolute;
    bottom: 8px;
    left: 10px;
    color: #fff;
}

.media-placeholder {
    border: 2px dashed #dee2e6;
    border-radius: 14px;
    height: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
}

.timeline {
    border-left: 2px solid rgba(13, 110, 253, .2);
    padding-left: 32px;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-dot {
    position: absolute;
    left: -39px;
    top: 20px;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 2px solid #0d6efd;
    border-radius: 50%;
}

.timeline-card {
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: 14px;
    padding: 16px;
    transition: border-color .2s;
}

.timeline-card:hover {
    border-color: rgba(13, 110, 253, .3);
}

.timeline-label {
    font-size: 11px;
    font-weight: 700;
    color: #0d6efd;
    letter-spacing: .05em;
}


/* Badge */
.trending-badge {
    background-color: rgba(13, 110, 253, 0.1);
    /* Bootstrap primary */
    color: #0d6efd;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.95rem;
}

/* Title */
.section-titles {
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .section-titles {
        font-size: 3rem;
    }
}

/* Description */
.section-desc {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

/* Pulse animation */
.pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.booking-fast-badge {
    position: absolute;
    top: 18px;
    right: 12px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ef4444;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 400;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    animation: pulseBadge 1.5s infinite;
}

/* Dot container */
.pulse-dot {
    position: relative;
    width: 8px;
    height: 8px;
}

/* Ping animation */
.pulse-dot .ping {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0.75;
    animation: ping 1.2s infinite;
}

/* Solid dot */
.pulse-dot .dot {
    position: relative;
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
}

/* Animations */
@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulseBadge {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.stats-wrapper {
    border-radius: 20px;
    padding: 30px 20px;
    background: linear-gradient(90deg,
            rgba(255, 0, 0, 0.08),
            rgba(255, 105, 180, 0.08),
            rgba(255, 165, 0, 0.08));
    border: 1px solid rgba(255, 0, 0, 0.2);
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.05),
            transparent);
    animation: pulse 2s infinite;
}

.icon-circles {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.youtube {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
}

.instagram {
    background: linear-gradient(135deg,
            rgba(138, 43, 226, 0.2),
            rgba(255, 105, 180, 0.2),
            rgba(255, 165, 0, 0.2));
    color: #e1306c;
}

.likes {
    background: rgba(255, 99, 132, 0.2);
    color: #ff4d6d;
}

.shares {
    background: rgba(13, 110, 253, 0.2);
    color: #0d6efd;
}

.live {
    font-size: 14px;
    color: #22c55e;
    margin-left: 6px;
}

.bounce {
    animation: bounce 2s infinite;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 0.4;
    }
}

.video-card {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.5s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(13, 110, 253, 0.15);
}

/* Media */
.video-media {
    position: relative;
    /* aspect-ratio: 9 / 16; */
    overflow: hidden;
}

.video-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.video-card:hover img {
    transform: scale(1.12);
}

/* Overlay */
.media-overlays {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.2),
            transparent);
}

/* Viral badge */
.badge-viral {
    /* position: absolute;
    top: 12px;
    left: 12px; */
    background: linear-gradient(90deg, #ff0000a1, #ff000000);
    color: #fff;
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 20px;
    font-weight: 700;
    animation: pulses 1.8s infinite;
}

/* Views */
.badge-views {
    position: absolute;
    /* top: 12px; */
    right: 48px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 11px;
    padding: 5px 8px;
    border-radius: 12px;
}

/* Play button */
.play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn i {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #000;
    transition: transform 0.4s ease;
}

.video-card:hover .play-btn i {
    transform: scale(1.25);
}

/* YouTube icon */
.yt-icon {
    position: absolute;
    top: 0px;
    right: 12px;
    background: #ff0000;
    width: 32px;
    height: 26px;
    border-radius: 8px;
    display: flex;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* Bottom text */
.video-info {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    color: #fff;
}

.video-info h6 {
    font-weight: 700;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
}

/* Footer */
.video-footer {
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #f8f9fa, transparent);
}

.avatarss {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd33, #0d6efd11);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0d6efd;
}

.stats {
    display: flex;
    gap: 14px;
    font-size: 13px;
}

/* Animations */
@keyframes pulses {
    0% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.7;
    }
}

/* Desktop ratio */
@media (min-width: 768px) {
    .video-media {
        aspect-ratio: 16 / 9;
    }
}


/* YOUTUBE */
.yt-btn {
    color: #fff;
    border: none;
    background: linear-gradient(90deg, #ff0000, #ff4d88);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.35);
    padding: 10px 30px;
}

.yt-btn i {
    font-size: 20px;
}

.yt-btn:hover {
    background: linear-gradient(90deg, #e60000, #ff2f70);
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.45);
    transform: translateY(-2px);
    color: #fff;
}

/* INSTAGRAM */
.insta-btn {
    background: transparent;
    color: #e1306c;
    border: 2px solid rgba(225, 48, 108, 0.3);
    padding: 8px 30px;
}

.insta-btn i {
    font-size: 20px;
    color: #e1306c;
}

.insta-btn:hover {
    background: rgba(225, 48, 108, 0.08);
    color: #e1306c;
    transform: translateY(-2px);
}

.badge-trending {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: #ef4444;
    /* red-500 */
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    /* pill */
    text-transform: uppercase;
}

.badge-trending .trending-icon {
    width: 12px;
    height: 12px;
}

.badge-gradient {
    display: inline-flex;
    /* inline-flex */
    align-items: center;
    /* items-center */
    gap: 8px;
    /* gap-2 */
    padding: 8px 16px;
    /* px-4 py-2 */
    margin-bottom: 1rem;
    /* mb-4 */

    background: linear-gradient(to right,
            rgba(239, 68, 68, 0.10),
            /* red-500/10 */
            rgba(236, 72, 153, 0.10),
            /* pink-500/10 */
            rgba(249, 115, 22, 0.10)
            /* orange-500/10 */
        );

    border: 1px solid rgba(239, 68, 68, 0.20);
    /* red-500/20 */
    border-radius: 999px;
    /* rounded-full */
    color: #ef4444;
    /* red-500 */
}