/* Services Block Styles */

.services {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}

.services-title {
    text-align: center;
    margin-bottom: 40px;
}

.services-title h2 {
    font-size: 42px;
    color: #1a1a1a;
    font-weight: 700;
    margin: 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 0;
    padding: 40px 0;
}

.service-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 28px;
    color: #e67e22;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    background: #e67e22;
}

.service-item:hover .service-icon i {
    color: #ffffff;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 24px;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    font-weight: 600;
    line-height: 1.4;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 30px 0;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #e67e22;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    margin-top: auto;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #d35400;
}

.service-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(5px);
}

.service-link svg path {
    stroke: currentColor;
}

/* Large Desktop Breakpoint */
@media (max-width: 1400px) {
    .container {
        max-width: 1140px;
    }
}

/* Tablet Breakpoint */
@media (max-width: 1200px) {
    .services {
        padding: 60px 0;
    }

    .container {
        max-width: 960px;
        padding: 0 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 20px 0;
    }

    .services-title {
        margin-bottom: 20px;
    }

    .services-title h2 {
        font-size: 36px;
    }

    .service-item {
        padding: 30px;
    }
}

/* Medium Tablet Breakpoint */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
}

/* Small Tablet Breakpoint */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .services-grid {
        gap: 25px;
    }
}

/* Mobile Breakpoint */
@media (max-width: 576px) {
    .services {
        padding: 40px 0;
    }

    .container {
        padding: 0 25px;
        max-width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0;
        margin: 0 -5px;
    }

    .service-item {
        padding: 25px;
        margin: 0 5px;
    }

    .services-title {
        margin-bottom: 15px;
    }

    .services-title h2 {
        font-size: 32px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .service-icon i {
        font-size: 24px;
    }

    .service-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .service-description {
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 1.5;
    }
} 