/* ========== SEO Services Page Styles ========== */

/* Common page section spacing */
/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    text-align: center;
}

.hero-head {
    max-width: 760px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #2e2d2d;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-sub {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Problem Section - Now styled in components.css for consistency across all services pages */

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background: #ffffff;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.solution-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: #bfdbfe;
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.solution-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.solution-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Case Study Section */
.case-study-section {
    padding: 100px 0;
    background: #f8fafc;
}

.case-study-card {
    background: white;
    border-radius: 32px;
    padding: 48px;
    border: 1px solid #e2e8f0;
}

.case-study-header {
    text-align: center;
    margin-bottom: 40px;
}

.case-study-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #166534;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.case-study-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.client-avatar {
    font-size: 3rem;
}

.client-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.client-info p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.client-challenge h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.client-challenge p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.result-item {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
}

.result-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    line-height: 1.2;
}

.result-label {
    font-size: 0.9rem;
    color: #1e40af;
    margin-top: 8px;
    font-weight: 500;
}

/* Growth Graph */
.growth-graph {
    background: #f8fafc;
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 40px;
}

.growth-graph h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
    text-align: center;
}

.graph-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
    height: 200px;
    padding: 20px 0;
}

.graph-bar {
    width: 60px;
    background: linear-gradient(180deg, #cbd5e1 0%, #e2e8f0 100%);
    border-radius: 8px 8px 0 0;
    height: var(--height);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 8px;
}

.graph-bar.active {
    background: linear-gradient(180deg, #2563eb 0%, #7c3aed 100%);
}

.bar-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
}

.bar-label {
    position: absolute;
    bottom: -28px;
    font-size: 0.75rem;
    color: #64748b;
    white-space: nowrap;
}

/* Client Testimonial */
.client-testimonial {
    background: linear-gradient(135deg, #eff6ff, #f0f9ff);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    border: 1px solid #bfdbfe;
}

.client-testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: #334155;
    line-height: 1.7;
    margin: 0 0 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.testimonial-author strong {
    font-size: 1rem;
    color: #0f172a;
}

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

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #ffffff;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 32px 24px;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #eff6ff;
    -webkit-text-stroke: 2px #2563eb;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Project Types Section - For Development Page */
.get-started-section {
    padding: 100px 0;
    background: #ffffff;
}

.get-started-section .section-header {
    text-align: center;
}

.project-types {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1000px;
    margin: 40px auto 0;
    justify-content: center;
    align-items: stretch;
}

.project-types .project-card {
    flex: 1 1 260px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.project-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: #bfdbfe;
}

.project-type-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.project-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px;
}

.project-card p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0 0 24px;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: #f8fafc;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.pricing-card.featured {
    border: 2px solid #2563eb;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px;
}

.pricing-header .price {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 8px;
}

.pricing-header .price span {
    font-size: 1rem;
    font-weight: 400;
    color: #64748b;
}

.pricing-header > p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0 0 24px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    color: #334155;
    font-size: 0.95rem;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-card .btn-primary {
    width: 100%;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #ffffff;
}

.cta-box {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 32px;
    padding: 64px;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 1.125rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
}

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

.cta-buttons .btn-primary {
    background: white;
    color: #2563eb;
}

.cta-buttons .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
    color: white;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .problem-card {
        padding: 32px 24px;
    }

    .problem-stats {
        gap: 24px;
    }

    .case-study-content {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr 1fr;
    }

    .graph-container {
        height: 150px;
    }

    .graph-bar {
        width: 40px;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .cta-box h2 {
        font-size: 1.75rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }
    .results-grid {
        display: block;
    }
    .case-study-content {
        display: block;
    }
}

/* Project card — featured variant */
.project-card.featured {
    border: 2px solid #2563eb;
    box-shadow: 0 20px 40px rgba(37,99,235,0.12);
    position: relative;
}

.project-card-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

/* Project card CTA link */
.project-btn {
    display: inline-block;
    width: 100%;
    padding: 13px 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: all 0.25s;
    box-shadow: 0 4px 14px rgba(37,99,235,0.22);
    box-sizing: border-box;
}
.project-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37,99,235,0.32);
    color: white;
}

/* CTA btn-outline on dark bg */
.cta-box .btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.6);
    background: transparent;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: all 0.25s;
}
.cta-box .btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: white;
}
.cta-box .btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border-radius: 12px;
    background: white;
    color: #2563eb;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: all 0.25s;
}
.cta-box .btn-primary:hover {
    background: #f0f6ff;
    transform: translateY(-2px);
}
