/* ===== HERO SECTION ===== */
.hero {
    display: flex;
    height: 85vh;
    max-height: 800px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: #fff;
    position: relative;
}

/* LEFT SIDE */
.hero-left {
    width: 55%;
    padding: 40px;
    background: linear-gradient(145deg, #ffffff 0%, #f9fbfd 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-left::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 95%, rgba(255, 106, 0, 0.05) 100%);
    z-index: -1;
}

.left-title {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 106, 0, 0.2);
}

.left-title h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    background: linear-gradient(90deg, #ff6a00, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.left-title p {
    color: #666;
    font-size: 0.95rem;
    max-width: 500px;
}

.left-slider {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background: #fff;
    padding: 15px;
}

.left-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.left-page {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 5px;
    animation: fadeInUp 0.6s ease forwards;
}

.left-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    background: #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255, 106, 0, 0.08);
}

.left-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 106, 0, 0.15);
    border-color: rgba(255, 106, 0, 0.2);
}

.left-card:hover .card-overlay {
    opacity: 1;
}

.card-img {
    width: 100%;
    height: 170px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.left-card:hover .card-img img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 170px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-overlay span {
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(255, 106, 0, 0.85);
    padding: 4px 10px;
    border-radius: 20px;
}

.left-card h4 {
    padding: 14px 12px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.left-controls {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-pagination {
    display: flex;
    gap: 8px;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background: #ff6a00;
    transform: scale(1.2);
}

.left-controls-buttons {
    display: flex;
    gap: 12px;
}

.left-controls-buttons button {
    width: 48px;
    height: 48px;
    border: none;
    background: #ff6a00;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 106, 0, 0.3);
}

.left-controls-buttons button:hover {
    background: #e55c00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.4);
}

.left-controls-buttons button:active {
    transform: translateY(0);
}

/* RIGHT SIDE */
.hero-right {
    width: 45%;
    position: relative;
    overflow: hidden;
}

.hero-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.right-track {
    display: flex;
    height: 100%;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.right-slide {
    min-width: 100%;
    position: relative;
}

.right-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 3;
    color: white;
}

.slide-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1rem;
    max-width: 400px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 106, 0, 0.9);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.explore-btn:hover {
    background: #ff6a00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.right-controls {
    position: absolute;
    bottom: 140px;
    right: 30px;
    display: flex;
    gap: 12px;
    z-index: 4;
}

.right-controls button {
    width: 52px;
    height: 52px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.right-controls button:hover {
    background: rgba(255, 106, 0, 0.9);
    transform: scale(1.1);
}

.progress-container {
    position: absolute;
    bottom: 100px;
    left: 30px;
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    z-index: 4;
}

.progress-bar {
    height: 100%;
    width: 33.33%;
    background: #ff6a00;
    transition: width 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FULL WIDTH BANNER ===== */
.full-width-banner {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    background-color: white;
}

.slides-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.nav-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 1);
}

.nav-dot.active {
    background: #e74c3c;
    border-color: #e74c3c;
    transform: scale(1.2);
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.arrow:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.arrow-left {
    left: 25px;
}

.arrow-right {
    right: 25px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    width: 100%;
    padding: 60px 0;
    background: #f9f9f9;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
}

.about-image {
    flex: 1;
    min-height: 360px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}

.about-content {
    flex: 1;
    position: relative;
    background-image: url("images/360_F_1551750232_29FdgfmybnKOpOVGwD98n9GkimsQFOuH.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content-overlay {
    position: relative;
    z-index: 2;
    padding: 40px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(2px);
    min-height: 100%;
}

.about-content h5 {
    color: #ff7a00;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
}

.about-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #222;
    position: relative;
}

.about-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    position: relative;
}

.about-content ul {
    padding: 0;
    margin: 20px 0;
    list-style: none;
    position: relative;
}

.about-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
    position: relative;
}

.about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #ff7a00;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s ease;
    position: relative;
}

.about-btn:hover {
    background: #e56b00;
    transform: translateY(-2px);
}

