/* Services Page Complete Styles */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.4) 0%, rgba(27, 38, 59, 0.3) 100%), url('../images/services_photo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #0d1b2a;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.2) 0%, rgba(27, 38, 59, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #e0e1dd;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: #e0e1dd;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0d1b2a;
}

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

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #e0e1dd 100%);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(13, 27, 42, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(13, 27, 42, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(13, 27, 42, 0.3);
    border-color: rgba(13, 27, 42, 0.4);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 48px;
    height: 48px;
    stroke: currentColor;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(13, 27, 42, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0d1b2a;
}

.service-card p {
    color: #1b263b;
    line-height: 1.6;
}

/* Card CTA link */
.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #0d1b2a;
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    border: 1px solid rgba(13, 27, 42, 0.25);
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.06) 0%, rgba(27, 38, 59, 0.06) 100%);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.card-cta::after {
    content: '›';
    font-size: 1.1rem;
    line-height: 1;
}

.card-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(13, 27, 42, 0.18);
    border-color: rgba(13, 27, 42, 0.45);
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.1) 0%, rgba(27, 38, 59, 0.1) 100%);
}

.card-cta:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(13, 27, 42, 0.2);
}

/* Service Features */
.service-features {
    list-style: none;
    margin-top: 1rem;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #1b263b;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0d1b2a;
    font-weight: bold;
}

/* Process Section */
.about {
    padding: 5rem 0;
    background-color: #ffffff;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #0d1b2a;
    text-align: center;
}

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

.process-step {
    text-align: center;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, #e0e1dd 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid rgba(13, 27, 42, 0.15);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    color: #0d1b2a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-step p {
    color: #1b263b;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
        padding: 2rem 0;
        background-size: cover;
        background-position: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services h2,
    .about h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon svg {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 40vh;
        padding: 2rem 0;
        background-size: cover;
        background-position: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon svg {
        width: 32px;
        height: 32px;
    }
}
