/* Data Backup & Recovery 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;
    --error-red: #ef4444;
    --info-blue: #8B5FBF;
    --backup-blue: #5a0a95;
}

/* Service Hero Section */
.service-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 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(59, 130, 246, 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(--backup-blue);
    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: linear-gradient(135deg, var(--backup-blue), #3b82f6);
    -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 #dbeafe;
    border-radius: 50px;
    font-weight: 600;
    color: var(--backup-blue);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    border-color: var(--backup-blue);
    background: var(--backup-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 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: linear-gradient(135deg, var(--backup-blue), #3b82f6);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--backup-blue);
    border-color: var(--backup-blue);
}

.btn-secondary:hover {
    background: var(--backup-blue);
    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(37, 99, 235, 0.1), transparent);
}

/* Data Protection Analyzer Section */
.data-protection-analyzer {
    padding: 80px 0;
    background: var(--background-light);
}

.analyzer-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.analyzer-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.analyzer-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.analyzer-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;
}

.data-options,
.concern-options,
.size-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 2rem;
}

.data-option,
.concern-option,
.size-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;
}

.data-option:hover,
.concern-option:hover,
.size-option:hover {
    transform: translateY(-5px);
    border-color: var(--backup-blue);
    box-shadow: var(--shadow-medium);
}

.data-option.selected,
.concern-option.selected,
.size-option.selected {
    background: var(--backup-blue);
    color: white;
    transform: translateY(-5px);
}

.option-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.data-option span,
.concern-option span,
.size-option span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Analyzer Result */
.analyzer-result {
    display: none;
    text-align: left;
}

.analyzer-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;
}

.level-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.level-badge.critical {
    background: var(--error-red);
    color: white;
}

.level-badge.high {
    background: var(--warning-orange);
    color: white;
}

.level-badge.medium {
    background: var(--info-blue);
    color: white;
}

.level-badge.low {
    background: var(--success-green);
    color: white;
}

.analysis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 3rem;
}

.protection-plan h4,
.professional-solution 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(--backup-blue);
    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;
}

.solution-card {
    background: var(--background-light);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--backup-blue);
}

.solution-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;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.solution-features li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.solution-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--backup-blue);
    font-weight: bold;
}

.solution-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.solution-pricing .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--backup-blue);
}

.solution-pricing .duration {
    font-size: 0.9rem;
    color: var(--text-light);
}

.result-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.analyzer-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(--backup-blue);
}

.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;
}

/* Common Scenarios */
.common-scenarios {
    margin-bottom: 4rem;
}

.common-scenarios h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.scenario-category {
    background: var(--background-light);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.scenario-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.scenario-category h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--backup-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.scenario-category ul {
    list-style: none;
    padding: 0;
}

.scenario-category li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.scenario-category li:before {
    content: '⚠️';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

/* Backup Strategies */
.backup-strategies {
    margin-bottom: 4rem;
}

.backup-strategies h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.strategy-flow {
    display: grid;
    gap: 20px;
}

.strategy-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--background-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.strategy-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-light);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--backup-blue);
    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;
}

/* Recovery Metrics */
.recovery-metrics {
    margin-bottom: 4rem;
}

.recovery-metrics h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.metric-card {
    background: linear-gradient(135deg, var(--backup-blue), #3b82f6);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}

.metric-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.metric-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metric-content p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Sidebar */
.details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-package-card {
    background: linear-gradient(135deg, var(--backup-blue), #3b82f6);
    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-price .period {
    font-size: 1rem;
    opacity: 0.9;
}

.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;
}

/* Emergency Support */
.emergency-support {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.emergency-support h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.emergency-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.emergency-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.emergency-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.emergency-text {
    display: flex;
    flex-direction: column;
}

.emergency-text strong {
    font-size: 1rem;
    margin-bottom: 2px;
}

.emergency-text span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Backup Types */
.backup-types {
    background: var(--background-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.backup-types h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.backup-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.backup-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    text-align: left;
}

.backup-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.backup-info {
    display: flex;
    flex-direction: column;
}

.backup-info strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.backup-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.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(--backup-blue);
}

.contact-link.whatsapp:hover {
    background: #25D366;
    color: white;
}

/* Storage Solutions Section */
.storage-solutions {
    padding: 80px 0;
    background: var(--background-light);
}

.storage-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;
    border: none;
}

.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(--backup-blue);
    font-weight: bold;
}

/* CTA Section */
.service-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--backup-blue), #3b82f6);
    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(--backup-blue);
}

.service-cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.service-cta .btn-secondary:hover {
    background: white;
    color: var(--backup-blue);
}

/* 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);
    }
}

/* Security Note */
.security-note {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .service-hero-content {
        gap: 40px;
    }
    
    .details-grid {
        gap: 40px;
    }
    
    .analysis-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;
    }
    
    .scenarios-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-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;
    }
    
    .analyzer-steps {
        padding: 30px 20px;
    }
    
    .data-options,
    .concern-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .size-options {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .strategy-step {
        flex-direction: column;
        text-align: center;
    }
    
    .backup-options {
        flex-direction: column;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .result-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .analyzer-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;
    }
}

@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;
    }
    
    .data-options,
    .concern-options {
        grid-template-columns: 1fr;
    }
    
    .details-content h2,
    .storage-solutions h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .feature-grid,
    .scenarios-grid {
        gap: 20px;
    }
    
    .feature-item,
    .scenario-category {
        padding: 20px;
    }
    
    .analyzer-steps {
        padding: 20px 15px;
    }
}