/* Activity Home Page Styles */

.activity-home-hero {
    position: relative;
    padding: 180px 0 80px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    text-align: center;
}

.activity-home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.active-home-content {
    position: relative;
    z-index: 2;
}

.activity-home-hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.activity-home-hero h1 span {
    color: var(--accent-color-2);
}

.activity-home-hero p {
    font-size: 18px;
    color: #dfdfdf;
    max-width: 800px;
    margin: 15px auto 40px;
}

.activity-search-container {
    max-width: 800px;
    margin: 0 auto 30px;
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.activity-search-item {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-right: 1px solid #eee;
}

.activity-search-item:last-of-type {
    border-right: none;
}

.activity-search-item i {
    color: var(--accent-color);
    margin-right: 10px;
}

.activity-search-item input {
    border: none;
    width: 100%;
    outline: none;
    font-size: 15px;
}

.activity-search-item input::placeholder {
    color: #888;
}

.activity-search-button {
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s;
}

.activity-search-button:hover {
    background: #1a3d8c;
}

.activity-chips {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.activity-chip {
    padding: 8px 18px;
    border-radius: 30px;
    background: #ffffff33;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid #ffffff7d;
}

.activity-chip:hover,
.activity-chip.active {
    background: #244fa447;
    border-color: var(--accent-color);
    color: #ffffff;
}

/* Stats Section */
.activity-stats {
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.activity-stats .stat-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.activity-stat-item {
    text-align: center;
}

.activity-stat-item h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #200f0d;
}

.activity-stat-item p {
    font-size: 14px;
    color: #888;
    margin: 0;
}

/* Trending Activity Card Redesign */
.activity-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* height: 100%; */
    transition: all 0.3s ease;
    border: 1px solid #eef0f2;
    display: flex;
    flex-direction: column;
    position: relative;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.activity-card-img {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.activity-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-card-img img {
    transform: scale(1.05);
}

.duration-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    text-transform: uppercase;
}

.activity-card-body {
    padding: 15px 15px 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-category {
    font-size: 10px;
    font-weight: 800;
    color: #f39c12;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-title-link {
    text-decoration: none;
    color: #1a1a1a;
    margin-bottom: 8px;
    display: block;
}

.activity-card-body h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    transition: 0.3s;
}

.card-title-link:hover h4 {
    color: var(--accent-color);
}

.card-meta-main {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 12px;
    color: #6c757d;
}

.card-meta-main span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-meta-main i {
    color: #2755b0;
    font-size: 14px;
}

.card-feature-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.feature-badge {
    background: #f1f8f1;
    border: 1px solid #d4edda;
    color: #27ae60;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* Second feature badge style as per image */
.feature-badge:nth-child(2) {
    background: #f4f6fc;
    border: 1px solid #e1e8f0;
    color: #3498db;
}

.card-rating-row {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.card-rating-row .stars {
    color: #f1c40f;
    font-size: 12px;
}

.rating-val {
    font-weight: 800;
    font-size: 14px;
    color: #2c3e50;
    margin-left: 2px;
}

.review-count {
    font-size: 12px;
    color: #95a5a6;
}

.card-divider {
    height: 1px;
    background: #eee;
    margin: 0 0 12px;
}

.card-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.from-text {
    font-size: 11px;
    color: #95a5a6;
    margin: 0;
    line-height: 1;
}

.price-val {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 1px 0;
    line-height: 1;
}

.per-person {
    font-size: 11px;
    color: #95a5a6;
    margin: 0;
}

.book-now-btn {
    background: var(--accent-blue);
    color: #fff;
    border: 1px solid var(--accent-blue);
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.book-now-btn:hover {
    color: var(--accent-blue);
    background: #fff;
    border: 1px solid var(--accent-blue);
}

.confirmation-time {
    font-size: 12px;
    color: #27ae60;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.confirmation-time i {
    color: #e67e22;
}

/* Experience Buckets */
.bucket-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #eee;
    height: 100%;
    transition: 0.3s;
    box-shadow: 0 2px 8px 0 rgb(99 99 99 / .2);
    display: flex;
    flex-direction: column;
}

.bucket-card:hover {
    border-color: var(--accent-color);
}

.bucket-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
}

.bucket-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.bucket-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.bucket-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.bucket-tag {
    padding: 5px 12px;
    background: #f7f7f7;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #888;
}

.bucket-link {
    color: #ff3131;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
}

/* Check Why Us */
.check-why-sec {
    padding: 0 0 40px;
    background: #fff;
    text-align: center;
}

.check-item {
    text-align: center;
    padding: 20px;
}

.check-icon {
    width: 50px;
    height: 50px;
    background: #f4f6fc;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-color);
    font-size: 24px;
}

/* Learning Circles */
.learning-sec {
    padding: 60px 0;
}

.learning-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px 0 rgb(99 99 99 / .2);
}

.learning-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

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

.learning-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: #555;
}

.learning-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url(/assets/img/trip-detail/correct.webp);
    background-size: cover;
}

/* Testimonials Home */
.testi-home-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: 0.3s;
}

