/* 
 * Fix My SEO Page Specific Styles
 */

.fix-my-seo .hero-section {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.fix-my-seo h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.fix-my-seo .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
    gap: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-box {
    background-color: #163680;
    border-radius: 8px;
    padding: 30px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    color: white;
}

.stat-box.highlight {
    background-color: #0e9c65;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.9);
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-cta {
    margin-top: 40px;
}

.hero-cta .btn {
    margin: 0 10px;
}

/* Problem Grid */
.problem-section {
    background-color: #f8f9fc;
    padding: 80px 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.problem-item {
    background: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    font-size: 2.5rem;
    color: #4e73df;
    margin-bottom: 20px;
}

.problem-item h3 {
    color: #2e59d9;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background-color: white;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.framework-item {
    background: #f8f9fc;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.framework-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.framework-icon {
    font-size: 2.5rem;
    color: #4e73df;
    margin-bottom: 20px;
}

.framework-item h4 {
    color: #2e59d9;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Case Studies */
.case-studies-section {
    background-color: #f8f9fc;
    padding: 80px 0;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.case-study {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.case-study:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.case-study-header {
    background: #2e59d9;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-study-header h4 {
    margin: 0;
    font-size: 1.2rem;
}

.industry-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.case-study-content {
    padding: 20px;
}

.case-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.case-stat {
    text-align: center;
    flex: 1;
}

.stat-figure {
    color: #2e59d9;
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.case-stat .stat-label {
    color: #5a5c69;
    font-size: 0.9rem;
    font-weight: 400;
}

.case-studies-cta {
    text-align: center;
    margin-top: 30px;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: white;
}

.process-steps {
    margin: 50px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    background: #4e73df;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #2e59d9;
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fc;
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e3e6f0;
    border-radius: 8px;
    background: white;
    overflow: hidden;
}

.faq-question {
    margin: 0;
    padding: 20px;
    cursor: pointer;
    position: relative;
    font-size: 1.2rem;
    color: #2e59d9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer div {
    padding: 0 20px 20px;
    color: #5a5c69;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-buttons {
    margin-top: 30px;
}

.cta-buttons .btn {
    margin: 0 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-stats {
        gap: 15px;
    }
    
    .fix-my-seo h1 {
        font-size: 2.5rem;
    }
    
    .fix-my-seo .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .case-studies-grid,
    .framework-grid,
    .problem-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-stats,
    .case-stats {
        flex-direction: column;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
    
    .hero-cta .btn,
    .cta-buttons .btn {
        display: block;
        margin: 10px auto;
        max-width: 250px;
    }
    
    .fix-my-seo h1 {
        font-size: 2rem;
    }
}
