/* Modern SaaS SEO Section Styling */
/* Clean, airy, modern design with glassmorphism effects */

/* Tab styling for better visibility */
.seo-digital-marketing-solutions .nav-tabs {
    background-color: transparent;
    border-bottom: 1px solid #dee2e6;
}

.seo-digital-marketing-solutions .nav-tabs .nav-link {
    color: #333333;
    background-color: rgba(255, 255, 255, 0.8);
    border-color: #dee2e6;
}

.seo-digital-marketing-solutions .nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: #2a41f1 !important;
    border-color: #2a41f1;
}

/* Tab content styling */
.seo-digital-marketing-solutions .tab-content {
    background-color: transparent;
}

.seo-digital-marketing-solutions .tab-pane {
    background-color: transparent;
}

/* Feature list styling */
.seo-digital-marketing-solutions .feature-list li {
    color: #333333;
}

.seo-digital-marketing-solutions .feature-list li i {
    color: #667eea;
}

/* Global SEO Section Styles */
.seo-hero-section,
.seo-services-section,
.seo-process-section,
.seo-benefits-section,
.seo-pricing-section,
.seo-testimonials-section,
.seo-faq-section,
.seo-cta-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Hero Section */
.seo-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.seo-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.seo-hero-section .container {
    position: relative;
    z-index: 2;
}

.seo-hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.seo-hero-section .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Services Section */
.seo-services-section {
    background: #f8f9fa;
    position: relative;
}

.seo-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
}

.seo-service-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.seo-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.seo-service-card:hover::before {
    transform: scaleX(1);
}

.seo-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.seo-service-card .icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1.5rem;
    display: block;
}

.seo-service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.seo-service-card p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Process Section */
.seo-process-section {
    background: white;
    position: relative;
}

.seo-process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.seo-process-step .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.seo-process-step h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.seo-process-step p {
    color: #6c757d;
    line-height: 1.6;
}

/* Benefits Section */
.seo-benefits-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.seo-benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.seo-benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.seo-benefit-item .icon {
    font-size: 2rem;
    margin-right: 1.5rem;
    color: #fff;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.seo-benefit-item div {
    flex: 1;
}

.seo-benefit-item h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.seo-benefit-item p {
    margin-bottom: 0;
    opacity: 0.9;
    line-height: 1.6;
}

/* Pricing Section */
.seo-pricing-section {
    background: #f8f9fa;
    position: relative;
}

.seo-pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
}

.seo-pricing-card.featured {
    border: 2px solid #667eea;
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.seo-pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.seo-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.seo-pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
}

.seo-pricing-card .period {
    color: #6c757d;
    font-size: 1rem;
}

.seo-pricing-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.seo-pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.seo-pricing-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #6c757d;
}

.seo-pricing-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* CTA Section */
.seo-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.seo-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.seo-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.seo-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Buttons */
.btn-seo-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-seo-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.btn-seo-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-seo-secondary:hover {
    background: white;
    color: #667eea;
    text-decoration: none;
    transform: translateY(-3px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-header p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-header.white h2 {
    color: white;
}

.section-header.white p {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
    .seo-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .seo-hero-section .lead {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .seo-service-card,
    .seo-pricing-card {
        margin-bottom: 2rem;
        padding: 2rem;
    }
    
    .seo-pricing-card.featured {
        transform: none;
    }
    
    .seo-process-step .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .seo-hero-section h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .seo-service-card,
    .seo-pricing-card {
        padding: 1.5rem;
    }
    
    .btn-seo-primary,
    .btn-seo-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Override dark mode for this specific section - force it to stay white */
@media (prefers-color-scheme: dark) {
    .seo-digital-marketing-solutions {
        background: #ffffff !important;
        background-color: #ffffff !important;
        background-image: none !important;
        color: #333333 !important;
    }
    
    .seo-digital-marketing-solutions::before {
        background: transparent !important;
    }
    
    .seo-digital-marketing-solutions .nav-tabs .nav-link {
        color: #333333 !important;
        background-color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .seo-digital-marketing-solutions .nav-tabs .nav-link.active {
        color: #ffffff !important;
        background-color: #2a41f1 !important;
        border-color: #2a41f1 !important;
    }
    
    .seo-digital-marketing-solutions .feature-list li {
        color: #333333 !important;
    }
    
    .seo-digital-marketing-solutions .tab-content,
    .seo-digital-marketing-solutions .tab-pane {
        background-color: transparent !important;
    }
}