.seo-hero {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}
.seo-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(100, 180, 255, 0.08), transparent 50%);
    animation: seoPulse 8s ease-in-out infinite;
}
@keyframes seoPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}
.seo-hero-content { position: relative; z-index: 1; max-width: 900px; }
.seo-hero-content h1 { font-size: 3.2rem; font-weight: 900; color: #fff; margin-bottom: 1.5rem; line-height: 1.2; }
.seo-hero-content h1 span { color: #4ebdff; }
.seo-hero-content p { font-size: 1.15rem; color: #cbd5e1; line-height: 1.7; margin-bottom: 2.5rem; }
.seo-hero-stats { display: flex; gap: 3rem; justify-content: center; margin-bottom: 2.5rem; flex-wrap: wrap; }
.seo-stat { text-align: center; }
.seo-stat h3 { font-size: 2.5rem; font-weight: 800; color: #4ebdff; margin-bottom: 0.3rem; }
.seo-stat p { font-size: 0.9rem; color: #94a3b8; margin: 0; }
.enquire-btn { font-size: 1rem; color: #fff; background: #4ebdff; border: none; border-radius: 6px; padding: 0.8rem 1.8rem; cursor: pointer; transition: all 0.3s; font-weight: 600; }
.enquire-btn:hover { background: #3a9fd4; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(78,189,255,0.3); }
.seo-section { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
.seo-section h2 { text-align: center; font-size: 2.2rem; font-weight: 800; color: #1a1a2e; margin-bottom: 3rem; }
.seo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.seo-card { background: #fff; border-radius: 16px; padding: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s; border: 1px solid #e2e8f0; }
.seo-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); border-color: #4ebdff; }
.seo-card-icon { width: 56px; height: 56px; background: linear-gradient(135deg, #4ebdff, #3a9fd4); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.seo-card-icon i { color: #fff; font-size: 1.5rem; }
.seo-card h3 { font-size: 1.25rem; font-weight: 700; color: #1a1a2e; margin-bottom: 0.8rem; }
.seo-card p { font-size: 0.95rem; color: #64748b; line-height: 1.6; }
.process-section { background: #f8fafc; padding: 5rem 2rem; }
.process-section h2 { text-align: center; font-size: 2.2rem; font-weight: 800; color: #1a1a2e; margin-bottom: 3rem; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.process-step { text-align: center; position: relative; }
.process-step-num { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #4ebdff, #3a9fd4); color: #fff; font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; box-shadow: 0 8px 25px rgba(78,189,255,0.25); }
.process-step h4 { font-size: 1.1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.9rem; color: #64748b; line-height: 1.5; }
.cta-section { background: linear-gradient(135deg, #1a1a2e, #0f3460); padding: 4rem 2rem; text-align: center; }
.cta-section h2 { color: #fff; font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.cta-section p { color: #94a3b8; font-size: 1.05rem; margin-bottom: 2rem; }
.faq-container { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; }
.faq-container h2 { text-align: center; font-size: 2rem; font-weight: 800; color: #1a1a2e; margin-bottom: 2rem; }
@media (max-width: 768px) {
    .seo-hero-content h1 { font-size: 2.2rem; }
    .seo-hero-stats { gap: 1.5rem; }
    .seo-stat h3 { font-size: 1.8rem; }
}
