/* style3.css - Testimonials Page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6c63ff;
    --primary-dark: #5a52d5;
    --secondary-color: #ff6584;
    --text-color: #2d3748;
    --light-text: #718096;
    --background: #f7fafc;
    --card-bg: #ffffff;
    --gradient: linear-gradient(135deg, #bebec7 0%, #0c0c0c 100%);
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    line-height: 1.7;
    min-height: 100vh;
}

/* Back Navigation */
.back-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 0;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--card-bg);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.back-btn:hover {
    transform: translateX(-5px);
    background: var(--primary-color);
    color: white;
}

/* Testimony Section */
.testimony-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.3rem;
    color: var(--light-text);
}

/* Testimony Container */
.testimony-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.testimony-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimony-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    right: 30px;
    font-family: serif;
}

.testimony-text {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.client-info h3 {
    font-family: 'Syne Mono', monospace;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.client-info span {
    color: var(--light-text);
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: var(--card-bg);
    padding: 60px 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    margin-top: 40px;
}

.cta-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-btn.primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.cta-btn.secondary {
    background: var(--card-bg);
    color: var(--primary-color);
    box-shadow: var(--shadow);
    border: 2px solid var(--primary-color);
}

.cta-btn.secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: var(--primary-color);
    color: white;
}

/* Media Queries */
@media (max-width: 768px) {
    .section-header h1 {
        font-size: 2.5rem;
    }
    
    .testimony-container {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Animation */
.testimony-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimony-card:nth-child(1) { animation-delay: 0.1s; }
.testimony-card:nth-child(2) { animation-delay: 0.2s; }
.testimony-card:nth-child(3) { animation-delay: 0.3s; }
.testimony-card:nth-child(4) { animation-delay: 0.4s; }