

.service-detail-main {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 25%, #ffffff 50%, #f1f3f4 75%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    height: auto;
}

.service-detail-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.01) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.service-detail-main .container {
    position: relative;
    z-index: 2;
}


.service-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.service-header::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #000000, transparent);
    border-radius: 1px;
}

.service-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #000000;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #000000;
    border-radius: 2px;
}

.service-subtitle {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}


.service-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}


.service-main-content {
    position: relative;
}

.content-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #000000, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-card:hover::before {
    opacity: 1;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.12);
}

.content-section {
    margin-bottom: 40px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 16px;
    position: relative;
    padding-left: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: #000000;
    border-radius: 2px;
}

.section-content {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.8);
}

.section-content p {
    margin-bottom: 16px;
}

.section-content p:last-child {
    margin-bottom: 0;
}


.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-features li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.service-features li:hover {
    background: rgba(0, 0, 0, 0.02);
    padding-left: 8px;
    border-radius: 8px;
}

.service-features li::before {
    content: '✓';
    color: #000000;
    font-weight: 600;
    margin-right: 12px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}


.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #000000;
    border-radius: 1px;
}


.service-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: scale(1.05);
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.info-card {
    padding: 20px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.info-card:last-child {
    margin-bottom: 0;
}

.info-card:hover {
    background: rgba(0, 0, 0, 0.05);
}

.info-title {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-content {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
}


.service-cta {
    background: rgba(0, 0, 0, 0.95);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-cta:hover::before {
    opacity: 1;
}

.cta-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
}

.cta-btn-primary {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
}

.cta-btn-primary:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.cta-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-outline:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-2px);
}


