/* Software Installation Service Page Specific Styles */
:root {
    --primary-purple: #6A0DAD;
    --primary-dark: #5a0a95;
    --secondary-purple: #8B5FBF;
    --accent-purple: #9D4EDD;
    --text-dark: #333333;
    --text-light: #666666;
    --background-white: #ffffff;
    --background-light: #f8f9fa;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.1);
    --success-green: #10b981;
    --warning-orange: #f59e0b;
}

/* Service Hero Section */
.service-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(106, 13, 173, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Breadcrumb */
.breadcrumb {
    grid-column: 1 / -1;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-purple);
}

.breadcrumb-separator {
    margin: 0 10px;
    color: var(--text-light);
}

.breadcrumb .current {
    color: var(--primary-purple);
    font-weight: 600;
}

/* Service Hero Text */
.service-hero-text {
    animation: fadeInLeft 0.8s ease-out;
}

.service-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Feature Badges */
.service-hero-features {
    display: flex;
    gap: 15px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    border-color: var(--primary-purple);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.feature-icon {
    font-size: 1.2rem;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    color: white;
    box-shadow: 0 4px 15px rgba(106, 13, 173, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 13, 173, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.btn-secondary:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.1rem;
}

/* Service Hero Visual */
.service-hero-visual {
    animation: fadeInRight 0.8s ease-out;
}

.service-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.service-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-image-container:hover .service-main-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(106, 13, 173, 0.1), transparent);
}

/* Software Selector Section */
.software-selector {
    padding: 80px 0;
    background: var(--background-light);
}

.selector-header {
    text-align: center;
    margin-bottom: 4rem;
}

.selector-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.selector-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.software-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 4rem;
}

.category-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: var(--shadow-light);
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-medium);
}

.category-card.active {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.category-card.active p {
    color: rgba(255, 255, 255, 0.9);
}

.software-details {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.details-placeholder {
    text-align: center;
    color: var(--text-light);
}

.details-placeholder p {
    margin: 0;
    font-size: 1.1rem;
}

/* Software Details Content */
.software-details-content {
    width: 100%;
}

.software-details-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.software-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 3rem;
}

.software-item-detailed {
    background: var(--background-light);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.software-item-detailed:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

.software-item-detailed .software-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.software-item-detailed .software-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.software-item-detailed .software-type {
    font-size: 0.8rem;
    color: var(--text-light);
    background: var(--primary-purple);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
}

.installation-options {
    text-align: center;
}

.installation-options h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Service Details Section */
.service-details {
    padding: 100px 0;
    background: white;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.details-content h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.details-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Features List */
.features-list h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.feature-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 4rem;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--background-light);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-left-color: var(--primary-purple);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Installation Types */
.installation-types {
    margin-bottom: 4rem;
}

.installation-types h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.install-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.install-option {
    background: var(--background-light);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.install-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.install-option.featured {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    color: white;
    transform: scale(1.05);
}

.install-option.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success-green);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.install-option h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.install-option.featured h4 {
    color: white;
}

.install-option ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.install-option li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.install-option li:before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
}

.install-option:not(.featured) li:before {
    color: var(--primary-purple);
}

.install-option.featured li:before {
    color: white;
}

.install-option li.price {
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.install-option.featured li.price {
    border-top-color: rgba(255, 255, 255, 0.2);
}

/* Supported Software */
.supported-software {
    margin-bottom: 4rem;
}

.supported-software h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.software-category {
    background: var(--background-light);
    padding: 25px;
    border-radius: 15px;
}

.software-category h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    text-align: center;
}

.software-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.software-item {
    padding: 8px 12px;
    background: white;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.software-item:hover {
    transform: translateX(5px);
    color: var(--primary-purple);
}

/* Sidebar */
.details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-package-card {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.service-package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.package-price {
    text-align: center;
    margin-bottom: 2rem;
}

.package-price .currency {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.package-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
}

.package-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    padding-left: 25px;
}

.package-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
}

.package-features li:last-child {
    border-bottom: none;
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* Licensing Info */
.licensing-info {
    background: var(--background-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.licensing-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.license-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.license-option {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    padding: 15px;
    background: white;
    border-radius: 10px;
}

.license-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.license-text {
    display: flex;
    flex-direction: column;
}

.license-text strong {
    font-size: 1rem;
    margin-bottom: 2px;
}

.license-text span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Remote Support */
.remote-support {
    background: var(--background-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.remote-support h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.remote-support p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.remote-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 1.5rem;
}

.remote-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.remote-feature .feature-icon {
    font-size: 1.5rem;
}

.contact-sidebar {
    background: var(--background-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.contact-sidebar h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-sidebar p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
    color: var(--primary-purple);
}

.contact-link.whatsapp:hover {
    background: #25D366;
    color: white;
}

/* Installation Process Section */
.installation-process {
    padding: 100px 0;
    background: var(--background-light);
}

.installation-process h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4rem;
}

.process-steps {
    display: grid;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: white;
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--background-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    color: white;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-purple);
}

.pricing-card.featured .price {
    color: white;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    text-align: left;
}

.pricing-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pricing-card:not(.featured) li:before {
    color: var(--primary-purple);
}

.pricing-card.featured li:before {
    color: white;
}

/* CTA Section */
.service-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-cta .btn-primary {
    background: white;
    color: var(--primary-purple);
}

.service-cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.service-cta .btn-secondary:hover {
    background: white;
    color: var(--primary-purple);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .service-hero-content {
        gap: 40px;
    }
    
    .details-grid {
        gap: 40px;
    }
    
    .install-option.featured {
        transform: scale(1);
    }
    
    .install-option.featured:hover {
        transform: translateY(-5px);
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media screen and (max-width: 992px) {
    .service-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-hero-text {
        order: 2;
    }
    
    .service-hero-visual {
        order: 1;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .service-title {
        font-size: 2.8rem;
    }
    
    .install-grid {
        grid-template-columns: 1fr;
    }
    
    .software-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .service-hero {
        padding: 120px 0 60px;
    }
    
    .service-title {
        font-size: 2.3rem;
    }
    
    .service-subtitle {
        font-size: 1.1rem;
    }
    
    .software-categories {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .remote-features {
        grid-template-columns: 1fr;
    }
    
    .license-options {
        gap: 10px;
    }
    
    .license-option {
        padding: 12px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .service-title {
        font-size: 2rem;
    }
    
    .service-hero-features {
        justify-content: center;
    }
    
    .feature-badge {
        flex: 1;
        min-width: 150px;
        justify-content: center;
    }
    
    .software-details {
        padding: 20px;
    }
    
    .details-content h2,
    .installation-process h2,
    .pricing-section h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .feature-grid,
    .install-grid {
        gap: 20px;
    }
    
    .feature-item,
    .install-option {
        padding: 20px;
    }
    
    .software-list-grid {
        grid-template-columns: 1fr;
    }
}