/* ================= SEO SERVICES PAGE ================= */

/* ===== HERO SECTION ===== */
.seo-modern-hero {
    padding: 100px 5%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 10%, rgba(126,182,231,0.2) 0%, transparent 40%),
                radial-gradient(circle at 90% 90%, rgba(0,74,153,0.1) 0%, transparent 40%),
                #ffffff;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.hero-left,
.hero-right {
    flex: 1;
}

/* ===== TYPOGRAPHY ===== */
.seo-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    color: #1a2a3a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: #444;
    font-weight: 500;
    margin-bottom: 15px;
}

.hero-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 550px;
}

/* ===== BUTTONS ===== */
.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-get-touch {
    background: #0099e6;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
    box-shadow: 0 10px 20px rgba(230,25,0,0.2);
}

.btn-get-touch:hover {
    background: #0099e6;
    transform: translateY(-3px);
}

.btn-learn-more {
    border: 2px solid #0099e6;
    color: #0099e6;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-learn-more:hover {
    background: rgba(230,25,0,0.05);
    transform: translateY(-3px);
}

/* ===== IMAGE SECTION ===== */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration-wrapper {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.main-seo-img {
    width: 100%;
    position: relative;
    z-index: 2;
    animation: floatImg 6s ease-in-out infinite;
}

/* Floating animation */
@keyframes floatImg {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Decorative shapes */
.floating-shape {
    position: absolute;
    z-index: 1;
    filter: blur(40px);
    opacity: 0.4;
}

.cube {
    width: 100px;
    height: 100px;
    background: #00f2fe;
    bottom: 10%;
    left: -20px;
    border-radius: 20px;
    animation: rotateShape 10s linear infinite;
}

.circle {
    width: 120px;
    height: 120px;
    background: #4facfe;
    top: 0;
    right: -30px;
    border-radius: 50%;
}

@keyframes rotateShape {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== SEO PROCESS ===== */
.seo-methodology {
    padding: 100px 5%;
    background: #fdfdfd;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.method-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #1a2a3a;
}

.method-subtitle {
    color: #666;
    font-size: 16px;
    margin-top: 10px;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.method-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 25px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.method-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #037fcc;
    box-shadow: 0 20px 40px rgba(3,127,204,0.1);
}

.step-num {
    font-size: 50px;
    font-weight: 900;
    color: rgba(3,127,204,0.1);
    position: absolute;
    top: 20px;
    right: 30px;
}

.method-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 10px;
}

.method-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ===== SECOND HERO ===== */
.seo-hero {
    padding: 120px 5% 80px;
    text-align: center;
}

.seo-hero h2 {
    font-size: clamp(28px, 5vw, 60px);
    font-weight: 900;
    color: #1a2a3a;
    margin-bottom: 20px;
}

.seo-hero p {
    max-width: 700px;
    margin: auto;
    color: #556677;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 30px;
    }

    .hero-btns {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .seo-modern-hero {
        padding: 80px 20px;
    }

    .seo-methodology {
        padding: 80px 20px;
    }
}



