/* Modern Service Detail Page Styling */

/* Hero Section */
.service-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') repeat;
    opacity: 0.03;
}

.service-hero-content {
    position: relative;
    z-index: 2;
}

.service-category-badge {
    display: inline-block;
    background: #ffc326;
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.service-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-hero .lead {
    font-size: 20px;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.hero-feature-item i {
    font-size: 24px;
    color: #ffc326;
}

.hero-feature-item span {
    font-size: 16px;
    font-weight: 500;
}

.hero-cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-cta-buttons .theme_button {
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.hero-cta-buttons .theme_button.color1 {
    background: #ffc326;
    border: 2px solid #ffc326;
    color: #1a1a1a;
}

.hero-cta-buttons .theme_button.color1:hover {
    background: #ffb800;
    border-color: #ffb800;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 195, 38, 0.4);
}

.hero-cta-buttons .theme_button.inverse {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.hero-cta-buttons .theme_button.inverse:hover {
    background: #ffffff;
    color: #1a1a1a;
}

/* Service Content Section */
.service-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-main-content {
    background: #ffffff;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.service-main-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-image-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-main-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ffc326;
}

.service-main-content h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 20px;
}

.service-main-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-main-content .lead {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: 30px;
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #ffc326;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.feature-box i {
    font-size: 32px;
    color: #ffc326;
    margin-bottom: 15px;
    display: block;
}

.feature-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Service List Styling */
.service-main-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-main-content ul li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.service-main-content ul li:before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    top: 12px;
    color: #ffc326;
    font-size: 16px;
}

/* CTA Box */
.service-cta-box {
    background: linear-gradient(135deg, #ffc326 0%, #ffb800 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 10px 40px rgba(255, 195, 38, 0.3);
}

.service-cta-box h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-cta-box p {
    font-size: 18px;
    color: #333;
    margin-bottom: 25px;
}

.service-cta-box .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-cta-box .theme_button {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.service-cta-box .theme_button.inverse {
    background: #1a1a1a;
    border: 2px solid #1a1a1a;
    color: #ffffff;
}

.service-cta-box .theme_button.inverse:hover {
    background: transparent;
    color: #1a1a1a;
}

.service-cta-box .theme_button.outline {
    background: transparent;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
}

.service-cta-box .theme_button.outline:hover {
    background: #1a1a1a;
    color: #ffffff;
}

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

.sidebar-widget {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.sidebar-widget h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ffc326;
}

/* Contact Widget */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: #ffc326;
    transform: translateX(5px);
}

.contact-info-item i {
    font-size: 24px;
    color: #ffc326;
    min-width: 30px;
}

.contact-info-item:hover i {
    color: #1a1a1a;
}

.contact-info-item .info-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 5px 0;
}

.contact-info-item .info-content p {
    font-size: 15px;
    color: #555;
    margin: 0;
}

.contact-info-item .info-content a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
}

.contact-info-item:hover .info-content p,
.contact-info-item:hover .info-content a {
    color: #1a1a1a;
}

/* Related Services Widget */
.related-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-services-list li {
    margin-bottom: 12px;
}

.related-services-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.related-services-list li a:hover {
    background: #ffc326;
    color: #1a1a1a;
    transform: translateX(5px);
}

.related-services-list li.active a {
    background: #ffc326;
    color: #1a1a1a;
    font-weight: 600;
}

.related-services-list li a i {
    font-size: 16px;
}

/* Why Choose Us Section */
.why-choose-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.why-choose-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    text-align: center;
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    border-color: #ffc326;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.why-choose-item i {
    font-size: 48px;
    color: #ffc326;
    margin-bottom: 20px;
}

.why-choose-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.why-choose-item p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
    .service-hero h1 {
        font-size: 38px;
    }
    
    .service-main-content {
        padding: 35px;
    }
    
    .service-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .service-hero {
        padding: 60px 0 50px;
    }
    
    .service-hero h1 {
        font-size: 32px;
    }
    
    .service-main-content {
        padding: 25px;
    }
    
    .service-main-content h2 {
        font-size: 28px;
    }
    
    .service-main-content h3 {
        font-size: 24px;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .hero-cta-buttons .theme_button {
        width: 100%;
        text-align: center;
    }
    
    .service-cta-box .cta-buttons {
        flex-direction: column;
    }
    
    .service-cta-box .theme_button {
        width: 100%;
    }
    
    .service-image-container {
        height: 300px;
    }
}
