/* Services Intro Section */
.services-intro {
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
}

.intro-text {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Main Section */
.services-main {
    background: #f9f9f9;
    position: relative;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #ffc933);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 182, 0, 0.2);
}

/* Featured Card */
.service-card-featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(180deg, #fffdf7 0%, #ffffff 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Service Icon */
.service-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
}

.service-icon {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), #ffc933);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 42px;
    z-index: 2;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(255, 182, 0, 0.4);
}

.icon-background {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255, 182, 0, 0.2), rgba(255, 201, 51, 0.2));
    border-radius: 50%;
    z-index: 1;
}

/* Service Content */
.service-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 25px;
}

/* Service Features */
.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
}

.service-features li i {
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

/* Benefits Section */
.benefits-section {
    background: #ffffff;
    position: relative;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(255, 182, 0, 0.1), rgba(255, 201, 51, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--primary-color), #ffc933);
    color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(255, 182, 0, 0.3);
}

.benefit-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Adjustments */

@media (max-width: 1024px) {
    .featured-badge {
        top: 6px;
        right: 4px;
    }
}

@media (max-width: 992px) {
    .hero-title-custom {
        font-size: 38px;
    }

    .service-title {
        font-size: 22px;
    }

    .service-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title-custom {
        font-size: 32px;
    }

    .hero-section-reduced {
        height: 40vh;
    }

    .service-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .icon-background {
        width: 100px;
        height: 100px;
    }

    .hero {
        min-height: 35vh;
    }
}