/* Social Boost Services Styles */
.social-boost-services {
    font-family: var(--font-secondary, "Inter", sans-serif);
    line-height: 1.6;
    color: #333;
}

/* Use theme fonts for headings */
.social-boost-services h1,
.social-boost-services h2,
.social-boost-services h3,
.sbs-section-title,
.sbs-service-title,
.sbs-feature-title {
    font-family: var(--font-primary, "Space Grotesk", sans-serif);
}

.sbs-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sbs-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.sbs-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.sbs-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.sbs-hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.sbs-cta-button {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.sbs-cta-button:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
    color: white;
    text-decoration: none;
}

.sbs-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.sbs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sbs-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.sbs-section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sbs-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.sbs-service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.sbs-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;
}

.sbs-service-card:hover::before {
    transform: scaleX(1);
}

.sbs-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.sbs-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.sbs-service-card:hover .sbs-service-icon {
    transform: scale(1.1);
}

.sbs-service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.sbs-service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sbs-service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sbs-service-features li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.sbs-service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.sbs-why-choose {
    padding: 80px 0;
    background: white;
}

.sbs-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.sbs-feature-item {
    text-align: center;
    padding: 20px;
}

.sbs-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.sbs-feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.sbs-feature-description {
    color: #666;
    line-height: 1.6;
}

.sbs-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.sbs-contact-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.sbs-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.sbs-contact p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.sbs-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.sbs-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.sbs-contact-item i {
    font-size: 1.3rem;
    color: #ff6b6b;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sbs-animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.sbs-animate-on-scroll.sbs-animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .sbs-hero h1 {
        font-size: 2.5rem;
    }

    .sbs-hero p {
        font-size: 1.1rem;
    }

    .sbs-section-title {
        font-size: 2rem;
    }

    .sbs-services-grid {
        grid-template-columns: 1fr;
    }

    .sbs-contact-info {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .sbs-hero {
        padding: 60px 0;
    }

    .sbs-hero h1 {
        font-size: 2rem;
    }

    .sbs-services,
    .sbs-why-choose,
    .sbs-contact {
        padding: 60px 0;
    }

    .sbs-service-card {
        padding: 20px;
    }
}
