/* Service Detail Styles */

/* SVG Icon Styles */
.service-icon-large svg {
    width: 60px;
    height: 60px;
    color: var(--primary);
}

.service-hero-icon svg {
    width: 120px;
    height: 120px;
    color: var(--primary);
}

/* Page Hero */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 150px 40px 80px;
}

.page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Service Cards - Large */
.services-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 30px;
}

.service-card-large {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.service-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-large:hover::before {
    opacity: 0.05;
}

.service-card-large:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 61, 0.3);
    box-shadow: 0 20px 60px rgba(255, 107, 61, 0.2);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.service-icon-large {
    font-size: 60px;
}

.service-number {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: rgba(255, 107, 61, 0.2);
}

.service-title-large {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.service-desc-large {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.tag {
    padding: 8px 16px;
    background: rgba(255, 107, 61, 0.1);
    border: 1px solid rgba(255, 107, 61, 0.2);
    border-radius: 20px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
}

.service-arrow-large {
    font-size: 32px;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card-large:hover .service-arrow-large {
    opacity: 1;
    transform: translateX(0);
}

/* Service Detail Page */
.service-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 150px 40px 80px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 60px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--primary);
    gap: 15px;
}

.service-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.service-hero-icon {
    font-size: 120px;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.service-hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-hero-subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Service Content */
.service-content {
    padding: 80px 0 120px;
}

.service-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

.service-main h2 {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.service-description {
    margin-bottom: 80px;
}

.service-description p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 80px;
}

.feature-box {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: rgba(255, 107, 61, 0.2);
    transform: translateY(-5px);
}

.feature-box-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-box-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 107, 61, 0.1);
    border: 1px solid rgba(255, 107, 61, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

.feature-box h3 {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.feature-box p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Process Timeline */
.process-timeline {
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.process-content {
    flex: 1;
    padding-top: 5px;
}

.process-content h3 {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.process-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Sidebar */
.sidebar-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 35px;
    margin-bottom: 30px;
}

.sidebar-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    padding: 10px 20px;
    background: rgba(255, 107, 61, 0.05);
    border: 1px solid rgba(255, 107, 61, 0.15);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(255, 107, 61, 0.1);
    border-color: rgba(255, 107, 61, 0.3);
    color: var(--primary);
}

/* CTA Card */
.cta-card {
    background: var(--gradient-1);
    border: none;
    text-align: center;
}

.cta-card h3 {
    color: white;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.7;
}

.cta-card .btn {
    background: white;
    color: var(--primary);
}

.cta-card .btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
}

/* Related Services */
.related-services {
    list-style: none;
}

.related-services li {
    margin-bottom: 15px;
}

.related-services a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 15px;
    transition: all 0.3s ease;
}

.related-services a:hover {
    background: rgba(255, 107, 61, 0.05);
    color: var(--text-primary);
    transform: translateX(5px);
}

.service-mini-icon {
    font-size: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-layout {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .services-grid-full {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 15px;
    }
    
    .process-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .process-step {
        gap: 20px;
    }
}