/* Website Development (SEO Ranking) Page Styles */

:root {
    --primary: #3b82f6;
    --primary-dark: #1d4ed8;
    --accent: #8b5cf6;
    --text-main: #0f172a;
    --text-muted: #475569;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --border-color: rgba(0, 0, 0, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.8);
    
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

/* Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--text-main); background-color: var(--bg-white); line-height: 1.6; overflow-x: hidden; width: 100%; margin: 0; }
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; font-weight: 700; word-wrap: break-word; overflow-wrap: break-word; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; width: 100%; box-sizing: border-box; }

.btn-primary { 
    background: var(--primary); 
    color: white; 
    padding: 12px 28px; 
    border-radius: 8px; 
    font-weight: 600; 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    border: none; 
    cursor: pointer; 
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }

.btn-secondary { 
    background: white; 
    color: var(--text-main); 
    padding: 12px 28px; 
    border-radius: 8px; 
    font-weight: 600; 
    border: 1px solid var(--border-color); 
    cursor: pointer; 
}


/* Hero Section */
.hero {
    padding: 80px 0;
    background: radial-gradient(circle at right, rgba(59, 130, 246, 0.08), transparent 60%);
    overflow: hidden;
}
.hero-flex { 
    display: flex; 
    gap: 80px; 
    align-items: center; 
    justify-content: space-between;
}
.hero-content { 
    flex: 1.2; 
    max-width: 650px;
}
.hero-visual { 
    flex: 0.8; 
    height: 480px; 
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1)); 
    border-radius: 40px; 
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-visual::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: -10%;
    bottom: -10%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.08);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
}
.badge span { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; }

.hero h1 { 
    font-size: 4rem; 
    line-height: 1.1; 
    margin-bottom: 28px; 
    letter-spacing: -0.02em;
}
.hero h1 span { color: var(--primary); }
.hero p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; line-height: 1.6; }
.hero-btns { display: flex; gap: 20px; margin-bottom: 48px; }

