/* Service Item Page Styles */

.service-detail {
    padding: 60px 0;
}

.service-hero {
    background: linear-gradient(135deg, rgba(var(--theme-color-0), 0.1), rgba(var(--theme-color-3), 0.1));
    padding: 40px 0;
    margin-bottom: 40px;
    border-radius: 15px;
}

.service-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(var(--theme-color-2), 1);
    margin-bottom: 1rem;
    text-align: center;
}

.service-subtitle {
    font-size: 1.2rem;
    color: rgba(var(--theme-color-4), 1);
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(var(--theme-color-4), 1);
    margin-bottom: 3rem;
    text-align: center;
}

.service-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(var(--theme-color-1), 1);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid rgba(var(--theme-color-0), 1);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.feature-item i {
    margin-right: 1rem;
    margin-top: 0.5rem;
    min-width: 40px;
}

.feature-item h5 {
    color: rgba(var(--theme-color-2), 1);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    color: rgba(var(--theme-color-4), 1);
    margin: 0;
    line-height: 1.6;
}

.service-sidebar {
    background: rgba(var(--theme-color-1), 1);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.service-sidebar h4 {
    color: rgba(var(--theme-color-2), 1);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.process-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(var(--theme-color-0), 1);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 0.9rem;
    min-width: 35px;
}

.process-step h6 {
    margin-bottom: 0.25rem;
    color: rgba(var(--theme-color-2), 1);
    font-weight: 600;
}

.process-step p {
    margin: 0;
    color: rgba(var(--theme-color-4), 1);
    font-size: 0.9rem;
}

.cloud-provider {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(var(--theme-color-0), 0.05);
    transition: transform 0.3s ease;
}

.cloud-provider:hover {
    transform: scale(1.05);
}

.cloud-provider h6 {
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    color: rgba(var(--theme-color-2), 1);
    font-weight: 600;
}

.cloud-provider p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(var(--theme-color-4), 1);
}

.metric-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.metric-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.metric-item i {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    min-width: 24px;
}

.metric-item h6 {
    margin-bottom: 0.25rem;
    color: rgba(var(--theme-color-2), 1);
    font-weight: 600;
    font-size: 0.95rem;
}

.metric-item p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(var(--theme-color-4), 1);
}

.service-cta {
    background: linear-gradient(45deg, rgba(var(--theme-color-0), 1), rgba(var(--theme-color-3), 1));
    color: white;
    padding: 3rem 0;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.service-cta h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta {
    background: white;
    color: rgba(var(--theme-color-0), 1);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: rgba(var(--theme-color-1), 1);
    color: rgba(var(--theme-color-0), 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.breadcrumb-service-text {
    color: rgba(var(--theme-color-0), 1);
    font-weight: 600;
}

/* Mobile Apps Specific Styles */
.compatibility-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: rgba(var(--theme-color-1), 1);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.compatibility-item:hover {
    transform: translateY(-2px);
}

.compatibility-item i {
    margin-right: 1rem;
    flex-shrink: 0;
}

.compatibility-item div {
    flex: 1;
}

.compatibility-item h6 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: rgba(var(--theme-color-2), 1);
}

.compatibility-item p {
    margin: 0;
    color: rgba(var(--theme-color-4), 1);
    font-size: 0.95rem;
}

.includes-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: rgba(var(--theme-color-1), 1);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.includes-item:hover {
    transform: translateY(-2px);
}

.includes-item i {
    margin-right: 1rem;
    flex-shrink: 0;
}

.includes-item div {
    flex: 1;
}

.includes-item h6 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: rgba(var(--theme-color-2), 1);
}

.includes-item p {
    margin: 0;
    color: rgba(var(--theme-color-4), 1);
    font-size: 0.95rem;
}

.technology-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(var(--theme-color-1), 1);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.technology-item:hover {
    transform: translateY(-2px);
}

.technology-item i {
    margin-right: 1rem;
    flex-shrink: 0;
}

.technology-item div {
    flex: 1;
}

.technology-item h6 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: rgba(var(--theme-color-2), 1);
}

