/* ===================================
   Services Section Styles
   =================================== */

.montor-services-section {
    padding: 0;
    background: #ffffff;
    position: relative;
}

/* ===================================
   Extensive Services Section
   =================================== */
.extensive-services-wrapper {
    background: linear-gradient(180deg, rgba(0, 155, 174, 0.1) 0%, rgb(255, 255, 255) 100%);
    padding: 80px 0 100px 0;
    position: relative;
}

.extensive-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.extensive-services-title {
    font-family: 'Roboto', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #023047;
    text-align: center;
    margin: 0 0 60px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Icon Services Row */
.icon-services-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
    padding: 0;
}

.icon-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-width: 160px;
    max-width: 180px;
    transition: all 0.3s ease;
}

.icon-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(1, 158, 178, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(1, 158, 178, 0.15) 0%, rgba(23, 162, 184, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.icon-wrapper svg {
    width: 56px;
    height: 56px;
    color: #019EB2;
    stroke-width: 1.5;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.icon-service-item:hover .icon-wrapper {
    background: rgba(1, 158, 178, 0.15);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 30px rgba(1, 158, 178, 0.2);
}

.icon-service-item:hover .icon-wrapper::before {
    opacity: 1;
}

.icon-service-item:hover .icon-wrapper svg {
    transform: scale(1.1);
    color: #17a2b8;
}

.service-label {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #023047;
    margin: 0;
    text-align: center;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.icon-service-item:hover .service-label {
    color: #019EB2;
}

/* Service Cards Wrapper */
.service-cards-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Service Card */
.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.service-card.image-right {
    grid-template-columns: 1fr 1fr;
}

/* Card Image */
.card-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(1, 158, 178, 0.1) 0%, rgba(137, 173, 177, 0.1) 100%);
    padding: 40px;
}

.card-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

/* Card Content */
.card-content {
    position: relative;
    padding: 20px;
}

.card-number {
    font-size: 80px;
    font-weight: 700;
    color: rgba(137, 173, 177, 0.2);
    line-height: 1;
    display: block;
    font-family: 'Inter', sans-serif;
}

.card-title {
    font-size: 36px;
    font-weight: 700;
    color: #023047;
    margin: 0 0 20px 0;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.card-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-title {
        font-size: 40px;
    }

    .service-card {
        gap: 40px;
    }

    .card-title {
        font-size: 32px;
    }

    .card-number {
        font-size: 100px;
    }
}

@media (max-width: 768px) {
    .montor-services-section {
        padding: 0;
    }

    .extensive-services-wrapper {
        padding: 50px 0 70px 0;
    }

    .extensive-services-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .icon-services-row {
        gap: 30px;
    }

    .icon-service-item {
        min-width: 120px;
        max-width: 140px;
    }

    .icon-wrapper {
        width: 90px;
        height: 90px;
    }

    .icon-wrapper svg {
        width: 44px;
        height: 44px;
    }

    .service-label {
        font-size: 14px;
    }

    .service-cards-wrapper {
        gap: 60px;
    }

    .service-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card.image-right {
        grid-template-columns: 1fr;
    }

    .service-card.image-right .card-image {
        order: 1;
    }

    .service-card.image-right .card-content {
        order: 2;
    }

    .card-image {
        padding: 30px;
    }

    .card-content {
        padding: 10px;
    }

    .card-number {
        font-size: 80px;
        margin-bottom: -30px;
    }

    .card-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .card-description {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .extensive-services-wrapper {
        padding: 40px 0 60px 0;
    }

    .extensive-services-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .icon-services-row {
        gap: 25px;
    }

    .icon-service-item {
        min-width: 100px;
        max-width: 120px;
    }

    .icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .icon-wrapper svg {
        width: 40px;
        height: 40px;
    }

    .service-label {
        font-size: 13px;
    }

    .card-number {
        font-size: 60px;
        margin-bottom: -20px;
    }

    .card-title {
        font-size: 24px;
    }

    .card-description {
        font-size: 14px;
    }

    .card-image {
        padding: 20px;
        border-radius: 16px;
    }
}

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

.service-card {
    animation: fadeInUp 0.6s ease-out;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.icon-service-item {
    animation: fadeInUp 0.5s ease-out;
}

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

