/* Services Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Syne', sans-serif;
    background-image: url('../images/background-website.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
}


/* Hero & Mission Section */
.hero-mission-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 2rem 4rem;
    max-width: 1500px;
    margin: 0 auto;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
    position: relative;
    margin-bottom: 4rem;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1rem;
    color: #b0bec5;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

/* Decorative Elements */
.hero-bg-decoration {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(100, 181, 246, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

.mission-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.1) 0%, rgba(100, 181, 246, 0.1) 100%);
    border-radius: 20px;
    z-index: -1;
}

.mission-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.mission-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #b0bec5;
    text-align: justify;
    max-width: 900px;
    margin: 0 auto;
}

/* Recovery Process Section */
.recovery-process-section {
    padding: 0rem 2rem;
    max-width: 1500px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    margin-bottom: 4rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    align-items: start;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-icon {
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Makes the image white */
    transition: all 0.3s ease;
}

.process-step:hover .step-image {
    filter: brightness(0) invert(1); /* Keeps the image white on hover */
    transform: scale(1.1);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.step-description {
    font-size: 0.95rem;
    color: #b0bec5;
    line-height: 1.6;
    margin: 0;
}

.step-decoration {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
    background: linear-gradient(135deg, rgba(100, 181, 246, 0.2) 0%, rgba(156, 39, 176, 0.2) 100%);
    border-radius: 30px 30px 0 0;
    filter: blur(2px);
}

/* Our Capabilities & CTA Section */
.capabilities-cta-section {
    padding: 6rem 2rem;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}

.capabilities-cta-section::before {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(100, 181, 246, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

.capabilities-cta-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.1) 0%, rgba(100, 181, 246, 0.1) 100%);
    border-radius: 50%;
    filter: blur(30px);
    z-index: 1;
}

.capabilities-container {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.capabilities-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.capability-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.capability-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(100, 181, 246, 0.3);
    transform: translateY(-2px);
}

.capability-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64b5f6;
    flex-shrink: 0;
}

.capability-text {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

.cta-container {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.1rem;
    color: #b0bec5;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(135deg, #64b5f6 0%, #9c27b0 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Syne', sans-serif;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(100, 181, 246, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-mission-section {
        padding: 100px 1rem 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .mission-title {
        font-size: 2rem;
    }
    
    .recovery-process-section {
        padding: 4rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .process-step {
        height: 250px;
    }
    
    .step-image {
        width: 60px;
        height: 60px;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-mission-section {
        padding: 80px 1rem 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .mission-card {
        padding: 2rem;
    }
    
    .mission-title {
        font-size: 1.75rem;
    }
    
    .recovery-process-section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step {
        height: 220px;
    }
    
    .step-image {
        width: 50px;
        height: 50px;
    }
    
    .step-title {
        font-size: 1rem;
    }
    
    .step-description {
        font-size: 0.85rem;
    }
    
    .capabilities-cta-section {
        padding: 4rem 1rem;
    }
    
    .capabilities-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .capability-item {
        padding: 1.25rem;
    }
    
    .capability-text {
        font-size: 0.95rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}
