/* SEO Audit Service - Custom Styles */

:root {
    --primary: #0d6efd;
    --dark: #1a1a2e;
    --accent: #16213e;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #333;
}

/* Hero Section */
.hero {
    background: var(--dark);
    color: #fff;
    padding: 100px 0;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Section Spacing */
section {
    padding: 80px 0;
}

/* Service Cards */
.service-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card .card-body {
    padding: 2rem;
}

.service-card .icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: var(--accent);
    color: #fff;
}

/* Pricing Cards */
.pricing-card {
    border-radius: 12px;
    overflow: hidden;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
}

/* Trust Badges */
.trust-badge {
    opacity: 0.6;
    transition: opacity 0.3s;
}

.trust-badge:hover {
    opacity: 1;
}

/* Footer */
footer a:hover {
    color: var(--primary) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

