/* Service Detail Pages CSS */
.service-details-section {
    padding: 80px 0;
}

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

.service-details-image img {
    width: 100%;
    height: auto;
}

.service-details-text h2 {
    color: var(--title-color);
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
}

.service-details-text h3 {
    color: var(--title-color);
    margin: 30px 0 15px;
    font-size: 24px;
    font-weight: 600;
}

.service-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-feature-item .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--theme), var(--theme2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.service-feature-item .icon i {
    font-size: 24px;
    color: white;
}

.service-feature-item .content h4 {
    color: var(--title-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-feature-item .content p {
    color: var(--text);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    color: var(--text);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li i {
    color: var(--theme-color3);
    margin-right: 10px;
    font-size: 16px;
}

.process-step {
    text-align: center;
    margin-bottom: 30px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--theme), var(--theme2));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.process-step h4 {
    color: var(--title-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
}

/* Sidebar Styles */
.service-sidebar {
    padding-left: 30px;
}

.service-widget {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.service-widget h3 {
    color: var(--title-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--theme-color3);
}

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

.service-list-sidebar li {
    margin-bottom: 10px;
}

.service-list-sidebar a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--text);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.service-list-sidebar a:hover,
.service-list-sidebar a.active {
    background: var(--golden-color);
    color: white;
    transform: translateX(5px);
}

.service-list-sidebar a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.quote-form .form-group {
    margin-bottom: 20px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    color: var(--text);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--theme);
    box-shadow: 0 0 0 3px rgba(27, 54, 93, 0.1);
}

.theme-btn {
    background: linear-gradient(135deg, var(--theme), var(--theme2));
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.theme-btn:hover {
    background: linear-gradient(135deg, var(--theme2), var(--theme));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(27, 54, 93, 0.3);
    color: white;
}

/* Benefit and Stats Styling */
.benefit-item,
.stat-item,
.approach-item {
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.benefit-icon,
.approach-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--theme-color3), #DAA520);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.benefit-icon i,
.approach-icon i {
    font-size: 28px;
    color: white;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--theme);
    margin-bottom: 10px;
}

.benefit-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    border-left: 4px solid var(--theme-color3);
}

.benefit-card h4 {
    color: var(--title-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.benefit-card h4 i {
    margin-right: 10px;
}

/* Technology Stack and Tools */
.tech-stack .tech-category,
.design-tools .tool-category {
    margin-bottom: 20px;
}

.tech-stack h4,
.design-tools h4 {
    color: var(--title-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.tech-items,
.tool-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag,
.tool-tag {
    background: var(--bg);
    color: var(--text);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e0e0e0;
}

/* Emergency Contact */
.emergency-contact {
    text-align: center;
}

.emergency-number {
    background: #dc3545;
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    margin: 15px 0;
}

.emergency-number i {
    margin-right: 10px;
}

.emergency-email {
    color: var(--theme);
    text-decoration: none;
    font-weight: 600;
}

.emergency-email:hover {
    color: var(--theme2);
}

.emergency-email i {
    margin-right: 8px;
}

/* App Types */
.app-type-item {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
}

.app-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--theme), var(--theme2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.app-icon i {
    font-size: 24px;
    color: white;
}

.app-type-item h4 {
    color: var(--title-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.app-type-item p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
}

/* Download Links */
.download-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.download-link:hover {
    background: var(--theme);
    color: white;
    transform: translateX(5px);
}

.download-link i {
    margin-right: 10px;
    font-size: 18px;
}

/* Why Choose Section */
.advantage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    color: var(--text);
}

.advantage-list li i {
    color: var(--theme-color3);
    margin-right: 10px;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-sidebar {
        padding-left: 0;
        margin-top: 50px;
    }
    
    .service-feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-feature-item .icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .tech-items,
    .tool-items {
        justify-content: center;
    }
}