/* ===== DESTINATIONS SECTION ===== */
.destinations {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.destinations h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* Region Tabs - THIS IS THE KEY PART FOR SCROLLING */
.region-tabs {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
    width: 100%;
}

/* FOR MOBILE - THIS ENSURES SCROLLING WORKS */
@media (max-width: 768px) {
    .region-tabs {
        flex-wrap: nowrap;           /* Prevent wrapping */
        overflow-x: auto;             /* Enable horizontal scroll */
        overflow-y: hidden;            /* Hide vertical scroll */
        -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
        scrollbar-width: thin;         /* Thin scrollbar for Firefox */
        gap: 20px;                     /* Reduce gap on mobile */
        padding-bottom: 10px;          /* Space for scrollbar */
        white-space: nowrap;           /* Keep items in one line */
    }

    /* Show scrollbar on mobile */
    .region-tabs::-webkit-scrollbar {
        height: 4px;
    }

    .region-tabs::-webkit-scrollbar-thumb {
        background: #ff6a00;
        border-radius: 10px;
    }

    .region-tabs::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    /* Make buttons non-shrinkable */
    .region-tabs button {
        flex: 0 0 auto;  /* Don't shrink, don't grow, auto basis */
        white-space: nowrap; /* Keep text in one line */
    }
}

.region-tabs button {
    background: none;
    border: none;
    padding: 10px 0;
    font-size: 16px;
    cursor: pointer;
    color: #444;
    position: relative;
}

.region-tabs button.active {
    color: #000;
    font-weight: 600;
}

.region-tabs button.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff6a00;
}

.destination-grid {
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    gap: 20px;
}

.big-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 365px;
}

.big-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 170px;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    box-sizing: border-box;
}

.overlay h3,
.overlay h4 {
    margin: 0;
    font-size: 20px;
}

.overlay span {
    font-size: 13px;
}

/* Additional mobile responsive styles */
@media (max-width: 768px) {
    .destinations h2 {
        font-size: 28px;
    }

    .destination-grid {
        grid-template-columns: 1fr;
    }

    .big-card {
        height: 250px;
    }

    .small-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .card {
        height: 150px;
    }
}

/* ===== TRENDING SECTION ===== */
.trending-section {
    padding: 60px 40px;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

.trending-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.trending-header h2 {
    font-size: 38px;
    font-weight: 600;
    color: #2f3b4a;
}

.view-all {
    font-size: 18px;
    font-weight: 500;
    color: #1a2b6d;
    text-decoration: none;
}

.view-all span {
    color: #ff5722;
    font-size: 22px;
}

.slider-wrapper {
    position: relative;
}

.trending-slider {
    display: flex;
    gap: 24px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.trend-card {
    min-width: 20%;
}

.trend-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 16px;
}

.trend-card p {
    margin-top: 14px;
    font-size: 18px;
    font-weight: 500;
    color: #3d3d3d;
}

.slide-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    font-size: 32px;
    padding: 6px 14px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 10;
}

.slide-btn.left {
    left: -20px;
}

.slide-btn.right {
    right: -20px;
}

/* ===== MIDBAN SLIDER ===== */
.midban-wrapper {
    position: relative;
    overflow: hidden;
    height: 420px;
    border-radius: 12px;
}

.midban-track {
    display: flex;
    width: 100%;
    transition: transform 0.6s ease-in-out;
}

.midban-slide {
    min-width: 100%;
    position: relative;
}

.midban-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.midban-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.15));
    z-index: 1;
}

.midban-content {
    position: absolute;
    top: 50%;
    left: 70px;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
    max-width: 450px;
    animation: midbanFadeUp 0.8s ease forwards;
}

.midban-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.midban-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

.midban-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #ff7a00;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
}

.midban-btn:hover {
    background: #ff9a3c;
}

@keyframes midbanFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

.midban-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 26px;
    z-index: 50;
}

.midban-prev {
    left: 20px;
}

.midban-next {
    right: 20px;
}

.midban-dots {
    position: absolute;
    bottom: 18px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 50;
}

.midban-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #fff;
    opacity: 0.4;
    border-radius: 50%;
    cursor: pointer;
}

.midban-dots span.active {
    width: 28px;
    border-radius: 20px;
    opacity: 1;
}

/* ===== WHY EDITORIAL SECTION ===== */
.why-editorial {
    background: #fff;
    padding: 48px 20px;
    position: relative;
    overflow: hidden;
}

.why-editorial::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
}

.why-wrap {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.why-left-bg {
    position: relative;
    background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80");
    background-size: cover;
    background-position: center 30%;
    border-radius: 24px;
    overflow: hidden;
    min-height: 600px;
    transition: transform 0.3s ease;
}

.why-left-bg:hover {
    transform: translateY(-5px);
}

.why-left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.8) 100%);
}

