/* Service Detail Page Styles */
.service-detail-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.service-content {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.service-content .image-box {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.service-content .image-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.service-content .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-content:hover .image-box img {
    transform: scale(1.05);
}

.service-content .content-box {
    padding: 40px;
}

.service-content .content-box h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.service-content .content-box h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.service-content:hover .content-box h2::after {
    width: 120px;
}

.service-content .content-box p {
    color: #666666;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 30px;
}

/* Feature List */
.feature-list {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.feature-list h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.feature-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list ul li {
    margin-bottom: 15px;
    color: #666666;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.feature-list ul li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 20px;
    transition: all 0.3s ease;
}

.feature-list ul li:hover i {
    transform: scale(1.2);
    color: var(--secondary-color);
}

/* Process Box */
.process-box {
    margin-top: 50px;
}

.process-box h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.process-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.process-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.process-item .icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.process-item:hover .icon-box {
    transform: rotateY(180deg);
}

.process-item .icon-box i {
    font-size: 32px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.process-item:hover .icon-box i {
    transform: rotateY(-180deg);
}

.process-item h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.process-item p {
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.service-categories {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.service-categories h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.service-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-categories ul li {
    margin-bottom: 10px;
}

.service-categories ul li a {
    display: block;
    padding: 15px 25px;
    color: #555555;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid transparent;
    position: relative;
    z-index: 1;
}

.service-categories ul li a:hover,
.service-categories ul li a.active {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateX(15px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-categories ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    opacity: 0;
    z-index: -1;
    transition: all 0.3s ease;
}

.service-categories ul li a:hover::before,
.service-categories ul li a.active::before {
    opacity: 1;
}

.service-categories ul li a:hover,
.service-categories ul li a.active {
    transform: translateX(15px);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: #113280;
}

.contact-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 30px;
    border-radius: 15px;
    color: #ffffff;
}

.contact-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-box p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.contact-box .phone,
.contact-box .email {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-box .phone i,
.contact-box .email i {
    margin-right: 10px;
}

.contact-box .phone:hover,
.contact-box .email:hover {
    transform: translateX(10px);
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/background/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    padding: 100px 0;
}

.cta-box {
    padding: 60px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.2) 0%, rgba(var(--secondary-color-rgb), 0.2) 100%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.theme-btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.theme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .service-detail-section {
        padding: 70px 0;
    }
    
    .service-content .image-box {
        height: 300px;
    }
    
    .service-content .content-box {
        padding: 30px;
    }
    
    .service-content .content-box h2 {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-box {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .service-detail-section {
        padding: 50px 0;
    }
    
    .service-content .image-box {
        height: 250px;
    }
    
    .service-content .content-box {
        padding: 25px;
    }
    
    .service-content .content-box h2 {
        font-size: 24px;
    }
    
    .feature-list {
        padding: 20px;
    }
    
    .feature-list h3 {
        font-size: 20px;
    }
    
    .process-item {
        padding: 20px;
    }
    
    .cta-box {
        padding: 30px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .theme-btn {
        padding: 12px 25px;
    }
} 