.related-services {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.related-title {
    font-size: 32px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.related-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: #000000;
    border-radius: 1px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.related-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #000000, transparent);
    transition: left 0.5s ease;
}

.related-card:hover::before {
    left: 0;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.related-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.related-card:hover .related-icon {
    background: #000000;
    transform: scale(1.1);
}

.related-icon i {
    font-size: 24px;
    color: #000000;
    transition: color 0.3s ease;
}

.related-card:hover .related-icon i {
    color: #ffffff;
}

.related-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
}

.related-card-description {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
}




@media (max-width: 1200px) {
    .service-content-grid {
        gap: 40px;
    }
    
    .service-title {
        font-size: 42px;
    }
    
    .service-detail-main .container {
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .service-detail-main {
        padding: 90px 0 70px;
        background: #ffffff;
    }
    
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-title {
        font-size: 36px;
        line-height: 1.3;
    }
    
    .content-card {
        padding: 30px;
        margin-bottom: 20px;
    }
    
    .sidebar-card {
        padding: 25px;
    }
}


@media (max-width: 768px) {
    .service-detail-main {
        padding: 70px 0 50px;
        background: #fafafa;
        margin-top: 5rem;
    }
    
    .service-detail-main .container {
        padding: 0 16px;
    }
    
    
    .service-header {
        margin-bottom: 24px;
        text-align: center;
    }
    
    .service-header::before {
        display: none;
    }
    
    .service-badge {
        padding: 6px 16px;
        font-size: 11px;
        margin-bottom: 16px;
        border-radius: 16px;
        background: #1a1a1a;
        color: #ffffff;
        border: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .service-title {
        font-size: 24px;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 12px;
        color: #1a1a1a;
        text-align: center;
    }
    
    .service-title::after {
        width: 40px;
        height: 2px;
        bottom: -8px;
        background: #1a1a1a;
    }
    
    .service-subtitle {
        font-size: 14px;
        line-height: 1.5;
        color: #666;
        max-width: 90%;
        margin: 0 auto;
        text-align: center;
    }
    
    
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 32px;
    }
    
    
    .content-card {
        background: #ffffff;
        border: 1px solid #f0f0f0;
        border-radius: 12px;
        padding: 16px;
        margin-bottom: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        backdrop-filter: none;
    }
    
    .content-card::before {
        height: 2px;
        border-radius: 12px 12px 0 0;
    }
    
    .content-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    
    .content-section {
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 12px;
        padding-left: 12px;
        color: #1a1a1a;
    }
    
    .section-title::before {
        width: 3px;
        height: 16px;
        background: #1a1a1a;
    }
    
    .section-content {
        font-size: 14px;
        line-height: 1.6;
        color: #333;
    }
    
    .section-content p {
        margin-bottom: 12px;
    }
    
    
    .service-features li {
        margin-bottom: 8px;
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 13px;
    }
    
    .service-features li::before {
        width: 16px;
        height: 16px;
        font-size: 10px;
        margin-right: 8px;
        background: #f8f9fa;
        border: 1px solid #e0e0e0;
    }
    
    .service-features li:hover {
        background: #f8f9fa;
        padding-left: 4px;
        border-radius: 6px;
    }
    
    
    .sidebar-card {
        background: #ffffff;
        border: 1px solid #f0f0f0;
        border-radius: 12px;
        padding: 16px;
        margin-bottom: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        backdrop-filter: none;
    }
    
    .sidebar-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    
    .sidebar-title {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #1a1a1a;
    }
    
    .sidebar-title::after {
        width: 30px;
        height: 1.5px;
        bottom: -6px;
        background: #1a1a1a;
    }
    
    
    .service-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .stat-item {
        padding: 12px;
        background: #f8f9fa;
        border-radius: 8px;
        border: 1px solid #f0f0f0;
    }
    
    .stat-number {
        font-size: 18px;
        margin-bottom: 2px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    
    .info-card {
        padding: 12px;
        background: #f8f9fa;
        border-radius: 8px;
        margin-bottom: 10px;
        border: 1px solid #f0f0f0;
    }
    
    .info-title {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .info-content {
        font-size: 13px;
    }
    
    
    .service-cta {
        background: #1a1a1a;
        border-radius: 16px;
        padding: 24px 20px;
        margin-top: 32px;
        text-align: center;
    }
    
    .service-cta::before {
        display: none;
    }
    
    .cta-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .cta-description {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 20px;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .cta-btn {
        padding: 12px 24px;
        font-size: 14px;
        border-radius: 10px;
        width: 100%;
        max-width: 280px;
    }
    
    .cta-btn-primary {
        background: #ffffff;
        color: #1a1a1a;
        border: 2px solid #ffffff;
    }
    
    .cta-btn-primary:hover {
        background: #f0f0f0;
        transform: translateY(-2px);
    }
    
    .cta-btn-outline {
        background: transparent;
        color: #ffffff;
        border: 2px solid rgba(255, 255, 255, 0.6);
    }
    
    .cta-btn-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #ffffff;
    }
    
    
    .related-services {
        margin-top: 32px;
        padding-top: 24px;
        border-top: 1px solid #f0f0f0;
    }
    
    .related-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 20px;
        color: #1a1a1a;
    }
    
    .related-title::after {
        width: 50px;
        height: 2px;
        bottom: -8px;
        background: #1a1a1a;
    }
    
    .related-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .related-card {
        background: #ffffff;
        border: 1px solid #f0f0f0;
        border-radius: 12px;
        padding: 16px;
        text-align: center;
        backdrop-filter: none;
    }
    
    .related-card::before {
        height: 2px;
    }
    
    .related-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    
    .related-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 12px;
        background: #f8f9fa;
        border: 1px solid #e0e0e0;
    }
    
    .related-icon i {
        font-size: 20px;
    }
    
    .related-card-title {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 8px;
        color: #1a1a1a;
    }
    
    .related-card-description {
        font-size: 13px;
        line-height: 1.4;
        color: #666;
    }
}


@media (max-width: 576px) {
    .service-detail-main {
        padding: 60px 0 40px;
    }
    
    .service-detail-main .container {
        padding: 0 12px;
    }
    
    .service-header {
        margin-bottom: 20px;
    }
    
    .service-title {
        font-size: 20px;
        line-height: 1.3;
    }
    
    .service-subtitle {
        font-size: 13px;
    }
    
    .content-card {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    .section-title {
        font-size: 14px;
        margin-bottom: 10px;
        padding-left: 10px;
    }
    
    .section-content {
        font-size: 13px;
    }
    
    .service-features li {
        font-size: 12px;
        padding: 6px 0;
    }
    
    .service-features li::before {
        width: 14px;
        height: 14px;
        font-size: 9px;
    }
    
    .sidebar-card {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .sidebar-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .service-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .stat-item {
        padding: 10px;
    }
    
    .stat-number {
        font-size: 16px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .info-card {
        padding: 10px;
        margin-bottom: 8px;
    }
    
    .info-title {
        font-size: 11px;
    }
    
    .info-content {
        font-size: 12px;
    }
    
    .service-cta {
        padding: 20px 16px;
        margin-top: 24px;
    }
    
    .cta-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .cta-description {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .cta-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .related-services {
        margin-top: 24px;
        padding-top: 20px;
    }
    
    .related-title {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .related-grid {
        gap: 12px;
    }
    
    .related-card {
        padding: 12px;
    }
    
    .related-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .related-icon i {
        font-size: 16px;
    }
    
    .related-card-title {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .related-card-description {
        font-size: 12px;
    }
}


@media (max-width: 480px) {
    .service-detail-main .container {
        padding: 0 8px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-subtitle {
        font-size: 12px;
    }
    
    .content-card {
        padding: 10px;
    }
    
    .section-title {
        font-size: 13px;
        padding-left: 8px;
    }
    
    .section-content {
        font-size: 12px;
    }
    
    .sidebar-card {
        padding: 10px;
    }
    
    .sidebar-title {
        font-size: 13px;
    }
    
    .service-cta {
        padding: 16px 12px;
    }
    
    .cta-title {
        font-size: 15px;
    }
    
    .cta-description {
        font-size: 12px;
    }
    
    .related-title {
        font-size: 16px;
    }
}


@media (prefers-reduced-motion: no-preference) {
    .service-header,
    .content-card,
    .sidebar-card,
    .related-card {
        animation: fadeInUp 0.8s ease-out;
    }
    
    .service-header {
        animation-delay: 0.1s;
    }
    
    .content-card:nth-child(1) {
        animation-delay: 0.2s;
    }
    
    .content-card:nth-child(2) {
        animation-delay: 0.3s;
    }
    
    .sidebar-card:nth-child(1) {
        animation-delay: 0.4s;
    }
    
    .sidebar-card:nth-child(2) {
        animation-delay: 0.5s;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


@media (prefers-contrast: high) {
    .content-card,
    .sidebar-card,
    .related-card {
        border: 2px solid #000000;
    }
    
    .service-badge {
        border: 2px solid #000000;
    }
}