.why-left-content {
    position: relative;
    padding: 80px 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-left-content .eyebrow {
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 600;
    color: #2563eb;
    text-transform: uppercase;
    display: inline-block;
    padding: 6px 12px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 20px;
    margin-bottom: 20px;
}

.why-left-content h2 {
    font-size: 48px;
    line-height: 1.1;
    margin: 18px 0;
    color: #0f172a;
    font-weight: 700;
}

.why-left-content .highlight-text {
    background: linear-gradient(120deg, #2563eb 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-left-content p {
    font-size: 17px;
    color: #475569;
    max-width: 420px;
    line-height: 1.6;
    margin-top: 10px;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    margin-top: 40px;
    border-radius: 3px;
}

.why-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px 0;
}

.why-row {
    padding: 28px 0;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-row:hover {
    padding-left: 20px;
    background: rgba(37, 99, 235, 0.02);
    border-bottom-color: #2563eb;
}

.why-row:hover .row-icon {
    transform: translateX(8px);
    color: #2563eb;
}

.row-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.row-number {
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-row h3 {
    font-size: 22px;
    font-weight: 600;
    color: #0f172a;
    flex: 1;
    margin: 0;
    transition: color 0.3s ease;
}

.why-row:hover h3 {
    color: #2563eb;
}

.row-icon {
    font-size: 20px;
    color: #94a3b8;
    transition: all 0.3s ease;
    font-weight: 300;
}

.row-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    padding-left: 51px;
    max-width: 90%;
    transition: color 0.3s ease;
}

.why-row:hover .row-description {
    color: #475569;
}

.why-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #2563eb, #3b82f6);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.why-row:hover::before {
    transform: translateX(0);
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: 1px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.reviews-left {
    width: 100%;
    padding-right: 20px;
}

.reviews-left h2 {
    font-size: 42px;
    font-family: serif;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #000;
}

.rating-box {
    margin-top: 40px;
}

.rating-box h3 {
    font-size: 28px;
    color: #00aa6c;
    margin-bottom: 15px;
    font-weight: 700;
}

.rating-circles {
    display: flex;
    gap: 8px;
    margin: 15px 0;
}

.rating-circles span,
.review-stars span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid #00aa6c;
    display: inline-block;
}

.rating-box p {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}

.rating-box strong {
    font-weight: 700;
}

.trip-logo {
    margin-top: 25px;
    width: 160px;
    height: auto;
    display: block;
}

.reviews-right {
    width: 100%;
    position: relative;
    padding: 0 10px;
}

.reviews-slider {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.reviews-track {
    display: flex;
    gap: 25px;
    transition: transform 0.6s ease;
}

.review-card {
    flex: 0 0 calc(33.333% - 17px);
    background: #f6f6f6;
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    min-width: 0;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.review-header div {
    flex-grow: 1;
    min-width: 0;
}

.review-header h4 {
    font-size: 16px;
    color: #000;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-header span {
    font-size: 14px;
    color: #666;
}

.ta-badge {
    width: 20px;
    height: auto;
    flex-shrink: 0;
}

.review-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 15px;
}

.review-card p {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 12px;
    /* display: -webkit-box;
    -webkit-line-clamp: 3; */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-card a {
    color: #00aa6c;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.review-card a:hover {
    text-decoration: underline;
}

.review-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 18px;
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    top: 50%;
    transform: translateY(-50%);
}

.review-arrow:hover {
    background: #f0f0f0;
}

.review-arrow.left {
    left: -10px;
}

.review-arrow.right {
    right: -10px;
}

.slider-dots {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #00aa6c;
}

/* ===== FAQ SECTION ===== */
.home-faq {
    padding: 28px 20px;
    background: #fafafa;
}

.faq-container {
    max-width: 900px;
    margin: auto;
}

.home-faq h2 {
    font-size: 38px;
    font-family: serif;
    margin-bottom: 10px;
}

.faq-subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

.faq-item {
    border-bottom: 1px solid #e2e2e2;
    padding: 18px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0;
}

.faq-question span {
    font-size: 26px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    margin-top: 14px;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* ===== FOOTER BANNER ===== */
.footer-banner-diagonal {
    position: relative;
    height: 290px;
    overflow: hidden;
    background: #0057b8;
}

.footer-banner-diagonal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-left {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 55%;
    padding: 35px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #0057b8;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}

.donation-text {
    color: #ffd44d;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.banner-left h2 {
    color: #fff;
    font-size: 36px;
    font-family: Georgia, serif;
    margin-bottom: 18px;
}

.banner-btn {
    display: inline-block;
    background: #ff7a18;
    color: #fff;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
    transition: 0.3s ease;
}

.banner-btn:hover {
    background: #ff5e00;
}

/* ===== FOOTER ===== */


.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: auto;
    padding: 34px 20px 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #ddd;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #fff;
}

.contact li {
    font-size: 14px;
    color: #ddd;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

.social-links a:hover {
    background: #fff;
    color: #000;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 18px;
    font-size: 13px;
    background: rgba(0, 0, 0, 0.4);
    color: #ccc;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero {
        height: 75vh;
    }
    .hero-left {
        padding: 30px;
    }
}

@media (max-width: 1024px) {
    .trend-card {
        min-width: 33%;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        height: auto;
        max-height: none;
    }
    .hero-left, .hero-right {
        width: 100%;
    }
    .hero-right {
        height: 350px;
    }
    .left-page {
        grid-template-columns: repeat(2,1fr);
    }
    .slide-content {
        padding: 25px;
    }
    .slide-content h2 {
        font-size: 1.7rem;
    }
    .right-controls {
        bottom: 110px;
    }
    .full-width-banner {
        height: 500px;
    }
    .destination-grid {
        grid-template-columns: 1fr;
    }
    .small-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .why-wrap {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .why-left-bg {
        min-height: 500px;
    }
    .why-left-content {
        padding: 60px 40px;
    }
    .why-left-content h2 {
        font-size: 40px;
    }
    .why-right {
        padding: 0;
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }
    .hero-right {
        order: 1;
        height: 320px;
        border-radius: 0 0 28px 28px;
    }
    .hero-left {
        order: 2;
        padding: 16px;
    }
    .left-slider {
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 10px;
        scrollbar-width: none;
    }
    .left-slider::-webkit-scrollbar {
        display: none;
    }
    .left-track {
        display: flex;
        gap: 12px;
        transform: none !important;
    }
    .left-page {
        min-width: auto;
        display: flex;
        gap: 12px;
    }
    .left-card {
        min-width: 48%;
        flex-shrink: 0;
    }
    .card-img,
    .card-overlay {
        height: 120px;
    }
    .left-controls {
        display: none;
    }
    .full-width-banner {
        height: 320px;
    }
    .slide-content {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        max-width: 90%;
    }
    .slide-content h1 {
        font-size: 1.8rem;
    }
    .slide-content p {
        font-size: 0.95rem;
    }
    .about-container {
        flex-direction: column;
    }
    .about-image {
        min-height: 300px;
    }
    .content-overlay {
        padding: 30px;
    }
    .about-content h2 {
        font-size: 26px;
    }
    .trend-card {
        min-width: 50%;
    }
    .midban-wrapper,
    .midban-slide img {
        height: 300px;
    }
    .midban-content {
        left: 20px;
        max-width: 90%;
    }
    .midban-content h2 {
        font-size: 26px;
    }
    .banner-left {
        width: 100%;
        clip-path: none;
        padding: 25px;
    }
    .banner-left h2 {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .reviews-section {
        padding: 40px 15px;
    }
    .reviews-container {
        gap: 30px;
    }
    .reviews-left {
        padding-right: 0;
        text-align: center;
    }
    .reviews-left h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .rating-box {
        margin-top: 30px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .rating-box h3 {
        font-size: 24px;
    }
    .rating-circles {
        justify-content: center;
        margin: 10px 0;
    }
    .trip-logo {
        margin: 20px auto 0;
    }
    .reviews-right {
        padding: 0;
    }
    .review-card {
        flex: 0 0 100%;
        padding: 20px;
        margin: 0 5px;
    }
    .review-arrow {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    .slider-dots {
        display: flex;
    }
}

@media (max-width: 600px) {
    .why-editorial {
        padding: 47px 20px;
    }
    .why-left-content h2 {
        font-size: 34px;
    }
    .row-header {
        flex-wrap: wrap;
    }
    .row-description {
        padding-left: 0;
        max-width: 100%;
    }
    .home-faq h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .full-width-banner {
        height: 260px;
    }
    .slide-content h1 {
        font-size: 1.5rem;
    }
    .small-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .content-overlay {
        padding: 20px;
    }
    .about-content h2 {
        font-size: 22px;
    }
    .about-btn {
        padding: 10px 25px;
    }
    .trend-card {
        min-width: 100%;
    }
    .reviews-section {
        padding: 30px 10px;
    }
    .reviews-left h2 {
        font-size: 24px;
    }
    .review-card {
        padding: 18px;
    }
    .avatar {
        width: 36px;
        height: 36px;
    }
    .review-header h4 {
        font-size: 15px;
    }
    .review-header span {
        font-size: 13px;
    }
}

@media (max-width: 500px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1024px) {
    .reviews-container {
        flex-direction: row;
        grid-template-columns: 35% 65%;
        display: grid;
    }
    .review-card {
        flex: 0 0 calc(33.333% - 17px);
    }
    .review-arrow.left {
        left: -20px;
    }
    .review-arrow.right {
        right: -20px;
    }
}

@media (max-width: 1023px) and (min-width: 768px) {
    .reviews-container {
        flex-direction: column;
    }
    .reviews-left {
        padding-right: 0;
        text-align: center;
    }
    .reviews-left h2 {
        font-size: 36px;
    }
    .rating-box {
        max-width: 500px;
        margin: 40px auto 0;
    }
    .rating-circles {
        justify-content: center;
    }
    .review-card {
        flex: 0 0 calc(50% - 13px);
        min-width: 0;
    }
    .review-arrow.left {
        left: -10px;
    }
    .review-arrow.right {
        right: -10px;
    }
    .slider-dots {
        display: flex;
    }
}

.reviews-slider {
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}