/* HERO SECTION */
.home-hero {
    position: relative;
    height: 58vh;
    min-height: 440px;
    max-height: 580px;
    overflow: hidden;
}

.home-hero__slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.home-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
}

.home-hero__slide.active {
    opacity: 1;
    z-index: 2;
}

.home-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to left,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 64, 128, 0.55) 35%,
        rgba(0, 0, 0, 0.18) 70%,
        rgba(0, 0, 0, 0) 100%
    );
}

.home-hero__content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
    color: #fff;
    padding: 0 24px;
}

.home-hero__content-inner {
    width: 42%;
    max-width: 540px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.home-hero__content-inner.fade-out {
    opacity: 0;
    transform: translateY(10px);
}

.home-hero__content-inner.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.home-hero__title {
    font-size: clamp(26px, 2.5vw, 34px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
    color: #ffffff;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.65);
    word-break: break-word;
    max-width: 100%;
    font-family: var(--syt-font-secondary);
}

.home-hero__subtitle {
    font-size: clamp(14px, 1.2vw, 16px);
    color: #e5e7eb;
    margin-bottom: 24px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
    word-break: break-word;
    max-width: 100%;
    font-family: var(--syt-font-secondary);
}

.home-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--syt-accent);
    color: #ffffff !important;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
    font-family: var(--syt-font-secondary);
}

.home-hero__btn:hover {
    background: var(--syt-accent-hover);
    color: #ffffff !important;
    box-shadow: 0 8px 22px rgba(213, 87, 59, 0.35);
}

.home-hero__btn i {
    transition: transform 0.25s ease;
}

.home-hero__btn:hover i {
    transform: translateX(3px);
}

.home-hero__nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 50px;
}

.home-hero__nav button {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

.home-hero__nav button:hover {
    background: #D5573B;
}

.home-hero__dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 6px;
}

.home-hero__dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.25s ease;
}

.home-hero__dots span.active {
    background: #D5573B;
    transform: scale(1.3);
}

.hero-loader {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 14px;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.hero-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.hero-loader__spinner {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: #D5573B;
    animation: spin 0.8s linear infinite;
    margin-bottom: 10px;
}

.hero-loader p {
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* DESTINATION SECTION */
.home-destinations__wrapper {
    position: relative;
}

.home-destinations__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-destinations__header .syt_section_title{
    font-family: var(--syt-font-secondary);
}

.home-destinations__subtitle {
    font-size: 14px;
    color: var(--syt-text-light);
    font-family: var(--syt-font-secondary);
}

.home-destinations__view-all {
    font-size: 14px;
    font-weight: 600;
    color: #004080;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.home-destinations__view-all:hover {
    color: #D5573B;
}

.home-destinations__list {
    overflow: hidden;
}

.home-destinations__list .swiper-wrapper {
    align-items: stretch;
}

.home-destinations__list .swiper-slide {
    height: auto;
    opacity: 0;
    transform: translateY(10px);
    animation: destFade 0.5s ease forwards;
}

.home-destinations__list .swiper-slide:nth-child(2) { animation-delay: 0.05s; }
.home-destinations__list .swiper-slide:nth-child(3) { animation-delay: 0.1s; }
.home-destinations__list .swiper-slide:nth-child(4) { animation-delay: 0.15s; }

@keyframes destFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.destination-card {
    display: block;
    position: relative;
    width: 100%;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid #eef2f7;
    background: #fff;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.destination-card__image {
    position: absolute;
    inset: 0;
}

.destination-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px);
    transform: scale(1.05);
    transition: all 0.6s ease;
}

.destination-card__image img.loaded {
    filter: blur(0);
    transform: scale(1);
}

.destination-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.92),
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.08)
    );
    z-index: 1;
}

.destination-card__content {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 2;
    color: var(--syt-white);
}

.destination-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--syt-white);
    font-family: var(--syt-font-secondary);
}

.destination-card__tagline {
    font-size: 13px;
    opacity: 0.9;
    color: var(--syt-white);
    font-family: var(--syt-font-secondary);
}

.destination-card:hover {
    transform: translateY(-4px);
    border-color: #D5573B;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.destination-card:hover img {
    transform: scale(1.06);
}

.dest-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.dest-prev {
    left: -20px;
}

.dest-next {
    right: -20px;
}

