/* ========================================
   COMMON STYLES FOR ALL SECONDARY PAGES
   Shared components: page heroes, testimonials
   ======================================== */

/* Page Hero Sections */
.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
    padding: 120px 0 80px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--light-text);
    margin: 16px 0;
    line-height: 1.2;
}

.page-description {
    font-size: 18px;
    color: var(--gray-text);
    margin: 16px 0 0 0;
}

/* Hero Action Buttons */
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-actions .btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-actions .btn-large svg {
    flex-shrink: 0;
}

.hero-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.hero-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--light-text);
}

.hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--darker-bg);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.3);
    border-color: var(--primary-orange);
}

.testimonial-reverse {
    flex-direction: row-reverse;
}

.testimonial-image {
    flex-shrink: 0;
}

.testimonial-content {
    flex: 1;
}

.author-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-orange);
    background: rgba(255, 107, 53, 0.1);
}

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

.testimonial-quote {
    font-size: 60px;
    font-weight: 700;
    color: rgba(255, 107, 53, 0.2);
    line-height: 0.5;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 20px 0;
    font-style: italic;
}

.testimonial-author {
    margin-top: 20px;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 4px;
}

.author-company {
    font-size: 14px;
    color: var(--gray-text);
}

/* CTA Simple Section */
.cta-simple {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-top: 2px solid rgba(255, 107, 53, 0.3);
}

.cta-simple-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-simple-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--light-text);
    margin-bottom: 16px;
}

.cta-simple-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }

    .page-description {
        font-size: 16px;
    }

    .testimonial-card {
        flex-direction: column;
        gap: 24px;
        padding: 32px 24px;
    }

    .testimonial-image {
        text-align: center;
    }

    .author-avatar {
        width: 100px;
        height: 100px;
    }

    .testimonial-quote {
        font-size: 50px;
    }

    .author-info {
        text-align: center;
    }

    .cta-simple-content h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .btn-large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 80px 0 60px;
    }

    .page-title {
        font-size: 28px;
    }

    .hero-actions .btn-large {
        font-size: 15px;
        padding: 14px 24px;
    }

    .testimonial-card {
        padding: 24px 16px;
    }

    .author-avatar {
        width: 80px;
        height: 80px;
    }

    .testimonial-quote {
        font-size: 40px;
    }

    .testimonial-text {
        font-size: 15px;
    }
}