.hero-stats { display: flex; gap: 40px; padding-top: 20px; border-top: 1px solid var(--border-color); }
.stat-item { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 600; color: var(--text-main); }
.stat-item svg { color: #10b981; }


/* Services Intro */
.services-intro { padding: 60px 0; display: flex; align-items: center; justify-content: center; }
.intro-content { max-width: 1200px; }
.intro-content h2 { font-size: 2.5rem; text-align: center; margin-bottom: 32px; }
.intro-content p { font-size: 1.1rem; text-align: center; color: var(--text-muted); margin-bottom: 24px; }

/* Solutions Grid */
.solutions { background: var(--bg-light); padding: 60px 0; }
.solutions-header { text-align: center; margin-bottom: 60px; }
.solutions-header h2 { font-size: 3rem; margin-bottom: 16px; }
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.solution-card { 
    background: white; 
    padding: 40px; 
    border-radius: 20px; 
    border: 1px solid var(--border-color); 
    transition: var(--transition);
}
.solution-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.icon-box { 
    width: 48px; 
    height: 48px; 
    background: #eff6ff; 
    color: var(--primary); 
    border-radius: 10px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 24px; 
}
.solution-card h3 { font-size: 1.25rem; margin-bottom: 16px; }
.solution-card p { font-size: 0.95rem; color: var(--text-muted); }

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Footer */
.main-footer { background: #0b1120; color: white; padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 60px; margin-bottom: 60px; }
.footer-brand p { color: #94a3b8; margin-top: 20px; font-size: 0.95rem; }
.footer-links h4 { font-size: 1.1rem; margin-bottom: 24px; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: #94a3b8; font-size: 0.95rem; }
.footer-links ul li a:hover { color: white; }
/* Why Choose Section */
.why-choose {
    padding: 60px 0;
    display: flex;
    align-items: center;
}
.why-choose-flex {
    display: flex;
    gap: 80px;
    align-items: center;
}
.why-choose-content { flex: 1; }
.why-choose-visual { 
    flex: 1; 
    height: 450px; 
    background: linear-gradient(135deg, #f8fafc, #f1f5f9); 
    border-radius: 24px; 
}

.why-choose-content h2 { font-size: 2.5rem; margin-bottom: 24px; }
.why-choose-content p { color: var(--text-muted); margin-bottom: 40px; }

.reason-list { display: flex; flex-direction: column; gap: 32px; }
.reason-item { display: flex; gap: 20px; }
.reason-icon { 
    width: 44px; 
    height: 44px; 
    background: #eff6ff; 
    color: var(--primary); 
    border-radius: 8px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0; 
}
.reason-info h4 { font-size: 1.15rem; margin-bottom: 8px; }
.reason-info p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

/* Process Section */
.process { background: var(--bg-light); padding: 60px 0; }
.process-header { text-align: center; margin-bottom: 80px; }
.process-header h2 { font-size: 3rem; margin-bottom: 16px; }

.process-steps { display: flex; justify-content: space-between; position: relative; max-width: 1000px; margin: 0 auto; }
.process-steps::before { content: ''; position: absolute; top: 35px; left: 50px; right: 50px; height: 2px; background: var(--border-color); z-index: 1; }

.process-step { flex: 1; text-align: center; position: relative; z-index: 2; padding: 0 10px; }
.step-number { 
    width: 70px; 
    height: 70px; 
    background: var(--primary); 
    color: white; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 24px; 
    font-size: 1.5rem; 
    font-weight: 700; 
    box-shadow: 0 0 0 8px var(--bg-light); 
}
.process-step h4 { font-size: 1.1rem; margin-bottom: 12px; }
.process-step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* Industries Section */
.industries { padding: 60px 0; background: white; }
.industries-header { text-align: center; margin-bottom: 60px; }
.industries-header h2 { font-size: 3rem; margin-bottom: 16px; }

.industries-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.industry-item { 
    background: var(--bg-light); 
    padding: 32px 20px; 
    border-radius: 16px; 
    text-align: center; 
    border: 1px solid var(--border-color); 
    transition: var(--transition); 
}
.industry-item:hover { background: white; transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-color: var(--primary); }
.industry-icon { font-size: 2rem; color: var(--primary); margin-bottom: 16px; display: block; }
.industry-item span { font-weight: 600; font-size: 0.95rem; }

/* Selected Work Section */
.work {display: none; padding: 60px 0; background: var(--bg-light); }
.work-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.work-header h2 { font-size: 3rem; }
.view-all { color: var(--primary); font-weight: 600; display: flex; align-items: center; gap: 8px; }

.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.work-card { background: white; border-radius: 20px; overflow: hidden; border: 1px solid var(--border-color); }
.work-image { height: 240px; background: #f1f5f9; }
.work-info { padding: 24px; }
.work-tag { 
    display: inline-block; 
    padding: 4px 10px; 
    background: #eff6ff; 
    color: var(--primary); 
    border-radius: 4px; 
    font-size: 0.75rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    margin-bottom: 12px; 
}
.work-info h3 { font-size: 1.25rem; margin-bottom: 12px; }
.work-info p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

/* Pricing Section */
.pricing { padding: 60px 0; background: white; }
.pricing-header { text-align: center; margin-bottom: 80px; }
.pricing-header h2 { font-size: 3rem; margin-bottom: 16px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1100px; margin: 0 auto; }
.pricing-card { 
    background: white; 
    padding: 40px; 
    border-radius: 24px; 
    border: 1px solid var(--border-color); 
    display: flex; 
    flex-direction: column; 
    position: relative; 
}
.pricing-card.popular { 
    background: var(--primary); 
    color: white; 
    transform: scale(1.05); 
    border: none; 
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2); 
}
.popular-badge { 
    position: absolute; 
    top: -15px; 
    right: 30px; 
    background: white; 
    color: var(--primary); 
    padding: 6px 16px; 
    border-radius: 100px; 
    font-size: 0.75rem; 
    font-weight: 800; 
    text-transform: uppercase; 
}

.pricing-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.pricing-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-card.popular p { color: rgba(255,255,255,0.8); }

.price { margin-bottom: 32px; }
.price span:first-child { font-size: 2.5rem; font-weight: 800; font-family: 'Outfit', sans-serif; }
.price span:last-child { font-size: 0.9rem; color: var(--text-muted); }
.pricing-card.popular .price span:last-child { color: rgba(255,255,255,0.6); }

.feature-list { flex: 1; margin-bottom: 32px; }
.feature-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; margin-bottom: 12px; }
.feature-list li svg { color: var(--primary); flex-shrink: 0; }
.pricing-card.popular .feature-list li svg { color: white; }

.pricing-card .btn-secondary { width: 100%; text-align: center; }
.pricing-card.popular .btn-secondary { background: white; border: none; color: var(--primary); }
.pricing-card .btn-outline { 
    width: 100%; 
    padding: 12px; 
    border-radius: 8px; 
    border: 1px solid var(--border-color); 
    text-align: center; 
    font-weight: 600; 
}

/* FAQ Section */
.faq { padding: 60px 0; background: var(--bg-light); }
.faq-header { text-align: center; margin-bottom: 60px; }
.faq-header h2 { font-size: 3rem; margin-bottom: 16px; }

.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: white; border-radius: 12px; border: 1px solid var(--border-color); overflow: hidden; }
.faq-question { 
    padding: 24px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    cursor: pointer; 
    font-weight: 600; 
    transition: var(--transition); 
}
.faq-question:hover { background: #f8fafc; }
.faq-answer { 
    padding: 0 24px; 
    max-height: 0; 
    overflow: hidden; 
    transition: all 0.3s ease; 
    color: var(--text-muted); 
    font-size: 0.95rem; 
}
.faq-item.active .faq-answer { padding: 0 24px 24px; max-height: 200px; }
.faq-icon { transition: transform 0.3s ease; color: var(--primary); }
.faq-item.active .faq-icon { transform: rotate(180deg); }

/* Explore Services */
.explore { padding: 60px 0; background: white; text-align: center; }
.explore-header { margin-bottom: 60px; }
.explore-header h2 { font-size: 3rem; margin-bottom: 16px; }

.explore-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.explore-card { 
    padding: 32px; 
    border-radius: 16px; 
    background: var(--bg-light); 
    border: 1px solid var(--border-color); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    transition: var(--transition); 
}
.explore-card:hover { background: white; border-color: var(--primary); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.explore-card span { font-weight: 700; font-size: 1.1rem; }
.explore-arrow { color: var(--text-muted); }
.explore-card:hover .explore-arrow { color: var(--primary); transform: translateX(5px); transition: transform 0.3s ease; }

/* Final CTA */
.final-cta { background: #0F172A; color: white; padding: 80px 0; text-align: center; }
.final-cta h2 { font-size: 3.5rem; margin-bottom: 24px; }
.final-cta p { font-size: 1.2rem; color: #94a3b8; margin-bottom: 40px; max-width: 800px; margin-left: auto; margin-right: auto; }
.trust-indicators { display: flex; justify-content: center; gap: 40px; margin-top: 60px; color: #64748b; font-size: 0.9rem; font-weight: 600; }
.trust-indicator { display: flex; align-items: center; gap: 8px; }
.trust-indicator svg { color: #10b981; }/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3.5rem; }
    .hero-flex { flex-direction: column; gap: 40px; }
    .solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(3, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .work-grid { grid-template-columns: repeat(2, 1fr); }
    .explore-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero { padding: 80px 0; }
    .hero h1 { font-size: 2.2rem !important; }
    .hero p { font-size: 1.1rem; }
    .hero-btns { flex-direction: column; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .solutions-grid, .industries-grid, .pricing-grid, .work-grid, .explore-grid { grid-template-columns: 1fr; }
    .why-choose-flex { flex-direction: column; gap: 40px; }
    .process-steps { flex-direction: column; gap: 40px; }
    .process-steps::before { display: none; }
    .final-cta h2 { font-size: 2.2rem; }
    .trust-indicators { flex-direction: column; gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    section { overflow: hidden; }
}
