/* Modern Professional Styles for Pages */

/* Page Hero - Professional */
.page-hero {
    background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 50%, #3B82F6 100%);
    color: white;
    padding: 140px 0 100px;
    text-align: center;
    margin-top: 70px;
    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, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: white;
}

.page-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    opacity: 0.95;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

/* Content Sections - Professional */
.about-content-section,
.features-detailed,
.contact-page-section,
.faq-section,
.blog-section {
    padding: 6rem 0;
    background: var(--background-light);
}

.content-main {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.content-block h2 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

/* Values Grid - Professional */
.values-grid {
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Stats Grid - Professional */
.stats-grid {
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-md);
}

.stat-card .stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    opacity: 0.95;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

/* Sidebar - Professional */
.sidebar-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.sidebar-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.sidebar-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 15px;
}

/* Feature Items - Professional */
.feature-item-detailed {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.feature-item-detailed:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.feature-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.feature-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.feature-benefits li {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

.feature-benefits li::before {
    color: var(--accent-color);
}

/* Contact Form - Professional */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.form-group label {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    font-size: 15px;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    outline: none;
}

/* FAQ - Professional */
.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.faq-question {
    padding: 1.75rem;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 1.75rem 1.75rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

/* Blog - Professional */
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.blog-content {
    padding: 2.5rem;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
}

/* CTA Sections - Professional */
.cta-section,
.faq-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 4rem 3rem;
    border-radius: 12px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.cta-section h2,
.faq-cta h2 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 1rem;
}

.cta-section p,
.faq-cta p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

/* Contact Methods - Professional */
.contact-method {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-method:last-child {
    border-bottom: none;
}

.method-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.method-content p {
    color: var(--text-secondary);
    font-size: 15px;
    margin: 0.25rem 0;
}

.social-btn {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
}

.social-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Category Buttons - Professional */
.faq-category-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
}

.faq-category-btn:hover,
.faq-category-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 80px;
    }
    
    .content-main,
    .sidebar-card,
    .contact-form {
        padding: 2rem;
    }
    
    .feature-item-detailed {
        padding: 2rem;
        flex-direction: column;
    }
}

