/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, #FFFFFF 0%, #F9F9F9 100%);
    padding: 100px 20px;
    position: relative;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-label {
    display: inline-block;
    color: #F4D03F;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 600;
}

.section-title .highlight {
    color: #F4D03F;
}

.section-description {
    font-size: 1.25rem;
    color: #4A4A4A;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border-top: 4px solid transparent;
    animation: fadeInUp 0.8s ease-out both;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #F4D03F 0%, #DAA520 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-title {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.service-description {
    font-size: 1rem;
    color: #4A4A4A;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    display: inline-block;
    background: #FFF9E6;
    color: #000000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #F4D03F;
}

.feature-tag:hover {
    background: #F4D03F;
    transform: scale(1.05);
}

/* Services CTA */
.services-cta {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 60px 40px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(244, 208, 63, 0.1) 0%, transparent 70%);
}

.cta-title {
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.cta-description {
    font-size: 1.25rem;
    color: #E0E0E0;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.btn-cta {
    display: inline-block;
    background-color: #F4D03F;
    color: #000000;
    padding: 18px 45px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-cta:hover {
    background-color: #DAA520;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(244, 208, 63, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {
    .services {
        padding: 80px 20px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 20px;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1.125rem;
    }

    .services-grid {
        margin-bottom: 60px;
    }

    .service-card {
        padding: 30px;
    }

    .services-cta {
        padding: 40px 25px;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-description {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }

    .section-label {
        font-size: 0.75rem;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-title {
        font-size: 1.25rem;
    }

    .service-description {
        font-size: 0.95rem;
    }

    .services-cta {
        padding: 35px 20px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .btn-cta {
        padding: 16px 35px;
        font-size: 1rem;
    }
}