/* SEO Service Page Styles */
:root {
    --primary-color: #673de6;
    --secondary-color: #5025d1;
    --accent-color: #ff6b6b;
    --text-color: #2d3436;
    --light-bg: #f8f9ff;
    --gradient-1: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-2: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    --box-shadow: 0 10px 30px rgba(103, 61, 230, 0.1);
}

.hero-seo {
    min-height: 85vh;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.hero-seo::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(103, 61, 230, 0.1) 0%, rgba(103, 61, 230, 0) 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite alternate;
}

.hero-seo::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(103, 61, 230, 0.08) 0%, rgba(103, 61, 230, 0) 60%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite alternate-reverse;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.hero-text {
    position: relative;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -40px;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(103, 61, 230, 0.1) 0%, rgba(103, 61, 230, 0) 100%);
    border-radius: 20px;
    transform: rotate(-45deg);
    animation: rotate 10s linear infinite;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease;
    position: relative;
    text-shadow: 2px 2px 4px rgba(103, 61, 230, 0.1);
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 35px;
    animation: fadeInUp 1s ease 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
    position: relative;
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(103, 61, 230, 0.1) 0%, rgba(103, 61, 230, 0) 50%),
        radial-gradient(circle at 70% 70%, rgba(103, 61, 230, 0.1) 0%, rgba(103, 61, 230, 0) 50%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphBlob 15s ease-in-out infinite;
    opacity: 0.8;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(103, 61, 230, 0.05) 0%, rgba(103, 61, 230, 0) 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes morphBlob {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

@keyframes shimmer {
    0% {
        opacity: 0.5;
        transform: translateX(-100%);
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.5;
        transform: translateX(100%);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Metrics Section */
.metrics-section {
    padding: 80px 0;
    background: #fff;
}

.metrics-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.metrics-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.metrics-header p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.metric-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(103, 61, 230, 0.15);
}

.metric-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.metric-label {
    color: #666;
    font-size: 18px;
    line-height: 1.4;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.services-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.services-header p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(103, 61, 230, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(103, 61, 230, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
}

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

.process-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.process-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.process-header p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: rgba(103, 61, 230, 0.1);
    z-index: 0;
}

.step-card {
    text-align: center;
    padding: 30px;
    position: relative;
    z-index: 1;
    background: #fff;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin: 0 auto 25px;
    position: relative;
}

.step-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.step-card p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.pricing-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.pricing-header p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.price-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card.featured {
    position: relative;
    border: 1px solid var(--primary-color);
}

.featured-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.plan-icon {
    width: 60px;
    height: 60px;
    background: rgba(103, 61, 230, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.plan-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.price-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.price-description {
    color: #666;
    margin-bottom: 30px;
}

.price-amount {
    font-size: 40px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.price-period {
    color: #666;
    margin-bottom: 30px;
    display: block;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.features li:last-child {
    border-bottom: none;
}

.features li i {
    color: var(--primary-color);
    font-size: 16px;
}

.cta-button {
    display: inline-block;
    width: 100%;
    padding: 15px 30px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(103, 61, 230, 0.2);
}



/* CTA Section */
.cta-section {
    text-align: center;
    padding: 100px 0;
    background: var(--gradient-1);
    color: #fff;
    position: relative;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.hero-buttons .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 180px;
    font-size: 1.1rem;
    background: #fff;
    box-shadow: 0 4px 15px rgba(103, 61, 230, 0.1);
}

.hero-buttons .cta-button.primary {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(103, 61, 230, 0.2);
}

.hero-buttons .cta-button.secondary {
    background: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero-buttons .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(103, 61, 230, 0.2);
}

.hero-buttons .cta-button.secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.cta-button.primary {
    background: #fff;
    color: var(--primary-color);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.cta-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.cta-features i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-features span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .metrics-grid,
    .services-grid,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps::before {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
}

@media screen and (max-width: 576px) {
    .metrics-grid,
    .services-grid,
    .process-steps,
    .results-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}