.technology-item p {
    margin: 0;
    color: rgba(var(--theme-color-4), 1);
    font-size: 0.95rem;
}

/* Pricing Section Styles */
.pricing-section {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #eee;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: rgba(var(--theme-color-1), 1);
    border: 2px solid rgba(var(--theme-color-0), 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    border-color: rgba(var(--theme-color-0), 1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(var(--theme-color-0), 0.15);
}

.pricing-card.featured {
    border-color: rgba(var(--theme-color-0), 1);
    background: linear-gradient(135deg, rgba(var(--theme-color-0), 0.05), rgba(var(--theme-color-3), 0.05));
}

.pricing-card.featured::before {
    content: "Más Popular";
    position: absolute;
    top: 20px;
    right: -30px;
    background: rgba(var(--theme-color-0), 1);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-card h5 {
    color: rgba(var(--theme-color-2), 1);
    margin-bottom: 1rem;
    font-weight: 600;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(var(--theme-color-0), 1);
    margin-bottom: 0.5rem;
}

.pricing-card .price-subtitle {
    color: rgba(var(--theme-color-4), 1);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-card .description {
    color: rgba(var(--theme-color-4), 1);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pricing-card .time-badge {
    background: rgba(var(--theme-color-0), 0.1);
    color: rgba(var(--theme-color-0), 1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

/* Additional Info Section */
.additional-info {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #eee;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: rgba(var(--theme-color-1), 1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h5 {
    color: rgba(var(--theme-color-2), 1);
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-card p {
    color: rgba(var(--theme-color-4), 1);
    line-height: 1.6;
    margin: 0;
}

/* Quick Contact Sidebar */
.quick-contact {
    background: linear-gradient(135deg, rgba(var(--theme-color-0), 1), rgba(var(--theme-color-3), 1));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
}

.quick-contact h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.quick-contact p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.quick-contact .btn {
    background: white;
    color: rgba(var(--theme-color-0), 1);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.quick-contact .btn:hover {
    background: rgba(var(--theme-color-1), 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-info i {
    margin-right: 0.5rem;
    width: 20px;
}

/* Custom Service Section */
.custom-service-benefits {
    margin: 3rem 0;
    padding: 3rem 0;
    background: rgba(var(--theme-color-1), 1);
    border-radius: 15px;
}

.custom-service-benefits h3 {
    text-align: center;
    color: rgba(var(--theme-color-2), 1);
    margin-bottom: 3rem;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h5 {
    color: rgba(var(--theme-color-2), 1);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    color: rgba(var(--theme-color-4), 1);
    line-height: 1.6;
    margin: 0;
}

/* Consultation Section Styles */
#consultation-section {
    background: rgba(var(--theme-color-0), 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

#consultation-section h5 {
    color: rgba(var(--theme-color-0), 1);
    font-weight: 600;
}

#consultation-benefits {
    list-style: none;
    padding: 0;
}

#consultation-benefits li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(var(--theme-color-0), 0.1);
}

#consultation-benefits li:last-child {
    border-bottom: none;
}

#consultation-benefits li .bx-check-circle {
    color: rgba(var(--theme-color-0), 1);
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-title {
        font-size: 2rem;
    }
    
    .service-subtitle {
        font-size: 1.1rem;
    }
    
    .service-sidebar {
        position: static;
        margin-top: 2rem;
        top: auto;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item i {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .metric-item {
        flex-direction: column;
        text-align: center;
    }
    
    .metric-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .pricing-container {
        grid-template-columns: 1fr;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .quick-contact {
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-service-benefits {
        padding: 2rem 1rem;
    }
}

@media (max-width: 576px) {
    .service-detail {
        padding: 30px 0;
    }
    
    .service-hero {
        padding: 20px 0;
        margin-bottom: 20px;
    }
    
    .service-title {
        font-size: 1.75rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .service-sidebar {
        padding: 1.5rem;
    }
}
