/* ============================================
   SEO & MARKETING SERVICE PAGE STYLES
   Unique Theme: Analytics Dashboard / Data Growth
   Color Scheme: Purple (#a855f7) to Blue (#3b82f6)
   ============================================ */

/* ===== VARIABLES ===== */
:root {
    --seo-purple: #a855f7;
    --seo-purple-dark: #7c3aed;
    --seo-blue: #3b82f6;
    --seo-cyan: #06b6d4;
    --seo-pink: #ec4899;
    --seo-gradient: linear-gradient(135deg, #a855f7 0%, #3b82f6 50%, #06b6d4 100%);
    --seo-gradient-reverse: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #a855f7 100%);
    --seo-dark: #0f0a1a;
    --seo-dark-2: #1a1025;
}

/* ===== PAGE BODY ===== */
.seo-service-page {
    background: var(--seo-dark);
    overflow-x: hidden;
}

/* ===== HERO SECTION ===== */
.seo-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at 50% 50%, rgba(168, 85, 247, 0.15) 0%, var(--seo-dark) 60%);
    overflow: hidden;
    padding-top: 100px;
}

/* Analytics Grid Background */
.analytics-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(168, 85, 247, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

/* ===== RADAR PULSE EFFECT ===== */
.radar-container {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
}

.radar-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 50%;
    animation: radarPulse 3s ease-out infinite;
}

.radar-ring.ring-2 {
    width: 200px;
    height: 200px;
    animation-delay: 0.5s;
}

.radar-ring.ring-3 {
    width: 100px;
    height: 100px;
    animation-delay: 1s;
}

@keyframes radarPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.radar-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--seo-purple), var(--seo-cyan));
    transform-origin: left center;
    animation: radarSweep 4s linear infinite;
}

@keyframes radarSweep {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.radar-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--seo-cyan);
    border-radius: 50%;
    animation: radarDotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px var(--seo-cyan);
}

.radar-dot.dot-1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.radar-dot.dot-2 {
    top: 40%;
    left: 70%;
    animation-delay: 0.5s;
}

.radar-dot.dot-3 {
    top: 60%;
    left: 20%;
    animation-delay: 1s;
}

.radar-dot.dot-4 {
    top: 75%;
    left: 60%;
    animation-delay: 1.5s;
}

.radar-dot.dot-5 {
    top: 35%;
    left: 45%;
    animation-delay: 2s;
}

@keyframes radarDotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* ===== FLOATING METRICS ===== */
.floating-metrics {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.metric-bubble {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(168, 85, 247, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 40px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    animation: floatMetric 6s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.2);
}

.metric-bubble i {
    color: var(--seo-purple);
    font-size: 18px;
}

.metric-bubble.bubble-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.metric-bubble.bubble-2 {
    top: 30%;
    right: 5%;
    animation-delay: 1s;
    background: rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.3);
}

.metric-bubble.bubble-2 i {
    color: var(--seo-cyan);
}

.metric-bubble.bubble-3 {
    bottom: 25%;
    left: 5%;
    animation-delay: 2s;
    background: rgba(236, 72, 153, 0.15);
    border-color: rgba(236, 72, 153, 0.3);
}

.metric-bubble.bubble-3 i {
    color: var(--seo-pink);
}

.metric-bubble.bubble-4 {
    top: 60%;
    right: 8%;
    animation-delay: 1.5s;
}

.metric-bubble.bubble-5 {
    bottom: 15%;
    right: 20%;
    animation-delay: 0.5s;
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.metric-bubble.bubble-5 i {
    color: var(--seo-blue);
}

@keyframes floatMetric {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(2deg);
    }

    75% {
        transform: translateY(10px) rotate(-2deg);
    }
}

/* ===== GROWTH PARTICLES ===== */
.growth-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.growth-particle {
    position: absolute;
    bottom: -10px;
    width: 6px;
    height: 6px;
    background: var(--seo-purple);
    border-radius: 50%;
    animation: riseUp 5s ease-in-out infinite;
    opacity: 0;
}

.growth-particle:nth-child(odd) {
    background: var(--seo-cyan);
}

.growth-particle:nth-child(3n) {
    background: var(--seo-pink);
}

@keyframes riseUp {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }

    20% {
        opacity: 0.8;
    }

    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(1.5);
    }
}

/* ===== HERO CONTENT ===== */
.seo-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    z-index: 10;
    position: relative;
}

