/* ===== SERVICE SINGLE PAGE - ULTRA PREMIUM ===== */

:root {
    --service-primary: #00B4DB;
    --service-secondary: #2F55D4;
    --service-gradient: linear-gradient(135deg, #00B4DB 0%, #2F55D4 100%);
    --service-dark: #0B1B35;
}

/* ===== HERO SECTION ===== */
.service-single-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    background: var(--service-gradient);
    overflow: hidden;
    padding: 180px 0 80px;
}

.hero-particles-service {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-particles-service .particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0.6;
    animation: particleDrift 12s ease-in-out infinite;
}

.hero-particles-service .particle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.hero-particles-service .particle:nth-child(2) {
    top: 50%;
    left: 70%;
    animation-delay: 3s;
}

.hero-particles-service .particle:nth-child(3) {
    top: 70%;
    left: 40%;
    animation-delay: 6s;
}

@keyframes particleDrift {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }
    50% {
        transform: translate(50px, -50px);
        opacity: 0.8;
    }
}

.hero-gradient-service {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-service-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.back-link-service {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.back-link-service:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-5px);
}

.service-icon-hero {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ffffff;
    margin: 0 auto 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.service-title-hero {
    font-size: 52px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.service-intro-hero {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.service-meta-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.meta-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    color: #ffffff;
    font-size: 14px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.meta-badge i {
    font-size: 16px;
}

.meta-badge strong {
    font-weight: 700;
}

.cta-hero-service {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #ffffff;
    color: var(--service-primary);
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-hero-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ===== CONTENT SECTION ===== */
.service-content-section {
    padding: 100px 0;
    background: #ffffff;
}

.content-block-service {
    margin-bottom: 70px;
}

.content-heading-service {
    font-size: 36px;
    font-weight: 800;
    color: var(--service-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.heading-number-service {
    width: 70px;
    height: 70px;
    background: var(--service-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(0, 180, 219, 0.3);
}

/* Benefits Grid */
.benefits-grid-service {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid rgba(0, 180, 219, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    border-color: var(--service-primary);
    box-shadow: 0 8px 20px rgba(0, 180, 219, 0.2);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--service-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 16px;
    font-weight: 600;
    color: var(--service-dark);
}

/* Process Timeline */
.process-timeline-service {
    position: relative;
    margin-top: 40px;
}

.process-timeline-service::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 35px;
    bottom: 35px;
    width: 3px;
    background: linear-gradient(to bottom, var(--service-primary), var(--service-secondary));
}

.timeline-step {
    position: relative;
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-number-circle {
    width: 70px;
    height: 70px;
    background: var(--service-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(0, 180, 219, 0.4);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content-service {
    flex: 1;
    padding: 25px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    border: 2px solid rgba(0, 180, 219, 0.1);
    transition: all 0.3s ease;
}

.step-content-service:hover {
    border-color: var(--service-primary);
    box-shadow: 0 10px 30px rgba(0, 180, 219, 0.15);
}

.step-content-service h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--service-dark);
    margin-bottom: 12px;
}

.step-content-service p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 15px;
}

.step-duration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    background: rgba(0, 180, 219, 0.1);
    border-radius: 20px;
    color: var(--service-primary);
    font-size: 13px;
    font-weight: 600;
}

/* Technologies Showcase */
.technologies-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.tech-item-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    border: 2px solid rgba(0, 180, 219, 0.1);
    transition: all 0.3s ease;
}

.tech-item-service:hover {
    transform: translateY(-8px);
    border-color: var(--service-primary);
    box-shadow: 0 15px 35px rgba(0, 180, 219, 0.2);
}

.tech-icon-service {
    width: 60px;
    height: 60px;
    background: var(--service-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
}

.tech-item-service span {
    font-size: 15px;
    font-weight: 700;
    color: var(--service-dark);
}

/* Deliverables List */
.deliverables-list {
    margin-top: 30px;
}

.deliverable-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 4px solid var(--service-primary);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.deliverable-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0, 180, 219, 0.15);
}

.deliverable-check {
    width: 35px;
    height: 35px;
    background: var(--service-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    flex-shrink: 0;
}

.deliverable-item span {
    font-size: 17px;
    font-weight: 600;
    color: var(--service-dark);
}

/* Sidebar */
.service-sidebar-sticky {
    position: sticky;
    top: 120px;
}

.sidebar-card-service {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 180, 219, 0.1);
    margin-bottom: 30px;
}

.card-header-service {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.card-header-service i {
    font-size: 20px;
    color: var(--service-primary);
}

.card-header-service h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--service-dark);
    margin: 0;
}

.sidebar-card-service p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(0, 180, 219, 0.05);
    border-radius: 10px;
    color: var(--service-dark);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(0, 180, 219, 0.1);
    transform: translateX(5px);
}

.contact-method i {
    color: var(--service-primary);
    font-size: 16px;
}

.btn-contact-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--service-gradient);
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-contact-sidebar:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 180, 219, 0.4);
}

/* Case Studies */
.case-studies-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.case-study-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 180, 219, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--service-primary);
    transition: all 0.3s ease;
}

.case-study-item:hover {
    background: rgba(0, 180, 219, 0.1);
    transform: translateX(5px);
}

.case-icon {
    width: 40px;
    height: 40px;
    background: var(--service-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    flex-shrink: 0;
}

.case-content {
    display: flex;
    flex-direction: column;
}

.case-content strong {
    font-size: 15px;
    color: var(--service-dark);
    margin-bottom: 4px;
}

.case-result {
    font-size: 13px;
    color: var(--service-primary);
    font-weight: 700;
}

/* Download Card */
.download-card {
    background: var(--service-gradient);
    color: #ffffff;
    border: none;
    text-align: center;
}

.download-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.download-card h4 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 15px;
}

.download-card p {
    color: rgba(255, 255, 255, 0.9);
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: #ffffff;
    color: var(--service-primary);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Other Services */
.other-services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-mini-card {
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 180, 219, 0.1);
    text-align: center;
    transition: all 0.4s ease;
}

.service-mini-card:hover {
    transform: translateY(-10px);
    border-color: var(--service-primary);
    box-shadow: 0 20px 50px rgba(0, 180, 219, 0.2);
}

.service-mini-icon {
    width: 80px;
    height: 80px;
    background: var(--service-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ffffff;
    margin: 0 auto 25px;
}

.service-mini-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--service-dark);
    margin-bottom: 15px;
}

.service-mini-card p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 25px;
}

.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--service-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.learn-more-link:hover {
    gap: 15px;
    color: var(--service-secondary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .benefits-grid-service {
        grid-template-columns: 1fr;
    }
    
    .technologies-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-single-hero {
        padding: 140px 0 60px;
    }
    
    .service-title-hero {
        font-size: 36px;
    }
    
    .service-intro-hero {
        font-size: 16px;
    }
    
    .service-meta-badges {
        flex-direction: column;
    }
    
    .technologies-showcase {
        grid-template-columns: 1fr;
    }
    
    .content-heading-service {
        font-size: 28px;
    }
}

