/* ===================================
   TESTIMONIALS SECTION
   =================================== */

/* Centered Section Header */
.section-header-center {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.section-header-center .section-title {
    font-size: clamp(48px, 6vw, 64px);
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 32px;
    line-height: 1.1;
}

.section-header-center .section-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 600px;
}

/* Testimonials Text Section - LEFT SIDE */
.testimonials-text {
    padding: 40px;
}





.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-item {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quote-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6B46C1, #8B5CF6);
    border-radius: 50%;
    align-self: flex-start;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #374151;
    margin: 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-author strong {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #64748b;
}

/* Mobile Mockup - RIGHT SIDE */
.mobile-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 35px;
    padding: 8px;
    position: relative;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 12px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.phone-speaker {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: #444;
    border-radius: 2px;
}

.phone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 134px;
    height: 5px;
    background: #333;
    border-radius: 3px;
}

/* Reel Video Container */
.reel-video-container {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(45deg, #6B46C1, #8B5CF6, #A855F7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(
        45deg,
        rgba(107, 70, 193, 0.9),
        rgba(139, 92, 246, 0.9)
    );
    background-size: cover;
    background-position: center;
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.reel-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    animation: pulse 2s infinite;
}

.reel-play-btn:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Reel Interface Elements */
.reel-interface {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 15px;
    color: white;
}

.reel-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reel-label {
    font-size: 16px;
    font-weight: 600;
}

.reel-camera {
    font-size: 20px;
}

.reel-bottom-info {
    margin-bottom: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
}

.username {
    font-size: 14px;
    font-weight: 500;
}

.follow-btn {
    font-size: 12px;
    padding: 4px 12px;
    border: 1px solid white;
    border-radius: 15px;
    margin-left: auto;
}

.reel-caption {
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

.reel-actions {
    position: absolute;
    right: 15px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.action-icon {
    font-size: 24px;
}

.action-item span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
}

/* Side Social Icons */
.side-social-icons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15%;
    right: 15%;
    z-index: 10;
    pointer-events: none;
}

.side-icon {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    padding: 12px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0);
    pointer-events: all;
    text-decoration: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    top: 25%;
    z-index: 15;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.side-icon:hover {
    transform: scale(1.1);
    text-decoration: none;
}

.instagram-icon {
    left: 10px;
    animation-delay: 0.1s;
}

.linkedin-icon {
    right: 10px;
    animation-delay: 0.2s;
}

/* Animation for appearing over phone screen */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px) scale(0);
    }
    60% {
        opacity: 1;
        transform: translateX(10px) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px) scale(0);
    }
    60% {
        opacity: 1;
        transform: translateX(-10px) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

/* Active animations */
.side-icon.animate-left {
    animation: slideInFromLeft 0.6s ease-out forwards;
}

.side-icon.animate-right {
    animation: slideInFromRight 0.6s ease-out forwards;
}

.side-icon.fade-out {
    animation: fadeOut 0.4s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-header-center {
        padding: 40px 20px;
        margin-bottom: 30px;
    }
    
    .section-header-center .section-title {
        font-size: clamp(32px, 8vw, 48px);
    }
    
    .section-header-center .section-subtitle {
        font-size: 1rem;
    }
    
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .mobile-mockup {
        order: 1;
        justify-self: center;
    }
    
    .testimonials-text {
        order: 2;
        padding: 20px;
    }
    
    .phone-frame {
        width: 220px;
        height: 450px;
    }
    
    .testimonial-item {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
    
    .modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .social-options {
        gap: 15px;
    }
    
    .social-option {
        padding: 15px;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .section-header-center {
        padding: 30px 15px;
        margin-bottom: 20px;
    }
    
    .section-header-center .section-title {
        font-size: clamp(28px, 7vw, 36px);
    }
    
    .section-header-center .section-subtitle {
        font-size: 0.9rem;
    }
    
    .phone-frame {
        width: 200px;
        height: 410px;
    }
    
    .testimonials-text {
        padding: 15px;
    }
    
    .testimonial-item {
        padding: 15px;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
    }
    
    /* Side Icons Mobile Styles */
    .side-icon {
        padding: 6px;
    }
    
    .side-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .instagram-icon {
        left: 15px;
    }
    
    .linkedin-icon {
        right: 15px;
    }
}