.hero-seo-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 50px;
    color: var(--seo-purple);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(168, 85, 247, 0.5);
    }
}

.hero-mega-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-mega-title .title-sub {
    display: block;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gradient-text-seo {
    background: var(--seo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description strong {
    color: #fff;
}

.highlight-glow {
    color: var(--seo-cyan);
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

/* ===== CTA BUTTONS ===== */
.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.btn-seo-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--seo-gradient);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-seo-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.btn-seo-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.6);
}

.btn-glass-seo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-glass-seo:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--seo-purple);
    transform: translateY(-3px);
}

/* ===== HERO STATS ===== */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 30px 50px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--seo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus {
    font-size: 24px;
    font-weight: 700;
    color: var(--seo-purple);
}

.stat-label {
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.scroll-dot {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--seo-purple);
    border-radius: 4px;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {

    0%,
    100% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 20px;
        opacity: 0.3;
    }
}

.scroll-indicator span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ===== SEO SERVICES SECTION ===== */
.section-seo-services {
    padding: 120px 0;
    background: var(--seo-dark-2);
    position: relative;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge-seo {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(59, 130, 246, 0.15));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    color: var(--seo-purple);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SEO SERVICE CARDS ===== */
.seo-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.seo-service-card {
    position: relative;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

.seo-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--seo-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.seo-service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.15);
}

.seo-service-card:hover::before {
    opacity: 1;
}

.card-neon-border {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--seo-gradient);
    border-radius: 26px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.seo-service-card:hover .card-neon-border {
    opacity: 0.5;
    filter: blur(15px);
}

.service-icon-wrap {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
}

.service-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    opacity: 0.2;
    transform: rotate(-10deg);
}

.service-icon-bg.bg-purple {
    background: var(--seo-purple);
}

.service-icon-bg.bg-blue {
    background: var(--seo-blue);
}

.service-icon-bg.bg-cyan {
    background: var(--seo-cyan);
}

.service-icon-bg.bg-pink {
    background: var(--seo-pink);
}

.service-icon-bg.bg-green {
    background: #10b981;
}

.service-icon-bg.bg-orange {
    background: #f59e0b;
}

.service-icon-wrap i {
    position: relative;
    z-index: 1;
    font-size: 32px;
    color: var(--seo-purple);
    line-height: 70px;
}

.seo-service-card:nth-child(2) .service-icon-wrap i {
    color: var(--seo-blue);
}

.seo-service-card:nth-child(3) .service-icon-wrap i {
    color: #f59e0b;
}

.seo-service-card:nth-child(4) .service-icon-wrap i {
    color: var(--seo-pink);
}

.seo-service-card:nth-child(5) .service-icon-wrap i {
    color: #10b981;
}

.seo-service-card:nth-child(6) .service-icon-wrap i {
    color: var(--seo-cyan);
}

.seo-service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.seo-service-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.service-features li i {
    color: var(--seo-cyan);
    font-size: 12px;
}

/* ===== RESULTS SECTION ===== */
.section-results {
    padding: 120px 0;
    background: var(--seo-dark);
    position: relative;
}

.results-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.result-card {
    padding: 30px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.2);
}

