/* Services Page Styles */

/* Hero Section */
.services-hero {
    background: linear-gradient(135deg, #0d5a26 0%, #117331 25%, #1a8f42 50%, #117331 75%, #0d5a26 100%);
    padding: 50px 20px;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.services-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.services-hero .hero-subtitle {
    font-size: clamp(10px, 0.85vw, 12px);
    letter-spacing: 2.5px;
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.95;
    text-align: center;
}

.services-hero h1 {
    font-size: clamp(32px, 3.5vw, 42px);
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.2;
    color: #FFD700;
}

.services-hero .hero-description {
    font-size: clamp(13px, 1vw, 15px);
    opacity: 0.95;
    line-height: 1.6;
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}

.services-section {
    min-height: calc(100vh - 80px);
    background-color: #f5f5f5;
    padding: 60px 20px 80px;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #117331 0%, #32CD32 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:nth-child(1) {
    background: linear-gradient(135deg, #ffe8e8 0%, #fff5f5 100%);
}

.service-card:nth-child(2) {
    background: linear-gradient(135deg, #fff4e6 0%, #fffaf0 100%);
}

.service-card:nth-child(3) {
    background: linear-gradient(135deg, #e6f2ff 0%, #f0f7ff 100%);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon.globe {
    background-color: #c41e3a;
    color: white;
}

.service-icon.document {
    background-color: #ff8c00;
    color: white;
}

.service-icon.people {
    background-color: #4169e1;
    color: white;
}

.service-card h3 {
    font-size: clamp(20px, 1.6vw, 24px);
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: clamp(14px, 1.1vw, 15px);
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    font-size: clamp(13px, 1vw, 14px);
    color: #555;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: #117331;
    font-weight: bold;
}

/* Responsive */
@media (min-width: 1920px) {
    .services-container {
        max-width: 1600px;
    }
}

@media (max-width: 1200px) {
    .services-container {
        gap: 25px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
}

@media (max-width: 1024px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 40px 15px 60px;
    }
    
    .services-header {
        margin-bottom: 40px;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card:nth-child(3) {
        grid-column: 1;
        max-width: 100%;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 30px 10px 50px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon svg {
        width: 36px;
        height: 36px;
    }
}
