/* ========== Page Related Styles ========== */

.event-highlights {
    padding: 4rem 0;
    background: #f6f6f6;
}

.see-more-link {
    color: var(--main);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
    transition: opacity 0.2s;
}

.see-more-link:hover {
    opacity: 0.75;
    text-decoration: underline;
}

.event-tabs-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 2rem;
}

.event-tabs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 0;
    border-bottom: 2px solid #e0e0e0;
}

.event-tab {
    padding: 10px 24px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
    white-space: nowrap;
}

.event-tab:hover {
    color: var(--main);
}

.event-tab.active {
    color: var(--main);
    border-bottom-color: var(--main);
}

.event-tab-panel {
    display: none;
}

.event-tab-panel.active {
    display: block;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.highlight-item {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s;
}

.highlight-item:hover {
    transform: translateY(-2px);
}

.highlight-content {
    padding: 20px;
}

.highlight-content h4 {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.highlight-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Horizontal scroll layout */
.highlight-scroll-wrapper {
    position: relative;
}

.highlight-scroll-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 8px;
    padding-left: 2px;
    padding-right: 2px;
}

.highlight-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.highlight-scroll-container::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 3px;
}

.highlight-scroll-container::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 3px;
}

.highlight-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #666;
}

.highlight-item {
    width: 320px;
    flex-shrink: 0;
    margin-bottom: 0;
}

.no-highlights {
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    color: #888;
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition:
        background 0.2s,
        opacity 0.2s;
}

.scroll-arrow:hover {
    background: #fff;
}

.scroll-arrow.scroll-left {
    left: 8px;
}

.scroll-arrow.scroll-right {
    right: 8px;
}

.scroll-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}

.partnersSwiper {
    padding: 20px 0;
}

.partners-slide {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 125px;
    background: #fff;
    border-radius: 6px;
    padding: 12px;
    transition: box-shadow 0.2s;
}

.partner-logo-wrapper:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.partner-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.2s;
}

.partner-logo-wrapper img:hover {
    opacity: 0.85;
}

.partnersSwiper .swiper-button-prev,
.partnersSwiper .swiper-button-next {
    color: #333;
    transform: scale(0.7);
}

@media (min-width: 992px) {
    .highlight-item {
        width: 420px;
    }
}

@media (max-width: 576px) {
    .highlight-item {
        width: 280px;
    }

    .scroll-arrow {
        width: 34px;
        height: 34px;
    }

    .scroll-arrow.scroll-left {
        left: 4px;
    }

    .scroll-arrow.scroll-right {
        right: 4px;
    }
}

/* ========== Testimonials Section ========== */

.testimony-row {
    display: flex;
    justify-content: center;
}

.testimony-video-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.testimony-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.testimonial-card {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    height: 350px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--main, #ff9900);
    margin: 0;
    align-self: "center";
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.testimonial-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    text-align: justify;
    overflow-y: auto;
}

.testimonial-author {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-person-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark, #222);
}

.testimonial-company {
    font-size: 0.8rem;
    color: #888;
}

.testimonials-section {
    padding: 4rem 0;
    background: #fafafa;
}

.testimonials-section .swiper-slide {
    height: auto;
}

.testimonials-section .swiper-pagination-bullet-active {
    background: var(--main, #007bff);
}

.testimonials-section .swiper-button-next,
.testimonials-section .swiper-button-prev {
    color: var(--main, #333);
    transform: scale(0.7);
}
