/* Software Development 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);
    --software-teal: #6A0DAD;
    --software-gradient: #6A0DAD;
    --code-blue: #2563eb;
    --agile-orange: #f97316;
}

/* Service Hero Section */
.service-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f0fdfa 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(13, 148, 136, 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(--software-teal);
}

.breadcrumb-separator {
    margin: 0 10px;
    color: var(--text-light);
}

.breadcrumb .current {
    color: var(--software-teal);
    font-weight: 600;
}

/* Service Hero Text */
.service-hero-text {
    animation: fadeInLeft 0.8s ease-out;
}

.service-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: var(--software-gradient);
    -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(--software-teal);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    border-color: var(--software-teal);
    background: var(--software-gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.2);
}

.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: var(--software-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--software-teal);
    border-color: var(--software-teal);
}

.btn-secondary:hover {
    background: var(--software-gradient);
    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(13, 148, 136, 0.1), transparent);
}

/* Software Consultation Section */
.software-consultation {
    padding: 80px 0;
    background: var(--background-light);
}

.consultation-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.consultation-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.consultation-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.consultation-steps {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
}

.step {
    display: none;
}

.step.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.software-options,
.goal-options,
.timeline-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 2rem;
}

.software-option,
.goal-option,
.timeline-option {
    background: var(--background-light);
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.software-option:hover,
.goal-option:hover,
.timeline-option:hover {
    transform: translateY(-5px);
    border-color: var(--software-teal);
    box-shadow: var(--shadow-medium);
}

.software-option.selected,
.goal-option.selected,
.timeline-option.selected {
    background: var(--software-gradient);
    color: white;
    transform: translateY(-5px);
}

.option-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.software-option span,
.goal-option span,
.timeline-option span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Consultation Result */
.consultation-result {
    display: none;
    text-align: left;
}

.consultation-result.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--background-light);
}

.result-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.scale-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.scale-badge.small {
    background: #10b981;
    color: white;
}

.scale-badge.moderate {
    background: var(--software-teal);
    color: white;
}

.scale-badge.large {
    background: var(--code-blue);
    color: white;
}

.scale-badge.enterprise {
    background: var(--agile-orange);
    color: white;
}

.strategy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 3rem;
}

.development-plan h4,
.development-package h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.plan-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plan-step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--software-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.step-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.package-card {
    background: var(--background-light);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--software-teal);
}

.package-type {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.type-icon {
    font-size: 2rem;
}

.type-info h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.type-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.package-features li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.package-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--software-teal);
    font-weight: bold;
}

.package-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.package-pricing .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--software-teal);
}

.package-pricing .timeline {
    font-size: 0.9rem;
    color: var(--text-light);
}

.result-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.consultation-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 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(--software-teal);
}

.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;
}

/* Development Methodologies */
.development-methodologies {
    margin-bottom: 4rem;
}

.development-methodologies h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.methodology-card {
    background: var(--background-light);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.methodology-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.methodology-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--software-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.methodology-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--software-teal);
    margin-bottom: 1.5rem;
}

.methodology-card ul {
    list-style: none;
    padding: 0;
}

.methodology-card li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.methodology-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--software-teal);
    font-weight: bold;
}

/* Development Process */
.development-process {
    margin-bottom: 4rem;
}

.development-process h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.process-flow {
    display: grid;
    gap: 20px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--background-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-light);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--software-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Technology Stack */
.technology-stack {
    margin-bottom: 4rem;
}

.technology-stack h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.tech-categories {
    display: grid;
    gap: 30px;
}

.tech-category {
    background: var(--background-light);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.tech-category h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--software-teal);
    margin-bottom: 1.5rem;
    text-align: center;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tech-tag {
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: var(--software-gradient);
    color: white;
    border-color: var(--software-teal);
    transform: translateY(-2px);
}

/* Sidebar */
.details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-package-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.service-package-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.package-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 2rem;
}

.package-option {
    background: var(--background-light);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.package-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.package-option.featured {
    border-color: var(--software-teal);
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.05), white);
    position: relative;
}

.package-option.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--software-gradient);
    color: white;
    padding: 4px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.option-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.option-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--software-teal);
}

.option-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.option-features li {
    padding: 5px 0;
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.option-features li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--software-teal);
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* Maintenance Support */
.maintenance-support {
    background: var(--background-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.maintenance-support h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.support-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.support-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    text-align: left;
}

.support-icon {
    font-size: 1.5rem;
}

.support-info {
    display: flex;
    flex-direction: column;
}

.support-info strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.support-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Success Metrics */
.success-metrics {
    background: var(--software-gradient);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.success-metrics h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
}

.metric-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.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(--software-teal);
}

.contact-link.whatsapp:hover {
    background: #25D366;
    color: white;
}

/* Industry Solutions Section */
.industry-solutions {
    padding: 80px 0;
    background: var(--background-light);
}

.industry-solutions h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.solutions-grid .solution-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.solutions-grid .solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.solutions-grid .solution-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.solutions-grid .solution-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.solutions-grid .solution-card li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.solutions-grid .solution-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--software-teal);
    font-weight: bold;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: white;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--background-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--software-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.service-cta {
    padding: 100px 0;
    background: var(--software-gradient);
    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(--software-teal);
}

.service-cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.service-cta .btn-secondary:hover {
    background: white;
    color: var(--software-teal);
}

/* Tech Note */
.tech-note {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

/* 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);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .service-hero-content {
        gap: 40px;
    }
    
    .details-grid {
        gap: 40px;
    }
    
    .strategy-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@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;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr 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;
    }
    
    .consultation-steps {
        padding: 30px 20px;
    }
    
    .software-options,
    .goal-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-options {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .tech-tags {
        justify-content: flex-start;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .result-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .consultation-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-actions,
    .cta-actions,
    .result-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .metrics {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@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-options,
    .goal-options {
        grid-template-columns: 1fr;
    }
    
    .details-content h2,
    .industry-solutions h2,
    .why-choose-us h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .feature-grid,
    .methodology-grid {
        gap: 20px;
    }
    
    .feature-item,
    .methodology-card {
        padding: 20px;
    }
    
    .consultation-steps {
        padding: 20px 15px;
    }
    
    .tech-category {
        padding: 20px;
    }
    
    .tech-tags {
        justify-content: center;
    }
}



















/* Enhanced Business Solutions Styles */
.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.solution-card {
    background: var(--bg-secondary);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.solution-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.solution-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.solution-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-card li {
    padding: 0.3rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.solution-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Custom Solutions CTA */
.custom-solutions-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    padding: 3rem;
    margin-top: 4rem;
    color: white;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.custom-solution-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.custom-solution-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.custom-solution-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: rgb(98, 0, 155);
}

.custom-solution-text p {
    color: rgb(103, 6, 176);
    line-height: 1.6;
}

.custom-solution-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.custom-solution-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.5rem;
}

.whatsapp-btn {
    background: #25D366;
    border-color: #25D366;
}

.whatsapp-btn:hover {
    background: #128C7E;
    border-color: #128C7E;
}

/* Responsive Design */
@media (max-width: 992px) {
    .custom-solutions-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .custom-solution-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-solutions-cta {
        padding: 2rem;
    }
}