.testi-home-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testi-text {
    font-size: 14px;
    font-style: normal;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.testi-icon {
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.testi-icon h6 {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

.testi-user-info h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.testi-user-info p {
    font-size: 12px;
    color: #888;
    margin: 0;
}

/* Footer CTA */
.footer-cta {
    background: var(--accent-color);
    padding: 80px 0;
    border-radius: 40px;
    margin: 0;
    text-align: center;
    color: #fff;
}

.footer-cta h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-btn-primary {
    background: var(--contrast-color);
    color: var(--accent-color);
    padding: 15px 40px;
    border-radius: 40px;
    font-weight: 700;
}

.cta-btn-primary:hover {
    background: var(--accent-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.cta-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 15px 40px;
    border-radius: 40px;
    font-weight: 700;
}

.cta-btn-secondary:hover {
    background: var(--contrast-color);
    color: var(--accent-color);
}

/* Modern Activity Card Redesign */
.modern-activity-card {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none !important;
}

.modern-activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modern-card-img {
    position: relative;
    height: 220px;
}

.modern-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modern-badge-spring {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #ffff00;
    color: #000;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.modern-card-body {
    padding: 15px 20px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.modern-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 5px;
    font-size: 11px;
    color: #777;
}

.modern-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.modern-card-meta i {
    font-size: 11px;
    color: #777;
}

.modern-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.modern-card-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 5px;
    border-top: 1px solid #eee;
}

.modern-card-rating .stars {
    color: #ffc107;
    font-size: 11px;
}

.modern-rating-val {
    font-weight: 600;
    font-size: 11px;
    color: #333;
}

.modern-review-count {
    font-size: 11px;
    color: #777;
}

.modern-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.modern-price-box {
    display: flex;
    flex-direction: column;
}

.modern-price-val {
    font-size: 16px;
    font-weight: 900;
    color: #000;
    line-height: 1;
}

.modern-per-person {
    font-size: 12px;
    line-height: 14px;
    color: #777;
    margin-top: 2px;
}

.modern-book-btn {
    background: var(--accent-blue);
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    border: 1px solid var(--accent-blue);
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modern-book-btn:hover {
    color: var(--accent-blue);
    background: #fff;
    border: 1px solid var(--accent-blue);
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: var(--accent-blue) !important;
}
/* Things to Do - Destination Page Styles */

:root {
    --accent-blue: #2755b0;
    --accent-color: var(--accent-blue);
}

.modern-card-title {
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.things-hero {
    position: relative;
    padding: 120px 0 80px;
    background: #fff;
    /* White background as per image */
    color: #1a1a1a;
    text-align: left;
    margin-top: 80px;
    overflow: hidden;
}

.things-hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    left: -200px;
    top: -200px;
    background: radial-gradient(circle, rgba(39, 85, 176, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.things-hero::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    right: -100px;
    bottom: -100px;
    background: radial-gradient(circle, rgba(39, 85, 176, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.hero-text-col {
    flex: 1;
    min-width: 300px;
    max-width: 580px;
}

.hero-img-col {
    flex: 1 1 500px;
    max-width: 660px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(39, 85, 176, 0.08);
    color: #2755b0;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(39, 85, 176, 0.15);
}

.hero-title-small {
    font-size: 18px;
    font-weight: 700;
    /* color: #4b5563; */
    margin-bottom: 5px;
    display: block;
}

.hero-title-main {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-title-main .heading-accent {
    color: var(--accent-color);
}

.hero-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 30px;
    max-width: 520px;
}

.hero-highlights {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 35px;
    margin-bottom: 25px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
}

.highlight-count {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 4px;
}

.highlight-label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.highlight-divider {
    width: 1px;
    height: 35px;
    background: #e5e7eb;
}

.hero-categories-quick {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.quick-cat-label {
    font-size: 13px;
    color: #9ca3af;
    font-weight: 600;
    margin-right: 5px;
}

.quick-cat-pill {
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    background: #f3f4f6;
    padding: 6px 14px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
}

.quick-cat-pill:hover {
    background: #2755b0;
    color: #fff;
    border-color: #2755b0;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(39, 85, 176, 0.2);
}

.hero-info-links {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-info-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 2px;
    transition: 0.3s;
}

.hero-info-link:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.hero-info-link i {
    font-size: 18px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    align-items: center;
}

.hero-stat-item h4 {
    font-size: 18px;
    font-weight: 800;
    color: #222;
    margin-bottom: 5px;
}

.hero-stat-item p {
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #9d9d9d;
}

.things-hero .photos-grid-container {
    height: 420px;
    display: grid;
    grid-template-columns: 0.8fr 1fr !important;
    grid-gap: 6px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.things-hero .photos-grid-container > div {
    height: 100%;
}

.things-hero .photos-grid-container.grid-1 {
    grid-template-columns: 1fr !important;
}

.things-hero .photos-grid-container .main-photo.img-box {
    grid-row: 1;
    grid-column: 1;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none;
    overflow: hidden;
    position: relative;
}

.things-hero .photos-grid-container .main-photo.img-box .glightbox {
    width: 100%;
    height: 100%;
    display: block;
}

.things-hero .photos-grid-container .main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
    padding: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.things-hero .photos-grid-container .sub {
    display: grid;
    grid-gap: 6px;
    height: 100%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.things-hero .photos-grid-container .sub .img-box {
    border: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.things-hero .photos-grid-container .sub .img-box .glightbox {
    width: 100%;
    height: 100%;
    display: block;
}

.things-hero .photos-grid-container .sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
    padding: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover effects */
.things-hero .photos-grid-container .img-box:hover img {
    transform: scale(1.06);
}

/* Grid Specific Layouts */

/* 2-Image Layout: Left main photo, Right has 1 full-height photo */
.things-hero .photos-grid-container.grid-2 .sub {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

/* 3-Image Layout: Left main photo, Right has 2 stacked photos */
.things-hero .photos-grid-container.grid-3 .sub {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
}

/* 4-Image Layout: Left main photo, Right top spans 2 columns, Right bottom has 2 splitting columns */
.things-hero .photos-grid-container.grid-4 .sub {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.things-hero .photos-grid-container.grid-4 .sub .img-box:first-child {
    grid-column: span 2;
}

/* Caption Overlay styles */
.things-hero .image-overlay-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
    padding: 24px 16px 16px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    pointer-events: none;
    z-index: 2;
}

.things-hero .image-overlay-caption span {
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    font-family: 'Montserrat', 'Inter', sans-serif;
    letter-spacing: 0.5px;
    transform: translateY(2px);
    transition: transform 0.3s ease;
}

.things-hero .img-box:hover .image-overlay-caption span {
    transform: translateY(0);
}

.things-hero .photos-grid-container .transparent-box {
    background-color: rgba(0, 0, 0, 0.65) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: background-color 0.3s ease;
}

.things-hero .photos-grid-container .img-box:hover .transparent-box {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

.things-hero .photos-grid-container .caption {
    font-weight: 500;
    font-size: 13px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.things-hero .photos-grid-container .caption i {
    font-size: 28px;
    margin-bottom: 4px;
}

/* Category Filter Tabs (Sticky Section) */
.things-filter-sec {
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 115px;
    z-index: 100;
}

.things-filter-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
    overflow-x: auto;
    scrollbar-width: none;
}

.things-filter-nav::-webkit-scrollbar {
    display: none;
}

.things-filter-item {
    padding: 6px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
    position: relative;
    transition: 0.3s;
    border-bottom: 3px solid transparent;
}

.things-filter-item i {
    font-size: 18px;
    color: #777;
    transition: 0.3s;
}

.things-filter-item:hover {
    color: var(--accent-color);
}

.things-filter-item.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.things-filter-item.active i {
    color: var(--accent-color);
}

/* Activity Grid Section */
.things-grid-sec {
    padding: 60px 0;
    background: #f8f9fa;
}

.things-grid-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
    .things-hero {
        padding: 100px 0 50px;
    }

    .hero-flex {
        gap: 40px;
    }

    .hero-text-col {
        max-width: 100%;
    }

    .hero-img-col {
        flex: 1;
        max-width: 100%;
        margin-top: 10px;
    }

    .hero-title-main {
        font-size: 44px;
    }

    .hero-highlights {
        gap: 15px;
        margin-top: 25px;
        margin-bottom: 20px;
    }

    .highlight-count {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .things-hero {
        padding-top: 100px;
    }

    .hero-title-main {
        font-size: 36px;
    }

    .things-hero .photos-grid-container {
        height: 320px;
    }
}

@media (max-width: 575px) {
    .things-hero .photos-grid-container {
        height: 250px;
        grid-gap: 4px;
        border-radius: 12px;
    }

    .things-hero .photos-grid-container .sub {
        grid-gap: 4px;
    }

    .hero-highlights {
        flex-wrap: wrap;
        gap: 15px 25px;
    }

    .highlight-divider {
        display: none;
    }
}

/* Sidebar Filters */
.sidebar-filters {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    position: sticky;
    top: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    color: #222;
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group .clear {
    font-size: 0.7rem;
    color: var(--accent-color);
    cursor: pointer;
    text-transform: none;
    font-weight: 600;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    color: #555;
    transition: 0.2s;
}

.checkbox-item:hover {
    color: var(--accent-color);
}

.checkbox-item input {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.form-range {
    width: 100%;
    margin-top: 10px;
}

/* =============================================
   FAQ Section – Things To Do Page
   ============================================= */
.bangkok-page .faq {
    padding: 60px 0;
    background: #fff;
}

.bangkok-page .faq .sec-title h4 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    position: relative;
    padding-bottom: 15px;
}

.bangkok-page .faq .sec-title h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.bangkok-page .faq .faq-list .accordion-item {
    border: none;
    border-radius: 12px;
    margin-bottom: 14px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.bangkok-page .faq .faq-list .accordion-item:hover {
    box-shadow: 0 4px 20px rgba(39, 85, 176, 0.1);
}

.bangkok-page .faq .faq-list .accordion-header {
    padding: 18px 22px;
    margin: 0;
    background: #fff;
    border-radius: 12px;
}

.bangkok-page .faq .faq-list .accordion-button {
    padding: 0;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    background: transparent;
    box-shadow: none;
}

.bangkok-page .faq .faq-list .accordion-button:not(.collapsed) {
    color: var(--accent-color);
    background: transparent;
    box-shadow: none;
}

.bangkok-page .faq .faq-list .accordion-button:focus {
    box-shadow: none;
}

.bangkok-page .faq .faq-list .accordion-body {
    padding: 0 22px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.bangkok-page .faq .faq-list .accordion-collapse {
    transition: height 0.35s ease;
}

/* =============================================
   Reviews Section – Things To Do Page
   ============================================= */
.ttd-reviews-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.ttd-reviews-section .sec-title h4 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.ttd-reviews-section .sec-title h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Rating Summary */
.ttd-reviews-summary {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #fff;
    border-radius: 14px;
    padding: 30px 35px;
    margin: 30px 0 35px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.ttd-reviews-score {
    text-align: center;
    min-width: 120px;
    flex-shrink: 0;
}

.ttd-score-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 8px;
}

.ttd-score-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 6px;
}

.ttd-score-stars i {
    font-size: 16px;
    color: #f5a623;
}

.ttd-score-count {
    font-size: 13px;
    color: #888;
    white-space: nowrap;
}

.ttd-reviews-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ttd-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ttd-bar-label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    min-width: 38px;
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.ttd-bar-label i {
    font-size: 11px;
    color: #f5a623;
}

.ttd-bar-track {
    flex: 1;
    height: 8px;
    background: #eef1f5;
    border-radius: 10px;
    overflow: hidden;
}

.ttd-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #4a80d4);
    border-radius: 10px;
    transition: width 0.6s ease;
}

.ttd-bar-count {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    min-width: 20px;
    text-align: right;
}

/* Review Cards Grid */
.ttd-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ttd-review-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ttd-review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(39, 85, 176, 0.1);
}

.ttd-review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.ttd-reviewer-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #4a80d4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ttd-reviewer-avatar span {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.ttd-reviewer-info {
    flex: 1;
    min-width: 0;
}

.ttd-reviewer-info h5 {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin: 0 0 3px;
}

.ttd-reviewer-info p {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.ttd-review-stars {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.ttd-review-stars i {
    font-size: 14px;
    color: #f5a623;
}

.ttd-review-stars i.bi-star {
    color: #ddd;
}

.ttd-review-body p {
    font-size: 14px;
    line-height: 1.65;
    color: #555;
    margin: 0;
}

/* View All Reviews Button */
.ttd-reviews-more {
    text-align: center;
    margin-top: 30px;
}

.ttd-reviews-more button {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ttd-reviews-more button:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 85, 176, 0.25);
}

.ttd-reviews-more button i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.ttd-reviews-more button:hover i {
    transform: translateY(2px);
}

/* ============================= */
/* Top Attractions Section */
/* ============================= */

.things-attractions-sec {
    padding: 60px 0;
}

.things-attractions-wrapper {
    text-align: center;
}

.things-attractions-title {
    font-size: 28px;
    font-weight: 700;
    color: #1c2c34;
    margin-bottom: 30px;
}

/* Flex wrap layout like pills */
.things-attractions-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px 18px;
}

/* Individual Tag */
.things-attraction-tag {
    display: flex;
    align-items: center;
    border: 1px solid #2755b0;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    transition: all 0.25s ease;
    cursor: pointer;
}

/* Number Box */
.things-attraction-number {
    background: #2755b0;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
}

/* Text */
.things-attraction-name {
    font-size: 14px;
    color: #1c2c34;
    padding: 6px 12px;
    white-space: nowrap;
}

/* Hover Effect (modern subtle) */
.things-attraction-tag:hover {
    background: #2755b0;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(39, 85, 176, 0.15);
}

.things-attraction-tag:hover .things-attraction-name {
    color: #fff;
}

/* ============================= */
/* Footer Links Section */
/* ============================= */




.alt-inline h4 {
    margin: 20px 0 10px;
}

.inline-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.inline-links a {
    color: #2755b0;
    font-size: 14px;
    position: relative;
}

.inline-links a::after {
    content: "•";
    margin-left: 10px;
    color: #ccc;
}





/* Responsive */
@media (max-width: 992px) {
    .things-links-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}




/* Mobile Responsive – FAQ & Reviews */
@media (max-width: 991px) {
    .ttd-reviews-grid {
        grid-template-columns: 1fr;
    }

    .ttd-reviews-summary {
        flex-direction: column;
        gap: 25px;
        padding: 25px 20px;
    }

    .ttd-reviews-score {
        min-width: auto;
    }

    .ttd-reviews-bars {
        width: 100%;
    }
}

@media (max-width: 767px) {

    .bangkok-page .faq,
    .ttd-reviews-section {
        padding: 40px 0;
    }

    .bangkok-page .faq .sec-title h4,
    .ttd-reviews-section .sec-title h4 {
        font-size: 22px;
    }

    .ttd-score-number {
        font-size: 38px;
    }

    .ttd-review-card {
        padding: 18px;
    }

    .ttd-review-header {
        flex-wrap: wrap;
        gap: 10px;
    }

    .ttd-review-stars {
        width: 100%;
        margin-top: -4px;
        margin-left: 60px;
    }

    .bangkok-page .faq .faq-list .accordion-header {
        padding: 14px 16px;
    }

    .bangkok-page .faq .faq-list .accordion-button {
        font-size: 14px;
    }

    .bangkok-page .faq .faq-list .accordion-body {
        padding: 0 16px 16px;
        font-size: 13px;
    }

    .things-attractions-title {
        font-size: 22px;
    }

    .things-attraction-name {
        font-size: 13px;
    }

    .things-attractions-list {
        gap: 10px;
    }
}

/* GLightbox image size overrides */
.glightbox-container .ginner-container {
    width: 95vw !important;
    height: 95vh !important;
    max-width: 95vw !important;
    max-height: 95vh !important;
}

.gslide-media {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
}

.gslide-media img,
.gslide-image img {
    width: 70% !important;
    height: 70% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
}

.gslide-inner-content {
    padding: 0 !important;
    width: 100% !important;
    height: 100% !important;
}
/* --- Go4Explore Activities - Unified Responsive Stylesheet --- */

/* --- Large Desktops & Mac (1200px - 1440px) --- */
@media (max-width: 1440px) {
    .activity-home-hero h1 {
        font-size: 56px;
    }

    .activity-detail-title h1 {
        font-size: 32px;
    }

    .activities-hero h1 {
        font-size: 3rem;
    }
}

/* --- Ipad Pro & Small Laptops (992px - 1199px) --- */
@media (max-width: 1199px) {
    .activity-home-hero h1 {
        font-size: 48px;
    }

    .activity-search-container {
        max-width: 90%;
    }

    .activities-hero h1 {
        font-size: 2.8rem;
    }

    .search-container {
        width: 95%;
        max-width: 850px;
    }

    .activity-detail-banner {
        height: 350px;
    }

    .activity-detail-title h1 {
        font-size: 28px;
    }
}

/* --- Tablets & Ipads (Portrait) (768px - 991px) --- */
@media (max-width: 991px) {

    /* Activity Home */
    .activity-home-hero {
        padding: 140px 0 60px;
    }

    .activity-home-hero h1 {
        font-size: 40px;
    }

    .activity-search-container {
        flex-direction: column;
        border-radius: 20px;
        padding: 15px;
    }

    .activity-search-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 12px 0;
        width: 100%;
    }

    .activity-search-button {
        width: 100%;
        margin-top: 15px;
    }

    .activity-stats .stat-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .activity-stat-item {
        width: 45%;
    }

    /* Activity Category */
    .sidebar-filters {
        display: none;
    }

    /* On tablets, we should move filters to a drawer or bottom, but for now d-none as per standard */
    .activities-hero {
        padding: 140px 0 50px;
    }

    .activities-hero h1 {
        font-size: 2.4rem;
    }

    .search-container {
        height: auto;
        flex-direction: column;
        border-radius: 20px;
        padding: 15px;
        gap: 10px;
    }

    .search-item {
        border-right: none;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .search-button {
        width: 100%;
    }

    .activities-stats {
        flex-wrap: wrap;
        gap: 15px;
    }

    .stat-divider {
        display: none;
    }

    .activity-card {
        margin-bottom: 20px;
    }

    /* Activity Detail */
    .activity-detail-banner {
        height: 300px;
    }

    .quick-info-bar {
        gap: 20px;
    }

    .rating-section {
        padding: 30px;
    }

    .rating-summary-box h2 {
        font-size: 48px;
    }

    .footer-price-col h3 {
        font-size: 24px;
    }
}

/* --- Mobile Devices (Phones) ( < 767px) --- */
@media (max-width: 767px) {

    /* Activity Home Slider Implementation */
    .mobile-res-slider {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        padding-bottom: 20px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: -15px !important;
        margin-right: -15px !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1px !important;
    }

    .mobile-res-slider::-webkit-scrollbar {
        display: none;
    }

    .mobile-res-slider .col,
    .mobile-res-slider .col-auto,
    .mobile-res-slider>div {
        flex: 0 0 85% !important;
        max-width: 85% !important;
        scroll-snap-align: center;
    }

    /* Smaller slots slider */
    .slots-grid.mobile-res-slider .col-auto {
        flex: 0 0 auto !important;
        max-width: none !important;
    }

    /* Smaller chips slider */
    .chips-slider {
        display: flex !important;
        flex-wrap: wrap !important;
        overflow-x: auto !important;
        gap: 10px !important;
        padding: 5px 15px 15px !important;
        margin-left: -15px !important;
        margin-right: -15px !important;
    }

    .chips-slider::-webkit-scrollbar {
        display: none;
    }

    .activity-chip {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
    }

    .activity-home-hero {
        padding: 80px 0 30px;
    }

    .activity-home-hero h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .activity-home-hero p {
        font-size: 14px;
        margin-bottom: 25px;
        color: #fff;
    }

    .activity-search-container {
        padding: 10px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .activity-search-item {
        background: #f8f9fa;
        border-radius: 10px;
        margin-bottom: 8px;
        padding: 10px 15px !important;
        border: 1px solid #eee !important;
    }

    .activity-search-button {
        height: 50px;
        font-size: 16px;
        box-shadow: 0 4px 15px rgba(39, 85, 176, 0.3);
    }

    .activities-stats {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px 15px !important;
        padding: 20px 0 !important;
        max-width: 90% !important;
        margin: 0 auto !important;
    }

    .stat-item {
        width: auto !important;
        flex: 0 0 auto !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px !important;
        text-align: left !important;
    }

    .bucket-tags {
        margin-bottom: 0;
    }

    .categ-div {
        height: auto;
    }

    .stat-item i {
        font-size: 11px !important;
        line-height: 14px !important;
        color: var(--accent-color-2) !important;
    }

    .stat-item span {
        font-size: 11px !important;
        line-height: 1.2 !important;
        color: #fff !important;
    }

    .stat-item .highlight {
        color: var(--accent-color-2) !important;
        font-weight: 700 !important;
    }

    .stat-divider {
        display: inline-block !important;
        width: 1px !important;
        height: 16px !important;
        background: rgba(255, 255, 255, 0.4) !important;
        margin: 0 !important;
    }

    /* Titles */
    .home-sec-title h4 {
        font-size: 1.3rem;
        font-weight: 800;
    }

    /* Cards */
    .activity-card-body {
        padding: 15px;
    }

    .activity-card-body h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .card-meta-top {
        font-size: 11px;
        gap: 10px;
    }

    .bucket-card {
        padding: 20px;
        border-radius: 18px;
    }

    .bucket-card h3 {
        font-size: 1.2rem;
    }

    .bucket-card p {
        font-size: 13px;
        line-height: 1.5;
    }

    .bucket-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 15px;
    }

    .check-why-sec,
    .learning-sec,
    .testi-sec {
        padding: 30px 0;
    }

    .confirm-booking-btn-large {
        padding: 5px 15px;
        border-radius: 60px;
    }

    .price-val-dis {
        font-size: 16px;
        line-height: 26px;
    }

    .price-val-big {
        font-size: 30px;
        line-height: 40px;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 7px 18px;
        font-size: 12px;
    }

    .check-item {
        padding: 10px;
    }

    .activity-highlights-top p,
    .activity-highlights-top p span,
    .about-text p,
    .about-text p span,
    .about-text strong,
    .about-text p strong,
    .tour-detail.tour-detail-2 ul li {
        font-size: 14px !important;
    }

    .tour-detail.tour-detail-2.bg-light-green ul li,
    .tour-detail.tour-detail-2.bg-light-red ul li {
        font-size: 14px !important;
    }

    .activity-detail-page {
        padding-bottom: 30px;
    }

    .container.slots-section.booking-card-footer.mb-5 {
        margin-bottom: 1rem !important;
    }

    .row.gy-4.mobile-res-slider {
        justify-content: flex-start;
        padding: 0 20px !important;
    }

    .check-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .testi-home-card {
        padding: 20px;
    }

    .testi-text {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .footer-cta {
        padding: 50px 20px;
        border-radius: 25px;
    }

    .footer-cta h2 {
        font-size: 24px;
    }

    /* Activity Category */
    .activities-hero {
        padding: 80px 0 30px;
    }

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

    .activities-hero p {
        font-size: 13px;
        line-height: 1.5;
    }

    .search-container {
        padding: 10px;
        border-radius: 15px;
        background: #fff;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        margin-top: 20px;
    }

    .search-item {
        background: #f8f9fa;
        border-radius: 10px;
        margin-bottom: 8px;
        padding: 8px 15px !important;
        border: 1px solid #eee !important;
        width: 100% !important;
    }

    .search-button {
        width: 100%;
        height: 48px;
        font-size: 15px;
        background: var(--accent-color);
        color: #fff;
        border-radius: 10px;
    }

    .activities-stats {
        gap: 10px !important;
        padding: 15px 0 !important;
    }

    .stat-item {
        text-align: center !important;
    }

    .stat-item span {
        font-size: 9px !important;
    }

    /* Activity Detail */
    .activity-detail-banner {
        height: 220px;
        border-radius: 10px;
        margin-bottom: 25px;
    }

    .activity-chip {
        padding: 3px 10px;
        font-size: 10px;
    }

    .detail-badge-row {
        flex-wrap: wrap;
        gap: 8px;
    }

    .badge-custom {
        padding: 6px 12px;
        font-size: 11px;
    }

    .activity-detail-title h1 {
        font-size: 22px;
    }

    .quick-info-bar {
        justify-content: flex-start;
        gap: 12px;
        padding: 15px 0;
    }

    .info-item {
        font-size: 12px;
    }

    .rating-section {
        padding: 20px;
        border-radius: 15px;
    }

    .rating-summary-box h2 {
        font-size: 42px;
    }

    .review-quotes {
        display: none;
    }

    /* Hide quotes on mobile to save space */
    .inc-exc-section {
        gap: 20px;
    }

    .inc-box,
    .exc-box {
        padding: 20px;
        border-radius: 15px;
    }

    .inc-exc-title {
        font-size: 12px;
    }

    .inc-exc-list li {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .participants-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .booking-footer-content {
        flex-direction: row;
        gap: 10px;
    }

    .footer-price-col h3 {
        font-size: 20px;
    }

    .footer-price-col p {
        font-size: 10px;
    }

    .confirm-booking-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .wishlist-circle {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

/* --- Extremely Small Devices ( < 380px) --- */
@media (max-width: 380px) {
    .activity-home-hero h1 {
        font-size: 28px;
    }

    .footer-cta h2 {
        font-size: 24px;
    }
}
/* Go4Explore Activities - New Stylesheet */
:root {
    --activities-bg: #ffffff;
    --card-bg: #ffffff;
    --text-main: #200f0d;
    --text-muted: #666;
    --accent-blue: #2755b0;
    --accent-orange: #ff6b00;
}

.text-custom-blue {
    color: var(--accent-blue) !important;
}

.bg-custom-blue {
    background-color: var(--accent-blue) !important;
}

.activities-page {
    background-color: var(--activities-bg);
    color: var(--text-main);
    font-family: var(--default-font);
}

/* Hero Section */
.activities-hero {
    padding: 180px 0 60px;
    text-align: center;
    background: linear-gradient(to bottom, rgb(0 0 0 / 30%), #000000), url(/assets/image/banner-image/activity-banner.webp);
    background-size: cover;
    background-position: center;
    color: #fff;
}

.activities-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.activities-hero h1 span {
    color: var(--accent-color-2);
    text-shadow: 0 0 10px rgba(39, 85, 176, 0.5);
    display: block;
}

.activities-hero p {
    color: #ddd;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Search Bar */
.search-container {
    background: #fff;
    backdrop-filter: blur(15px);
    border-radius: 50px;
    display: flex;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 13px;
    border-radius: 50px;
    border: none;
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
    color: #333;
    height: 70px;
    width: 900px;
    position: relative;
    justify-content: space-between;
}

.search-item {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 15px;
    border-right: 1px solid rgb(0 0 0 / 30%);
}

.search-item:nth-child {
    border-right: none !important;
}

.search-item i {
    margin-right: 10px;
    color: #333;
}

.search-item input,
.search-item select {
    background: transparent;
    border: none;
    color: #333;
    width: 100%;
    outline: none;
}

.search-item input::placeholder {
    color: #222222;
}

.search-button {
    background: var(--accent-blue);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
}

/* Stats */
.activities-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding: 10px 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

.stat-item i {
    font-size: 1.1rem;
    color: #ffd700;
    /* Yellow checkmark */
    filter: none;
}

.stat-item .highlight {
    color: #ffd700;
    font-weight: 700;
    margin-right: 6px;
}

.stat-divider {
    width: 1px;
    height: 25px;
    background: rgba(255, 255, 255, 0.4);
}

.stat-item span {
    color: #fff;
    font-size: 0.95rem;
}

/* Category Section */
.category-section {
    padding: 80px 0 20px;
    background: #fff;
    border-bottom: 1px solid #f5f5f5;
}

.categ-div {
    height: 95%;
}

@media (max-width: 767px) {
    .categ-div {
        height: auto;
    }

    .categories {
        margin-bottom: 1.2rem;
    }

    .categ-div {
        margin: 0 0 4px 0;
    }
}

.category-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2755b0;
    margin-bottom: 15px;
    line-height: 1.2;
}

.category-header p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 300px;
}

.category-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 5px 30px;
    scrollbar-width: none;
}

.category-grid::-webkit-scrollbar {
    display: none;
}

.category-card {
    flex: 0 0 170px;
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #eee;
}

.category-card.active {
    border-color: #2755b0;
    box-shadow: 0 10px 25px rgba(39, 85, 176, 0.1);
}

.category-icon-wrapper {
    width: 75px;
    height: 75px;
    background: #fdfa00;
    /* Yellow from image */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.category-icon-wrapper img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.category-card span {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

/* Layout Grid */
.activities-content {
    padding: 60px 0;
}

.sidebar-filters {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    position: sticky;
    top: 125px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    color: #222;
    background: #f1f1f1;
    padding: 10px 20px;
    border-radius: 6px;
}

.filter-group .clear {
    font-size: 0.7rem;
    color: var(--accent-blue);
    cursor: pointer;
    text-transform: none;
}

.other-categories-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-link-item {
    color: #555;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.category-link-item i {
    font-size: 0.65rem;
    color: var(--accent-blue);
    margin-right: 10px;
}

.category-link-item:hover {
    color: var(--accent-blue);
    transform: translateX(5px);
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    cursor: pointer;
    color: #444;
    transition: 0.2s;
}

.checkbox-item:hover {
    color: var(--accent-blue);
}

.checkbox-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: 0.2s;
    background: #fff;
}

.checkbox-item input[type="checkbox"]:checked {
    background-color: #2755b0;
    border-color: #2755b0;
}

.checkbox-item input[type="checkbox"]:checked::after {
    content: '\F26E';
    font-family: "bootstrap-icons";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
}

/* Range Slider Styling */
.custom-range::-webkit-slider-thumb {
    background: #2755b0 !important;
}

.custom-range::-moz-range-thumb {
    background: #2755b0 !important;
}

.custom-range::-ms-thumb {
    background: #2755b0 !important;
}

/* Pagination Styling */
.pagination-container .pagination {
    gap: 8px;
}

.pagination-container .page-link {
    border-radius: 8px !important;
    padding: 10px 18px;
    color: #444;
    border: 1px solid #eee;
    font-weight: 600;
    transition: 0.3s;
    background: #fff;
}

.pagination-container .page-item.active .page-link {
    background-color: #2755b0;
    border-color: #2755b0;
    color: #fff;
    box-shadow: 0 4px 10px rgba(39, 85, 176, 0.3);
}

.pagination-container .page-link:hover:not(.active) {
    background: #f0f4ff;
    color: #2755b0;
    border-color: #2755b0;
}

.pagination-container .page-item.disabled .page-link {
    background: #f9f9f9;
    color: #ccc;
    border-color: #eee;
}

/* No Results State */
.no-results-container {
    padding: 80px 20px;
    background: #fff;
    border-radius: 20px;
    border: 1px dashed #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
}

.no-results-icon {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 20px;
}

.no-results-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.no-results-container p {
    color: #666;
    max-width: 400px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.clear-filters-btn {
    background: var(--accent-blue);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.clear-filters-btn:hover {
    background: #1a3d82;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 85, 176, 0.2);
}

/* Activity Cards */
.activity-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 0px;
    color: var(--contrast-color);
    padding: 8px 14px;
    border-radius: 4px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    font-size: 10px;
    line-height: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 60%);
    background: #ff3532;
    background: linear-gradient(82deg, #ff3532 0, #ff6640 65%, #ff8b4b 100%);
}

.card-body {
    padding: 20px;
}

.card-meta {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
}

.card-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #222;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 15px;
    border-top: 1px solid #f5f5f5;
}

.load-more-btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all .3s ease;
    background-color: var(--contrast-color);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    display: block;
    text-align: center;
    margin: 20px auto 0;
}

.load-more-btn:hover {
    background-color: var(--accent-color);
    color: #fff;

}

.price-box span {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.price-box small {
    color: var(--text-muted);
    font-size: 0.65rem;
}

.book-btn {
    background: var(--accent-blue);
    color: #fff;
    border: none;
    padding: 9px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.wishlist-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: absolute;
    top: 12px;
    right: 12px;
    transition: 0.3s;
}

.wishlist-btn:hover {
    background: #fff;
    color: #ff3131;
}

/* View Toggle */
.view-toggle {
    display: flex;
    gap: 10px;
    background: #f5f5f5;
    padding: 5px;
    border-radius: 30px;
}

.toggle-item {
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #666;
}

.toggle-item.active {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: var(--accent-blue);
    font-weight: 600;
}

/* Horizontal Sections */
.activities-horizontal-sec {
    padding: 80px 0;
    border-top: 1px solid #f5f5f5;
}

.sec-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.sec-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
}

.sec-header a {
    color: var(--accent-blue);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Quick Booking Section */
.quick-booking-sec {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    margin-bottom: 60px;
    padding: 40px;
}

.quick-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.quick-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.quick-icon {
    width: 45px;
    height: 45px;
    background: #f0f4ff;
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
}

.quick-info h6 {
    margin-bottom: 2px;
    font-weight: 700;
    font-size: 0.9rem;
}

.quick-info .price {
    font-size: 0.8rem;
    color: var(--accent-blue);
    font-weight: 600;
}

.mini-card {
    border: 1px solid #eee;
}

/* How to Book Section - Image Flow Redesign */
.how-to-book-section {
    padding: 40px 0;
    background: #ffffff;
    border-top: 1px solid #f2f2f2;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.how-to-book-section h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #222;
    text-align: center;
}

.booking-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 30px;
    gap: 20px;
}

/* The connecting line */
.booking-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    /* Middle of the icon */
    left: 10%;
    right: 10%;
    height: 1px;
    background: #e0e0e0;
    z-index: 0;
}

.booking-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon-wrapper {
    width: 45px;
    height: 45px;
    background: var(--accent-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1rem;
    position: relative;
    box-shadow: 0 0 0 8px #fff;
    /* Gap between icon and line */
}

.booking-step h5 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.booking-step p {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.6;
    max-width: 230px;
    margin: 0 auto;
}
/* ==============================================
   Mobile Filter Drawer - Activities Category
   ============================================== */

/* Prevent horizontal overflow on mobile */
.activities-page {
    /* Removed overflow-x: hidden as it breaks position: sticky */
}

/* --- Floating Filter Button (FAB) --- */
.mobile-filter-fab {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1090;
    display: none;
    /* Hidden by default, shown via d-lg-none */
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--accent-blue, #2755b0);
    color: #fff;
    border: none;
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(39, 85, 176, 0.45);
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-filter-fab i {
    font-size: 22px;
    line-height: 1;
}

/* Hide the text label - icon only */
.mobile-filter-fab>span:not(.filter-badge-count) {
    display: none;
}

.mobile-filter-fab:hover,
.mobile-filter-fab:active {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(39, 85, 176, 0.55);
}

.filter-badge-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ff3b30;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

/* --- Overlay --- */
.mobile-filter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1100;
    pointer-events: none;
    transition: background 0.35s ease;
}

.mobile-filter-overlay.active {
    background: rgba(0, 0, 0, 0.5);
    pointer-events: auto;
    backdrop-filter: blur(2px);
}

/* --- Drawer --- */
.mobile-filter-drawer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1110;
    background: #fff;
    border-radius: 24px 24px 0 0;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.15);
}

.mobile-filter-drawer.open {
    transform: translateY(0);
}

/* Drawer handle bar */
.mobile-filter-drawer::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: #ddd;
    border-radius: 4px;
    margin: 10px auto 0;
    flex-shrink: 0;
}

/* --- Drawer Header --- */
.mobile-filter-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px 12px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.mobile-filter-drawer-header h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #222;
    display: flex;
    align-items: center;
}

.mobile-filter-close {
    background: #f5f5f5;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}

.mobile-filter-close:hover {
    background: #eee;
    color: #222;
}

/* --- Drawer Body --- */
.mobile-filter-drawer-body {
    overflow-y: auto;
    padding: 20px 24px;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

/* Override filter-group styles inside drawer for better spacing */
.mobile-filter-drawer-body .filter-group {
    margin-bottom: 24px;
}

.mobile-filter-drawer-body .filter-group h4 {
    font-size: 0.8rem;
    padding: 10px 16px;
}

.mobile-filter-drawer-body .checkbox-item {
    padding: 4px 0;
    font-size: 0.9rem;
}

.mobile-filter-drawer-body .checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.mobile-filter-drawer-body .custom-range {
    width: 100%;
}

.mobile-filter-drawer-body .other-categories-list {
    gap: 14px;
}

.mobile-filter-drawer-body .category-link-item {
    font-size: 0.9rem;
    padding: 6px 0;
}

/* --- Drawer Footer --- */
.mobile-filter-drawer-footer {
    padding: 16px 24px;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
    background: #fff;
    /* Safe area padding for iPhones with home indicator */
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
}

.mobile-filter-apply-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent-blue, #2755b0);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.mobile-filter-apply-btn:hover,
.mobile-filter-apply-btn:active {
    background: #1a3d82;
    transform: scale(0.98);
}

/* --- Lock body scroll when drawer is open --- */
body.mobile-filter-active {
    overflow: hidden !important;
}

/* =============================================
   Responsive Enhancements
   ============================================= */

/* Show FAB only on screens below lg (992px) */
@media (max-width: 991.98px) {
    .mobile-filter-fab {
        display: flex !important;
    }

    /* Adjust activities content padding */
    .activities-content {
        padding: 30px 0 80px;
    }

    /* Booking steps - stack on tablet */
    .booking-steps {
        flex-wrap: wrap;
        gap: 15px;
    }

    .booking-step {
        flex: 0 0 48%;
    }

    .booking-steps::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .mobile-filter-fab {
        bottom: 75px;
        width: 52px;
        height: 52px;
    }

    .mobile-filter-drawer {
        max-height: 90vh;
    }

    /* Activities content - less bottom padding on mobile, but enough for FAB */
    .activities-content {
        padding: 20px 0 90px;
    }

    /* How to book section - stack vertically */
    .booking-steps {
        flex-direction: column;
        gap: 20px;
    }

    .booking-step {
        flex: 1 1 100%;
    }

    .how-to-book-section {
        padding: 25px 0;
    }

    .how-to-book-section h2 {
        font-size: 1.3rem;
    }

    /* Activity results info */
    .activities-content .col-lg-9>.d-flex {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 380px) {
    .mobile-filter-fab {
        bottom: 65px;
        width: 48px;
        height: 48px;
    }

    .mobile-filter-fab i {
        font-size: 20px;
    }

    .mobile-filter-drawer-body {
        padding: 16px 18px;
    }

    .mobile-filter-apply-btn {
        padding: 14px;
        font-size: 15px;
    }
}