/* Service Detail Page Styles */

.service-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.service-hero .hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-hero .hero-content {
    text-align: left;
    color: white;
    margin-bottom: 40px;
}

.service-hero .hero-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.service-hero .breadcrumb-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    flex-wrap: wrap;
}

.service-hero .breadcrumb-bottom a {
    color: #F26B0F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-hero .breadcrumb-bottom a:hover {
    color: #ffffff;
}

.service-hero .breadcrumb-divider {
    color: rgba(255, 255, 255, 0.6);
}

.service-hero .breadcrumb-current {
    color: rgba(255, 255, 255, 0.8);
}

/* Service Overview Section */
.service-overview {
    padding: 80px 20px;
    background: #ffffff;
}

.overview-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.overview-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 20px;
    color: #1B1D21;
}

.overview-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #6B7280;
    margin: 0;
}

.overview-features {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #1B1D21;
}

.feature-item p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* Service Process Section */
.service-process {
    padding: 80px 20px;
    background: #F7F7F8;
}

.service-process .container {
    max-width: 1400px;
    margin: 0 auto;
}

.service-process h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 60px;
    color: #1B1D21;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.process-step {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #F26B0F;
    margin: 0 0 15px;
    opacity: 0.3;
}

.process-step h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #1B1D21;
}

.process-step p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* Service Included Section */
.service-included {
    padding: 80px 20px;
    background: #ffffff;
}

.service-included .container {
    max-width: 1400px;
    margin: 0 auto;
}

.service-included h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 60px;
    color: #1B1D21;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.included-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #1B1D21;
}

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

.included-item li {
    font-size: 14px;
    color: #6B7280;
    line-height: 2;
    position: relative;
    padding-left: 20px;
}

.included-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F26B0F;
    font-weight: bold;
}

/* Design Styles Section */
.design-styles {
    padding: 80px 20px;
    background: #F7F7F8;
}

.design-styles .container {
    max-width: 1400px;
    margin: 0 auto;
}

.design-styles h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 60px;
    color: #1B1D21;
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.style-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.style-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.style-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #1B1D21;
}

.style-card p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Section */
.service-why-choose {
    padding: 80px 20px;
    background: #ffffff;
}

.service-why-choose .container {
    max-width: 1400px;
    margin: 0 auto;
}

.service-why-choose h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 60px;
    color: #1B1D21;
}

.why-choose-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.why-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #1B1D21;
}

.why-item p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.service-faq {
    padding: 80px 20px;
    background: #ffffff;
}

.service-faq .container {
    max-width: 1400px;
    margin: 0 auto;
}

.service-faq h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 15px;
    color: #1B1D21;
}

.faq-subtitle {
    text-align: center;
    font-size: 16px;
    color: #6B7280;
    margin: 0 0 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #F26B0F;
    box-shadow: 0 4px 12px rgba(242, 107, 15, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: #F9F9F9;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #1B1D21;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #F0F0F0;
}

.faq-item.active .faq-question {
    background: #F26B0F;
    color: #ffffff;
}

.faq-icon {
    font-size: 24px;
    font-weight: 600;
    color: #F26B0F;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.faq-item.active .faq-icon {
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 30px;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #6B7280;
    background: #fafafa;
}

/* CTA Section */
.service-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #F26B0F 0%, #D65A08 100%);
    color: white;
    text-align: center;
}

.service-cta .container {
    max-width: 1400px;
    margin: 0 auto;
}

.service-cta h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 15px;
    letter-spacing: -0.5px;
}

.service-cta p {
    font-size: 18px;
    margin: 0 0 30px;
    opacity: 0.95;
}

.service-cta .btn {
    font-size: 16px;
    padding: 15px 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .service-hero {
        padding: 80px 20px;
        min-height: auto;
    }

    .service-hero-title {
        font-size: 36px;
    }

    .service-hero-subtitle {
        font-size: 16px;
    }

    .overview-content h2 {
        font-size: 32px;
    }

    .overview-content p {
        font-size: 14px;
    }

    .service-process h2,
    .service-included h2,
    .design-styles h2,
    .service-why-choose h2,
    .service-faq h2,
    .service-cta h2 {
        font-size: 32px;
    }

    .process-steps,
    .included-grid,
    .styles-grid,
    .why-choose-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 14px;
    }

    .faq-answer p {
        padding: 20px;
        font-size: 13px;
    }
}