.dest-nav:hover {
    background: #f3f4f6;
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.05);
}

.destination-skeleton-card {
    position: relative;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eef2f7;
    background: #fff;
}

.skeleton-image {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #e5e7eb 25%,
        #f3f4f6 50%,
        #e5e7eb 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
}

.skeleton-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.2),
        transparent
    );
}

.skeleton-content {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
}

.skeleton-title {
    width: 70%;
    height: 14px;
    border-radius: 6px;
    margin-bottom: 8px;

    background: linear-gradient(
        90deg,
        #e5e7eb 25%,
        #f3f4f6 50%,
        #e5e7eb 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
}

.skeleton-text {
    width: 50%;
    height: 10px;
    border-radius: 6px;

    background: linear-gradient(
        90deg,
        #e5e7eb 25%,
        #f3f4f6 50%,
        #e5e7eb 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.destination-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.badge-trending {
    background: rgba(213, 87, 59, 0.9);
    color: #fff;
}

.badge-top {
    background: rgba(0, 64, 128, 0.9);
    color: #fff;
}

.badge-new {
    background: rgba(34, 197, 94, 0.9);
    color: #fff;
}

.destination-card:hover .destination-card__badge {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.destination-card:hover .badge-trending {
    background: #c94c34;
}

.destination-card:hover .badge-top {
    background: #003366;
}

.destination-card:hover .badge-new {
    background: #15803d;
}


/* ======== WHY CHOOSE US ======== */
.syt_why_choose {
    position: relative;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(213, 87, 59, 0.08),
            transparent 40%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(37, 142, 166, 0.08),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #EEF4FA 50%,
            #ffffff 100%
        );
}

.syt_why_left {
    position: relative;
    padding-left: 18px;
}

.syt_why_left::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 60px;
    border-radius: 4px;

    background: linear-gradient(
        180deg,
        var(--syt-accent),
        transparent
    );
}

.syt_why_wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.syt_why_left {
    max-width: 480px;
}

.syt_why_tag {
    display: inline-block;
    font-size: 12px;
    color: var(--syt-accent);
    margin-bottom: 12px;
    letter-spacing: 1.2px;
}

.syt_why_left .syt_section_title {
    margin-bottom: 14px;
    line-height: 1.25;
    font-family: var(--syt-font-secondary);
}

.syt_why_left .syt_section_subtitle {
    margin-bottom: 20px;
    font-size: 15px;
    font-family: var(--syt-font-secondary);
}

.syt_why_points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.syt_why_points li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--syt-text-dark);
    margin-bottom: 12px;
    position: relative;
}

.syt_why_points i {
    color: #fff;
    font-size: 10px;
    background: var(--syt-accent);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.syt_why_right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.syt_why_card {
    padding: 26px;
    border-radius: 18px;
    background: #ffffff;
    border: 2px solid var(--syt-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.syt_why_card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;

    width: 160px;
    height: 160px;

    background: radial-gradient(
        circle at 30% 30%,
        rgba(213, 87, 59, 0.08),
        transparent 60%
    );

    border-radius: 50%;
    filter: blur(10px);
}

.syt_why_card::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -20px;

    width: 180px;
    height: 180px;

    background: radial-gradient(
        circle at 70% 30%,
        rgba(37, 142, 166, 0.06),
        transparent 65%
    );

    border-radius: 50%;
    filter: blur(14px);
}
.syt_why_card:hover::before {
    transform: scale(1.1) translateY(5px);
}

.syt_why_card:hover::after {
    transform: scale(1.05) translateX(5px);
}

.syt_why_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.07);
    border-color: rgba(0,0,0,0.08);
}

.syt_why_icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(213, 87, 59, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: 0.3s ease;
}

.syt_why_card:hover .syt_why_icon {
    background: rgba(213, 87, 59, 0.18);
    transform: scale(1.08);
}

.syt_why_icon i {
    color: var(--syt-accent);
    font-size: 18px;
}

.syt_why_card h4 {
    margin-bottom: 6px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.3px;
    font-family: var(--syt-font-secondary);
}

.syt_why_card p {
    font-size: 13.5px;
    line-height: 1.5;
    font-family: var(--syt-font-secondary);
}

.syt_why_card:nth-child(1),
.syt_why_card:nth-child(3) {
    border-color: rgba(213, 87, 59, 0.2);
}

