/* HSJ Experiences Styles */
.experiences-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.experiences-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(16, 185, 129, 0.6));
}

.hero-content { 
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Featured Experiences */
.featured-experiences {
    padding: 4rem 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.featured-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

/* Video Thumbnail */
.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Review Header */
.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem; 
}

.customer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.customer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: #2563eb;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
}

.rating {
    color: #fbbf24;
    font-size: 1.125rem;
}

/* Card Content */
.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
    line-height: 1.4;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.customer-info .name {
    font-weight: 600;
    color: #1f2937;
}

.customer-info .location {
    color: #6b7280;
    font-size: 0.875rem;
}


.excerpt {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.trip-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.trip-info i {
    color: #2563eb;
}

/* Featured Badge */

/* Navigation Tabs */
.experiences-nav {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-tab:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.05);
}

.nav-tab.active {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
    font-weight: 600;
}

/* Experiences Grid */
.experiences-grid {
    padding: 4rem 0;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.experience-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.experience-card .card-content {
    padding: 1.25rem;
}

.experience-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.review-text {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.trip-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem; 
}

.trip-date i {
    color: #2563eb;
}

/* Load More */
.load-more-section {
    text-align: center;
}

.load-more-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.load-more-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* CTA Section */
.experiences-cta {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #2563eb;
    color: white;
    border: 2px solid #2563eb;
}

.btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1f2937;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 2rem;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.video-container {
    position: relative;
    aspect-ratio: 16/9;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

/* No Experiences */
.no-experiences {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
}

.no-experiences i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.no-experiences h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #374151;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .featured-grid,
    .grid-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .nav-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-tab {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .video-modal {
        padding: 1rem;
    }
    
    .modal-content {
        max-height: 95vh;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .experiences-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .featured-card,
    .experience-card {
        margin: 0 0.5rem;
    }
}

/* HSJ Reviews Page Styles */
.reviews-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

/* Reviews Hero Section */
.reviews-hero {
      background:var( --hsj-theme-primary, #0b66b8);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.reviews-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color:white;
    text-shadow: 0 2px 4px rgba(221, 182, 8, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Reviews Statistics */
.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    color: #fbbf24;
    font-size: 1.125rem;
}

/* Featured Reviews Section */
.featured-reviews {
    padding: 4rem 0;
    background: white;
}

.featured-reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
}

.featured-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-review-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    position: relative;
    transition: all 0.3s ease;
}

.featured-review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.reviews-filter {
    margin-left: 15px;
}
.featured-review-card .review-header {
    display: flow;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #e5e7eb;
}

.customer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var( --hsj-theme-primary, #0b66b8), #764ba2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.customer-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.customer-details .location {
    color: #6b7280;
    font-size: 0.875rem;
}

.rating {
    color: #fbbf24;
    font-size: 1.25rem;
    display: flex;
    gap: 0.125rem;
}

.review-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.review-content p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.trip-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.trip-info i {
    color: var( --hsj-theme-primary, #0b66b8);
    font-size: 1rem;
}

/* .trip-date {
    margin-left: 0.5rem;
    opacity: 0.8;
} */

.featured-badge {
    position: absolute;
    top: -8px;
    right: 1rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

/* All Reviews Section */
.all-reviews {
    padding: 4rem 0;
    background: #f8fafc;
}

.section-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
}

.reviews-filter {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-filter {
    padding: 0.5rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rating-filter:focus {
    outline: none;
    border-color: var( --hsj-theme-primary, #0b66b8);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Reviews List */
.reviews-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-item {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.review-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.review-main .review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.review-main .customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-main .customer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.review-main .customer-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.review-main .customer-details .location {
    color: #6b7280;
    font-size: 0.8125rem;
}

.review-date {
    color: #9ca3af;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.review-main .rating {
    color: #fbbf24;
    font-size: 1.125rem;
    display: flex;
    gap: 0.125rem;
}

.review-main .review-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.review-text p {
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

.review-main .trip-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.review-main .trip-info i {
    color: var( --hsj-theme-primary, #0b66b8);
}

.separator {
    margin: 0 0.5rem;
    opacity: 0.5;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: #f3f4f6;
    color: #6b7280;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: lowercase;
}

.featured-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #fbbf24;
    font-size: 1.25rem;
}

/* Read More Button */
.read-more-btn {
    background: none;
    border: none;
    color: var( --hsj-theme-primary, #0b66b8);
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.read-more-btn:hover {
    color: #5a67d8;
    text-decoration: underline;
}

/* No Reviews State */
.no-reviews {
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
}

.no-reviews i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.no-reviews h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #374151;
}

/* Write Review CTA */
.write-review-cta {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var( --hsj-theme-primary, #0b66b8);
    color: white;
    border-color: var( --hsj-theme-primary, #0b66b8);
}

.btn-primary:hover {
    background: #5a67d8;
    border-color: #5a67d8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination a,
.pagination span {
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination a:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #374151;
}

.pagination .active span {
    background: var( --hsj-theme-primary, #0b66b8);
    border-color: var( --hsj-theme-primary, #0b66b8);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews-hero {
        padding: 3rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .reviews-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .featured-reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .featured-review-card {
        padding: 1.5rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .reviews-filter {
        width: 100%;
        justify-content: flex-end;
    }
    
    .review-item {
        padding: 1.5rem;
    }
    
    .review-main .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .review-main .customer-info {
        width: 100%;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .reviews-hero {
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .reviews-stats {
        grid-template-columns: 1fr;
    }
    
    .featured-review-card,
    .review-item {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .customer-avatar {
        width: 40px !important;
        height: 40px !important;
    }
    
    .avatar-placeholder {
        font-size: 1.125rem !important;
    }
    
    .review-content h3 {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Print Styles */
@media print {
    .reviews-hero,
    .write-review-cta,
    .reviews-filter,
    .pagination-wrapper {
        display: none;
    }
    
    .review-item {
        box-shadow: none;
        border: 1px solid #e5e7eb;
        break-inside: avoid;
        margin-bottom: 1rem;
    }
    
    .featured-reviews,
    .all-reviews {
        padding: 1rem 0;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .reviews-page {
        background-color: #111827;
        color: #f9fafb;
    }
    
    .featured-reviews,
    .all-reviews {
        background:#d8d9db;
    }
    
   
     
    .section-header h2, .review-content h3, .customer-details h4 {
        color: var( --hsj-theme-primary, #0b66b8);
    }
 
    .rating-filter {
        background: #374151;
        border-color: #4b5563;
        color: #f9fafb;
    }
}

/* HSJ Videos Page Styles */
.videos-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

/* Videos Hero Section */
.videos-hero {
    background: var( --hsj-theme-primary, #0b66b8);
    color: white;
    padding: 4rem 0;
    text-align: center; 
    overflow: hidden;
}
 

.videos-hero .container { 
    margin: 0 auto;
    padding: 0 1rem; 
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Featured Video Section */
.featured-video {
    padding: 4rem 0;
    background: white;
}

.featured-video h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
}

.featured-video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.video-player {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.video-player:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.video-player img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-player:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    font-size: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.video-player:hover .play-button {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.video-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.video-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.video-info .customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.customer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #e5e7eb;
}

.customer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var( --hsj-theme-primary, #0b66b8), #764ba2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.customer-details h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

 

.video-description {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.trip-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.trip-info i {
    color: var( --hsj-theme-primary, #0b66b8);
    font-size: 1rem;
}

.trip-date {
    margin-left: 0.5rem;
    opacity: 0.8;
}

/* Videos Grid Section */
.videos-grid {
    padding: 4rem 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.videos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

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

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.video-thumbnail .play-button {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.video-thumbnail .video-duration {
    bottom: 0.75rem;
    right: 0.75rem;
    padding: 0.375rem 0.625rem;
    font-size: 0.8125rem;
}



.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.video-info .customer-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.video-info .customer-avatar {
    width: 40px;
    height: 40px;
    border: 2px solid #e5e7eb;
}

.video-info .customer-details h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.125rem;
}

.video-info .customer-details .location {
    color: #6b7280;
    font-size: 0.75rem;
}

.video-info .video-description {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.video-info .trip-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.8125rem;
    margin-bottom: 1rem;
}

.video-info .trip-info i {
    color: var( --hsj-theme-primary, #0b66b8);
    font-size: 0.875rem;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.upload-date {
    color: #9ca3af;
    font-size: 0.75rem;
}

.video-tags {
    display: flex;
    gap: 0.375rem;
}

.video-tags .tag {
    background: #f3f4f6;
    color: #6b7280;
    padding: 0.1875rem 0.5rem;
    border-radius: 8px;
    font-size: 0.6875rem;
    font-weight: 500;
}

/* No Videos State */
.no-videos {
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
    grid-column: 1 / -1;
}

.no-videos i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.no-videos h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #374151;
}

/* Share Your Story CTA */
.share-story-cta {
    background: #0967b8;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
      color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var( --hsj-theme-primary, #0b66b8);
    color: white;
     border-color: white; 
}

.btn-primary:hover {
    background: var( --hsj-theme-primary, #0b66b8);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #1f2937;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 2rem;
    backdrop-filter: blur(4px);
}

.video-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.video-modal .modal-content {
    position: relative;
    background: #1f2937;
    border-radius: 16px;
    overflow: hidden;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-modal .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.video-modal .modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.video-modal .video-container {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
}

.video-modal .video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal .video-details {
    padding: 1.5rem;
    background: #1f2937;
    color: white;
}

.video-modal .video-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.video-modal .video-customer {
    color: #d1d5db;
    font-size: 0.875rem;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination a,
.pagination span {
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination a:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #374151;
}

.pagination .active span {
    background: var( --hsj-theme-primary, #0b66b8);
    border-color: var( --hsj-theme-primary, #0b66b8);
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-video-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .videos-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .videos-hero {
        padding: 3rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .featured-video h2,
    .section-header h2 {
        font-size: 2rem;
    }
    
    .video-info h3 {
        font-size: 1.5rem;
    }
    
    .videos-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-card {
        border-radius: 12px;
    }
    
    .video-info {
        padding: 1.25rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .video-modal {
        padding: 1rem;
    }
    
    .video-modal .modal-content {
        max-height: 95vh;
    }
}

@media (max-width: 480px) {
    .videos-hero {
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .featured-video,
    .videos-grid {
        padding: 3rem 0;
    }
    
    .video-info h3 {
        font-size: 1rem;
    }
    
    .customer-avatar {
        width: 50px !important;
        height: 50px !important;
    }
    
    .video-info .customer-avatar {
        width: 35px !important;
        height: 35px !important;
    }
    
    .avatar-placeholder {
        font-size: 1.125rem !important;
    }
    
    .play-button {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.25rem !important;
    }
    
    .video-thumbnail .play-button {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.125rem !important;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .video-modal .modal-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 35px;
        height: 35px;
    }
}

/* Print Styles */
@media print {
    .videos-hero,
    .share-story-cta,
    .pagination-wrapper,
    .play-button,
    .video-duration {
        display: none;
    }
    
    .video-card {
        box-shadow: none;
        border: 1px solid #e5e7eb;
        break-inside: avoid;
        margin-bottom: 1rem;
    }
    
    .featured-video,
    .videos-grid {
        padding: 1rem 0;
    }
    
    .video-thumbnail::after {
        content: 'Video: ' attr(data-youtube-id);
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 0.5rem;
        font-size: 0.75rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .videos-page {
        background-color: #111827;
        color: #f9fafb;
    }
    
    .featured-video,
    .videos-grid {
        background: #dcdfe4;
    }
    
    .video-card {
        background: #374151;
        border-color: #4b5563;
    }
    
    .section-header h2,
    .video-info h3,
    .customer-details h4 {
        /* color: #f9fafb; */
    }
    
    .video-meta {
        border-top-color: #4b5563;
    }
    
    .video-tags .tag {
        background: #4b5563;
        color: #d1d5db;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .video-player,
    .video-card,
    .play-button,
    .btn {
        transition: none;
    }
    
    .video-player:hover,
    .video-card:hover {
        transform: none;
    }
    
    .video-player:hover img,
    .video-card:hover .video-thumbnail img {
        transform: none;
    }
}

/* Focus States for Accessibility */
.video-player:focus,
.video-card:focus {
    outline: 2px solid var( --hsj-theme-primary, #0b66b8);
    outline-offset: 2px;
}

.play-button:focus {
    outline: 2px solid var( --hsj-theme-primary, #0b66b8);
    outline-offset: 4px;
}