.result-before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.result-before,
.result-after {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-before .label,
.result-after .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.result-before .value {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
}

.result-after .value {
    font-size: 24px;
    font-weight: 700;
    color: var(--seo-cyan);
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.result-arrow i {
    color: var(--seo-purple);
    font-size: 20px;
    animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

.result-metric {
    margin-bottom: 20px;
}

.metric-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    background: var(--seo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.result-bar-container {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

.result-bar {
    width: 0;
    height: 100%;
    background: var(--seo-gradient);
    border-radius: 4px;
    transition: width 1.5s ease-out;
}

.result-bar.bar-blue {
    background: linear-gradient(90deg, var(--seo-blue), var(--seo-cyan));
}

.result-bar.bar-green {
    background: linear-gradient(90deg, #10b981, var(--seo-cyan));
}

.result-bar.bar-orange {
    background: linear-gradient(90deg, #f59e0b, var(--seo-pink));
}

.result-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.result-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== PROCESS SECTION ===== */
.section-seo-process {
    padding: 120px 0;
    background: var(--seo-dark-2);
}

.process-timeline-seo {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line-seo {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--seo-purple), var(--seo-blue), var(--seo-cyan));
    transform: translateX(-50%);
}

.process-step-seo {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.process-step-seo:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--seo-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    z-index: 2;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
}

.step-icon-seo {
    width: 80px;
    height: 80px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 40px;
}

.step-icon-seo i {
    font-size: 32px;
    color: var(--seo-purple);
}

.process-step-seo:nth-child(3) .step-icon-seo {
    background: rgba(59, 130, 246, 0.1);
}

.process-step-seo:nth-child(3) .step-icon-seo i {
    color: var(--seo-blue);
}

.process-step-seo:nth-child(4) .step-icon-seo {
    background: rgba(6, 182, 212, 0.1);
}

.process-step-seo:nth-child(4) .step-icon-seo i {
    color: var(--seo-cyan);
}

.process-step-seo:nth-child(5) .step-icon-seo {
    background: rgba(236, 72, 153, 0.1);
}

.process-step-seo:nth-child(5) .step-icon-seo i {
    color: var(--seo-pink);
}

.step-content-seo {
    flex: 1;
    max-width: 350px;
}

.process-step-seo:nth-child(odd) .step-content-seo {
    text-align: right;
    margin-right: 40px;
}

.process-step-seo:nth-child(even) .step-content-seo {
    text-align: left;
    margin-left: 40px;
}

.step-content-seo h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.step-content-seo p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ===== TOOLS SECTION ===== */
.section-seo-tools {
    padding: 120px 0;
    background: var(--seo-dark);
}

.tools-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tools-left p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.tool-item:hover {
    transform: translateY(-5px);
    border-color: var(--seo-purple);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.15);
}

.tool-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.tool-icon-wrap.tool-ga {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
}

.tool-icon-wrap.tool-gsc {
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: #fff;
}

.tool-icon-wrap.tool-semrush {
    background: linear-gradient(135deg, #ff6422, #f54c00);
    color: #fff;
}

.tool-icon-wrap.tool-ahrefs {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
}

.tool-icon-wrap.tool-gads {
    background: linear-gradient(135deg, #4285f4, #ea4335);
    color: #fff;
}

.tool-icon-wrap.tool-meta {
    background: linear-gradient(135deg, #1877f2, #0d6efd);
    color: #fff;
}

.tool-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.tool-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ===== WHY SECTION ===== */
.section-why-seo {
    padding: 100px 0;
    background: var(--seo-dark-2);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: var(--seo-purple);
    transform: translateY(-5px);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 28px;
    color: var(--seo-purple);
}

.why-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== CTA SECTION ===== */
.section-seo-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.cta-analytics-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-white-glow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #fff;
    color: var(--seo-dark);
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.btn-white-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .radar-container {
        display: none;
    }

    .hero-mega-title {
        font-size: 48px;
    }

    .seo-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .tools-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tools-left {
        text-align: center;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step-seo {
        flex-direction: column;
        text-align: center;
    }

    .process-step-seo:nth-child(even) {
        flex-direction: column;
    }

    .timeline-line-seo {
        display: none;
    }

    .step-number {
        position: relative;
        left: auto;
        transform: none;
        margin-bottom: 20px;
    }

    .step-content-seo {
        text-align: center !important;
        margin: 0 !important;
        max-width: 100%;
    }

    .step-icon-seo {
        margin: 0 0 20px 0;
    }
}

@media (max-width: 768px) {
    .seo-hero {
        padding-top: 80px;
    }

    .hero-mega-title {
        font-size: 36px;
    }

    .hero-mega-title .title-sub {
        font-size: 16px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .floating-metrics {
        display: none;
    }

    .seo-services-grid {
        grid-template-columns: 1fr;
    }

    .results-showcase {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .showcase-grid-visual {
        grid-template-columns: 1fr;
    }

    .showcase-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ===== VISUAL SHOWCASE SECTION ===== */
.section-visual-showcase {
    padding: 120px 0;
    background: var(--seo-dark-2);
}

.showcase-grid-visual {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.showcase-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.showcase-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    min-height: 200px;
}

.showcase-item.large img {
    min-height: 420px;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(15, 10, 26, 0.95), transparent);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
}

.showcase-overlay h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.showcase-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Visual Showcase */
@media (max-width: 1024px) {
    .showcase-grid-visual {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .showcase-grid-visual {
        grid-template-columns: 1fr;
    }

    .showcase-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .showcase-item img,
    .showcase-item.large img {
        min-height: 250px;
    }
}