/* ======= FEATURED PACKAGES ======= */
.syt_featured_packages {
    position: relative;
    background: var(--sty-bg);
}

.syt_featured_packages .syt_section_header .syt_section_title,
.syt_featured_packages .syt_section_header .syt_section_subtitle{
    font-family: var(--syt-font-secondary);
}

.syt_featured_packages .syt_fp_outer {
    position: relative;
}

.syt_featured_packages .syt_fp_swiper {
    position: relative;
    overflow: hidden;
    background: transparent;
}

.syt_featured_packages .syt_fp_swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
    padding: 10px 0;
}

.syt_featured_packages .syt_fp_swiper .swiper-slide {
    width: auto;
    flex-shrink: 0;
    height: auto;
    display: flex;
}

.syt_featured_packages .syt_fp_card {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 16px 16px 12px 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 6px;
    border: 1px solid rgba(0,0,0,0.06);
    cursor: pointer;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.syt_featured_packages .syt_fp_card:hover {
    border-color: var(--syt-accent);
    transform: translateY(-6px);
}

.syt_featured_packages .syt_fp_img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.syt_featured_packages .syt_fp_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.syt_featured_packages .syt_fp_card:hover .syt_fp_img img {
    transform: scale(1.04);
}

.syt_featured_packages .syt_fp_img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.syt_featured_packages .syt_fp_badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--syt-accent);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-family: var(--syt-font-secondary);
}

.syt_featured_packages .syt_fp_content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.syt_featured_packages .syt_fp_title {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--syt-text-dark);
    font-weight: 700;
    font-family: var(--syt-font-secondary);
}

.syt_featured_packages .syt_fp_meta {
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 8px;
}

.syt_featured_packages .syt_fp_meta span:first-child {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 6px;
    font-weight: 500;
}

.syt_featured_packages .syt_fp_meta .dot {
    margin: 0 6px;
}

.syt_featured_packages .tooltip-inner {
    background-color: var(--syt-text-dark);
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 6px;
}

.syt_featured_packages .tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: var(--syt-text-dark);
}

.syt_featured_packages [data-bs-toggle="tooltip"] {
    position: relative;
    cursor: pointer;
    transition: color 0.2s ease;
}

.syt_featured_packages [data-bs-toggle="tooltip"]:hover {
    color: var(--syt-accent);
}

.syt_featured_packages [data-bs-toggle="tooltip"]::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background: var(--syt-accent);
    transition: 0.25s ease;
}

.syt_featured_packages [data-bs-toggle="tooltip"]:hover::after {
    width: 100%;
}

.syt_featured_packages .syt_fp_tagline {
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 10px;
    display: -webkit-box;
    /* -webkit-line-clamp: 2; */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 34px;
}

.syt_featured_packages .syt_fp_highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 0;
    min-height: 40px;
}

.syt_featured_packages .syt_fp_highlights li {
    position: relative;
    padding-left: 14px;
    font-size: 13px;
    margin-bottom: 4px;
    color: #4A5568;
}

.syt_featured_packages .syt_fp_highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--syt-accent);
}

.syt_featured_packages .syt_fp_footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.syt_featured_packages .syt_fp_price_row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
    font-family: var(--syt-font-price);
}

.syt_featured_packages .syt_fp_old_price {
    font-size: 13px;
    color: #9CA3AF;
    text-decoration: line-through;
    transition: color 0.2s ease;
    font-weight:600;
}

.syt_featured_packages .syt_fp_card:hover .syt_fp_old_price {
    color: #dc2626;
}

.syt_featured_packages .syt_fp_discount {
    font-size: 11px;
    color: #16a34a;
    font-weight: 600;
}

.syt_featured_packages .syt_fp_new_price {
    font-size: 18px;
    color: #15803d;
    font-weight: 700;
    font-family: var(--syt-font-price);
}

.syt_featured_packages .syt_fp_nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

.syt_featured_packages .syt_fp_prev::after {
    content: "‹";
    font-size: 20px;
    font-weight: 600;
    color: var(--syt-text-dark);
}

.syt_featured_packages .syt_fp_next::after {
    content: "›";
    font-size: 20px;
    font-weight: 600;
    color: var(--syt-text-dark);
}

.syt_featured_packages .syt_fp_prev {
    left: -15px;
}

