/* Services Page Styles - WebHoneyBee Theme */

.services-hero {
    background: linear-gradient(135deg, #ebc346 0%, #ff6b35 100%);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

.service-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.service-particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0.8;
    animation: serviceParticleFloat 15s linear infinite;
}

.service-particle:nth-child(odd) {
    background: rgba(235, 195, 70, 0.4);
    animation-duration: 20s;
}

.service-particle:nth-child(3n) {
    background: rgba(255, 107, 53, 0.4);
    animation-duration: 25s;
}

@keyframes serviceParticleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

.services-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 1rem 0 1rem;
}

.services-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    display: inline-block;
    margin-bottom: 2rem;
    animation: servicesGlow 2s ease-in-out infinite alternate;
    color: white;
    font-weight: 600;
}

@keyframes servicesGlow {
    from {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
    }

    to {
        box-shadow: 0 0 30px rgba(235, 195, 70, 0.6);
    }
}

.services-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.services-hero-item {
    padding: 1.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.services-hero-icon {
    color: white;
    font-size: 3rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.services-hero-item h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.services-hero-item p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.services-overview-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff5e6 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-detail-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(235, 195, 70, 0.1);
    border-top: 4px solid #ebc346;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-detail-card:hover {
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.18);
    border-top-color: #ff6b35;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(45deg, #ebc346, #ff6b35);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.service-detail-card:hover::before {
    transform: scaleY(1);
}

.service-detail-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ebc346, #ff6b35);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(235, 195, 70, 0.25);
}

.service-detail-card h3 {
    color: #2c3e50;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-detail-card>p {
    color: #6c757d;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.use-case-box {
    background: #fff8e8;
    border: 1px solid rgba(235, 195, 70, 0.35);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.use-case-box span {
    display: block;
    color: #ff6b35;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.use-case-box p {
    color: #4f5f6f;
    line-height: 1.55;
    margin-bottom: 0;
}

.service-cta {
    color: #ff6b35;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-cta:hover {
    color: #ebc346;
    text-decoration: none;
}

.services-process-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ebc346 0%, #ff6b35 100%);
    color: white;
}

.process-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    padding: 2rem;
    transition: all 0.4s ease;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.process-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: white;
    color: #ff6b35;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

.process-card h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

.services-cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
    position: relative;
}

.services-cta-section h2 {
    color: white;
}

.services-cta-button {
    background: linear-gradient(45deg, #ebc346, #ff6b35);
    border: 2px solid transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 700;
}

.services-cta-button:hover {
    background: white;
    color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .services-hero {
        min-height: 60vh;
    }

    .services-hero-content {
        min-height: 60vh;
        padding: 1rem 0 1rem;
    }

    .services-hero-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card,
    .process-card {
        padding: 1.5rem;
    }
}