/* testimonials.css - Lala Builders and Decor - Testimonials Page Styles */

/* ============================================
   PAGE HERO SECTION
   ============================================ */

.page-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 140px 0 70px;
    text-align: center;
    margin-top: 0;
    width: 100%;
    overflow-x: hidden;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
    background: var(--black);
    padding: 50px 0;
    border-bottom: 1px solid rgba(200,169,81,0.2);
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   FEATURED TESTIMONIALS
   ============================================ */

.featured-section {
    background: var(--white);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.featured-card {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(200,169,81,0.1);
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200,169,81,0.3);
}

.quote-icon {
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 15px;
}

.featured-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 20px;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.client-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
}

.client-details h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.client-details span {
    font-size: 0.75rem;
    color: var(--gold);
}

.star-rating {
    margin-top: 8px;
}

.star-rating i {
    color: var(--gold);
    font-size: 0.75rem;
    margin-right: 2px;
}

/* ============================================
   TESTIMONIALS GRID
   ============================================ */

.all-testimonials-section {
    background: var(--off-white);
}

.testimonial-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.service-tag {
    background: rgba(200,169,81,0.15);
    color: var(--gold);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
}

.testimonial-text {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.client-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.client-location {
    font-size: 0.7rem;
    color: var(--gray);
}

/* ============================================
   LOAD MORE BUTTON
   ============================================ */

.load-more-container {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 32px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.load-more-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

/* ============================================
   VIDEO TESTIMONIALS
   ============================================ */

.video-section {
    background: var(--white);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.video-card {
    background: var(--off-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.video-thumbnail {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(200,169,81,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-icon i {
    font-size: 1.2rem;
    color: var(--black);
    margin-left: 3px;
}

.video-card:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 20px;
    text-align: center;
}

.video-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.video-info p {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ============================================
   REVIEW CTA SECTION
   ============================================ */

.review-cta {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 20px;
}

.review-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200,169,81,0.3);
    border-radius: 48px;
    padding: 50px 40px;
    text-align: center;
    color: white;
}

.review-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.review-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.review-card p {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.review-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 992px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 110px 0 50px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 6px 16px;
        font-size: 0.75rem;
    }
    
    .review-card {
        padding: 40px 25px;
    }
    
    .review-card h3 {
        font-size: 1.5rem;
    }
    
    .review-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 100px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 1.6rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .featured-card {
        padding: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .review-card {
        padding: 30px 20px;
    }
    
    .review-card h3 {
        font-size: 1.3rem;
    }
}


/* Add these styles to your testimonials.css */

/* ============================================
   CLIENT AVATAR WITH IMAGE
   ============================================ */

.client-avatar-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    flex-shrink: 0;
}

.client-avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info-compact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.client-avatar-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   TESTIMONIAL GALLERY
   ============================================ */

.testimonial-gallery {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 70px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 0 0 2px var(--gold);
}

.gallery-more {
    width: 70px;
    height: 60px;
    background: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--black);
}

.testimonial-gallery-small {
    display: flex;
    gap: 6px;
    margin: 12px 0;
    flex-wrap: wrap;
}

.gallery-thumb-small {
    width: 65px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-thumb-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb-small:hover {
    transform: scale(1.05);
    box-shadow: 0 0 0 2px var(--gold);
}

/* ============================================
   WATCH VIDEO BUTTONS
   ============================================ */

.watch-video-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    width: 100%;
    justify-content: center;
}

.watch-video-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.review-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.view-photos-btn,
.watch-video-small {
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 0;
}

.view-photos-btn:hover,
.watch-video-small:hover {
    color: var(--gold-dark);
    transform: translateX(2px);
}

/* ============================================
   VIDEO MODAL
   ============================================ */

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    max-width: 800px;
    width: 90%;
    text-align: center;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 35px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.video-modal-close:hover {
    color: var(--gold);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-modal-content h3 {
    color: white;
    margin-top: 20px;
    font-size: 1.2rem;
}

/* Lightbox Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    width: 100%;
}

.lightbox-content {
    text-align: center;
}

#lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 15px;
}

.lightbox-caption h3 {
    color: var(--gold);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 35px;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}

.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    color: var(--black);
}

.lightbox-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.lightbox-thumbnail {
    width: 80px;
    height: 60px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.lightbox-thumbnail.active,
.lightbox-thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 0 0 2px var(--gold);
}

.lightbox-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }
    .lightbox-thumbnail {
        width: 60px;
        height: 45px;
    }
}