.stats-section {
    padding: 35px 0;
    background: #111;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-box {
    text-align: center;
}

.stat-box strong {
    display: block;
    font-size: 31px;
    font-weight: 800;
}

.stat-box span {
    color: #c9c9c9;
    font-size: 13px;
}

.section-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.view-all-btn {
    border: 1px solid #d8d8d8;
    font-size: 12px;
    font-weight: 700;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    margin-top: 25px;
    overflow-x: auto;
}

.filter-tabs button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 999px;
    background: #fff;
    color: #333;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
}

.filter-tabs button.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.community-section {
    background: #111;
    color: #fff;
}

.community-grid,
.more-travel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.community-image img,
.more-travel-image img {
    width: 100%;
    border-radius: 18px;
}

.community-content h2,
.more-travel-content h2 {
    margin-bottom: 18px;
    font-size: clamp(31px, 5vw, 52px);
    line-height: 1.08;
}

.community-content p,
.more-travel-content p {
    max-width: 580px;
    margin-bottom: 25px;
    color: #bcbcbc;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 35px;
}

.community-stats strong {
    display: block;
    font-size: 23px;
}

.community-stats span {
    color: #aaa;
    font-size: 11px;
}

.award-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 40px;
}

.award-box {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: #fff;
}

.award-box img {
    max-height: 100px;
    object-fit: contain;
}

.more-travel-section {
    background: #f7f7f7;
}

.faq-container {
    max-width: 900px;
}

.faq-list {
    margin-top: 35px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 20px 0;

    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;

    font-size: 15px;
    font-weight: 700;
}

.faq-answer {
    display: none;
    padding: 0 0 20px;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--muted);
    font-size: 14px;
}

.newsletter-section {
    padding: 55px 0;
    background: #111;
    color: #fff;
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.newsletter-inner h2 {
    margin: 0;
    font-size: 38px;
}

.newsletter-inner p {
    margin-top: 8px;
    color: #aaa;
}

.newsletter-form {
    width: min(100%, 450px);
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    min-width: 0;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #444;
    border-radius: 999px;
    background: #fff;
    outline: 0;
}

.newsletter-form button {
    height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 1000px) {

    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .custom-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .award-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {

    .section-space {
        padding: 55px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid,
    .blog-grid,
    .community-grid,
    .more-travel-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .package-grid,
    .custom-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .community-stats {
        grid-template-columns: 1fr;
    }

    .newsletter-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .section-top {
        align-items: flex-start;
    }
}