.syt_featured_packages .syt_fp_next {
    right: -15px;
}

.syt_featured_packages .syt_fp_nav:hover {
    background: #f3f4f6;
    border-color: rgba(0,0,0,0.15);
}

.syt_featured_packages .syt_fp_nav:hover::after {
    color: #111827;
}

.syt_featured_packages .syt_fp_nav.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

.syt_featured_packages .syt_btn_primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 500;
    background: var(--syt-accent);
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.25s ease;
    transform: none !important;
}

.syt_featured_packages .syt_btn_primary::after {
    content: "→";
    font-size: 14px;
    transition: transform 0.25s ease;
}

.syt_featured_packages .syt_btn_primary:hover {
    background: #c94a2f;
    transform: none !important;
}

.syt_featured_packages .syt_btn_primary:hover::after {
    transform: translateX(3px);
}

.syt_fp_skeleton {
    pointer-events: none;
}

.syt_fp_skeleton .syt_fp_img {
    background: #e5e7eb;
}

.syt_skeleton_line {
    height: 10px;
    background: #e5e7eb;
    border-radius: 4px;
    margin-bottom: 8px;
}

.w-70 { width: 70%; }
.w-50 { width: 50%; }
.w-90 { width: 90%; }
.w-60 { width: 60%; }

.syt_fp_skeleton,
.syt_skeleton_line {
    position: relative;
    overflow: hidden;
}

.syt_fp_skeleton::after,
.syt_skeleton_line::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    height: 100%;
    width: 150%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.5),
        transparent
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}


/* ========== TESTIMONIALS ========= */
.syt_testimonials {
    position: relative;
    background: linear-gradient(
        135deg,
        #F8FAFC 0%,
        #eef4fb 40%,
        #fdf3f0 100%
    );
    overflow: hidden;
}

.syt_testimonials::before,
.syt_testimonials::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.syt_testimonials::before {
    top: -100px;
    left: -100px;
    background: rgba(0, 64, 128, 0.08);
}

.syt_testimonials::after {
    bottom: -120px;
    right: -120px;
    background: rgba(213, 87, 59, 0.08);
}

.syt_testimonials .container {
    position: relative;
    z-index: 1;
}

.syt_skeleton_header div,
.syt_skeleton_card div {
    background: linear-gradient(
        90deg,
        #eee 25%,
        #f5f5f5 37%,
        #eee 63%
    );
    background-size: 400% 100%;
    animation: sytShimmer 1.4s ease infinite;
    border-radius: 6px;
}

@keyframes sytShimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.syt_skeleton_title {
    height: 24px;
    width: 60%;
    margin: 0 auto 10px;
}

.syt_skeleton_subtitle {
    height: 14px;
    width: 80%;
    margin: 0 auto 10px;
}

.syt_skeleton_trust {
    height: 26px;
    width: 160px;
    margin: 10px auto 0;
    border-radius: 20px;
}

.syt_skeleton_card {
    pointer-events: none;
}

.syt_skeleton_quote {
    width: 30px;
    height: 20px;
    margin-bottom: 10px;
}

.syt_skeleton_stars {
    width: 90px;
    height: 14px;
    margin-bottom: 14px;
}

.syt_skeleton_text {
    height: 12px;
    width: 100%;
    margin-bottom: 8px;
}

.syt_skeleton_text.short {
    width: 70%;
}

.syt_skeleton_user {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.syt_skeleton_avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.syt_skeleton_name {
    width: 100px;
    height: 12px;
    margin-bottom: 6px;
}

.syt_skeleton_location {
    width: 80px;
    height: 10px;
}

.syt_skeleton_tag {
    width: 120px;
    height: 20px;
    margin-top: 12px;
    border-radius: 12px;
}


.syt_testimonials .syt_section_header {
    max-width: 620px;
    margin: 0 auto;
}

.syt_testimonials .syt_section_title {
    font-size: 28px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 10px;
    font-family: var(--syt-font-secondary);
}

.syt_testimonials .syt_section_subtitle {
    font-size: 15px;
    color: #718096;
    line-height: 1.6;
    font-family: var(--syt-font-secondary);
}

.syt_testimonials .syt_trust_line {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: 0.25s ease;
}

.syt_testimonials .syt_trust_line:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.syt_testimonials .syt_trust_rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    color: #1A202C;
}

.syt_testimonials .syt_trust_rating i {
    font-size: 14px;
    color: #f59e0b;
}

.syt_testimonials .syt_trust_text {
    font-size: 13px;
    color: #718096;
}

.syt_testimonial_slider {
    position: relative;
    margin-top: 40px;
    padding: 10px 10px 30px;
    transition: opacity 0.4s ease;
}

.syt_testimonial_slider.is-loading {
    opacity: 0.6;
}

.syt_testimonial_slider.is-loaded {
    opacity: 1;
}

.syt_testimonial_slider.is-loaded .swiper-slide {
    animation: fadeUp 0.5s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.syt_testimonial_slider .swiper-wrapper {
    align-items: stretch;
}

.syt_testimonial_card {
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 22px;
    height: 100%;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.syt_testimonials.in-view .syt_testimonial_card {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.swiper-slide:nth-child(1) .syt_testimonial_card { transition-delay: 0.1s; }
.swiper-slide:nth-child(2) .syt_testimonial_card { transition-delay: 0.2s; }
.swiper-slide:nth-child(3) .syt_testimonial_card { transition-delay: 0.3s; }

.syt_testimonial_card:hover {
    transform: translateY(-6px);
    border-color: #D5573B;
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
}

.syt_testimonial_slider .swiper-slide {
    transition: all 0.4s ease;
    transform: scale(0.94);
    opacity: 0.6;
}

.syt_testimonial_slider .swiper-slide.syt-center {
    transform: scale(1);
    opacity: 1;
    z-index: 2;
}

.syt_testimonial_slider .swiper-slide-next,
.syt_testimonial_slider .swiper-slide-prev {
    transform: scale(0.97);
    opacity: 0.85;
}

.syt_testimonial_slider .swiper-slide.syt-center .syt_testimonial_card {
    border-color: #D5573B;
    box-shadow: 0 16px 35px rgba(0,0,0,0.08);
    animation: sytPulse 2.5s ease-in-out infinite;
}

@keyframes sytPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.015);
    }
}

.syt_testimonial_nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

.syt_testimonial_prev {
    left: 10px;
}

.syt_testimonial_next {
    right: 10px;
}

.syt_testimonial_nav i {
    font-size: 16px;
    color: #333;
    transition: 0.3s;
}

.syt_testimonial_nav:active {
    transform: translateY(-50%) scale(0.95);
}

.syt_testimonial_nav:hover {
    background: #f3f4f6;
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.syt_testimonial_rating {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.syt_testimonial_rating span {
    font-weight: 600;
}

.syt_testimonial_text {
    font-size: 15.5px;
    line-height: 1.7;
    color: #2D3748;
    margin-bottom: 22px;
    display: -webkit-box;
    /* -webkit-line-clamp: 4; */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.syt_testimonial_user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.syt_user_avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #004080;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: 0.3s ease;
}

.syt_testimonial_card:hover .syt_user_avatar {
    transform: scale(1.05);
}

.syt_user_name {
    font-weight: 600;
    font-size: 15px;
    color: #1A202C;
}

.syt_user_location {
    font-size: 13px;
    color: #718096;
}

.syt_trip_tag {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    color: #4A5568;
}

.syt_stars {
    display: flex;
    gap: 4px;
}

.syt_stars i {
    font-size: 13.5px;
    color: #f59e0b;
    transition: transform 0.2s ease;
}

.syt_testimonial_card:hover .syt_stars i {
    transform: scale(1.1);
}

.syt_rating_value {
    margin-left: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #1A202C;
}

.syt_quote_icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 26px;
    color: rgba(0, 64, 128, 0.08);
    transition: transform 0.4s ease;
}

.syt_testimonial_card:hover .syt_quote_icon {
    color: rgba(213, 87, 59, 0.12);
    transform: translateY(-2px);
}

.syt_testimonial_slider .swiper-slide.syt-center .syt_quote_icon {
    color: rgba(213, 87, 59, 0.14);
}

.syt_quote_icon i {
    transform: rotate(180deg);
}


/* ====== CTA - CALL TO ACTION  ===== */
.syt_cta_section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding:130px 0;
}

.syt_cta_section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    opacity: 0.12;
    z-index: 0;
}

.syt_cta_section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.6);
    z-index: 1;
}

.syt_cta_section > * {
    position: relative;
    z-index: 2;
}

.syt_cta_inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 45px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
}

.syt_cta_title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.3px;
    color: #1A365D;
    margin-bottom: 12px;
    font-family: var(--syt-font-secondary);
}

.syt_cta_subtitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #4A5568;
    margin-bottom: 12px;
    font-family: var(--syt-font-secondary);
}

.syt_cta_micro {
    font-size: 13px;
    font-weight: 500;
    color: #94A3B8;
    margin-bottom: 24px;
}

.syt_cta_actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.syt_cta_actions .syt_btn {
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.25s ease;
}

.syt_cta_actions .syt_btn:hover {
    transform: translateY(-3px);
}

.syt_cta_actions .syt_btn i {
    margin-right: 8px;
    transition: transform 0.25s ease;
}

.syt_cta_actions .syt_btn:hover i {
    transform: translateX(3px);
}

.syt_cta_trust {
    display: block;
    margin-top: 15px;
    font-size: 13px;
    color: #6B7280;
}

.syt_cta_actions .syt_btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .syt_cta_inner {
        padding: 35px 20px;
    }

    .syt_cta_title {
        font-size: 24px;
    }

    .syt_cta_actions .syt_btn {
        width: 100%;
    }
}



/* =========================== MOBILE RESPONSIVE ======================== */
@media (max-width: 992px) {
    .syt_why_wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .syt_why_right {
        grid-template-columns: 1fr 1fr;
    }
    .syt_cta_section {
        padding: 90px 0;
    }
}

@media (max-width: 576px) {
    .syt_why_right {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* HERO */
    .home-hero {
        height: 48vh;
        min-height: 260px;
        max-height: 380px;
    }

    .home-hero__slide {
        background-position: left bottom !important;
        background-size: cover;
    }

    .home-hero__overlay {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 64, 128, 0.45) 40%,
            rgba(0, 0, 0, 0.2) 75%,
            rgba(0, 0, 0, 0) 100%
        );
    }

    .home-hero__content {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end !important;
        align-items: center;
        text-align: center;
        padding: 15px 15px 25px;
    }

    .home-hero__content-inner {
        width: 100%;
        max-width: 100%;
    }

    .home-hero__title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 5px;
    }

    .home-hero__subtitle {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .home-hero__btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .home-hero__nav {
        padding: 0 10px;
    }

    .home-hero__nav button {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .home-hero__dots {
        bottom: 10px;
    }

    .home-hero__dots span {
        width: 6px;
        height: 6px;
    }

    .hero-loader p {
        font-size: 13px;
        text-align: center;
    }

    /* POPULAR DESTINATION */
    .home-destinations__wrapper {
        overflow: hidden;
        position: relative;
    }

    .home-destinations__list {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .home-destinations__list::-webkit-scrollbar {
        display: none;
    }

    .home-destinations__track {
        display: flex;
        gap: 16px;
    }

    .destination-card {
        flex: 0 0 88%;
        height: 240px;
        border-radius: 18px;
        scroll-snap-align: center;
    }

    .destination-card__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.02);
        transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .destination-card__overlay {
        background: linear-gradient(
            to top,
            rgba(0,0,0,0.92),
            rgba(0,0,0,0.5),
            rgba(0,0,0,0.08)
        );
    }

    .destination-card__content {
        bottom: 16px;
        left: 16px;
        right: 16px;
    }

    .destination-card__title {
        font-size: 16px;
        font-weight: 600;
    }

    .destination-card__tagline {
        font-size: 12px;
        opacity: 0.85;
    }

    .home-destinations__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .home-destinations__view-all {
        align-self: flex-end;
        font-size: 13px;
    }

    .dest-nav {
        display: none;
    }

    /* FEATURED PACKAGES */
    .syt_featured_packages .syt_fp_nav {
        display: none;
    }
    
    .syt_featured_packages .syt_fp_prev {
        left: -8px;
    }
    .syt_featured_packages .syt_fp_next {
        right: -8px;
    }

    /* TESTIMONIALS SECTION  */
    .syt_testimonial_slider{
        padding:10px 0 30px
    }
    .syt_testimonial_nav{
        display: none;
    }
    /* cta */
    .syt_cta_section {
        padding: 50px 0;
    }

}