/* Services Slider Custom Styles */
.services-section {
    position: relative;
    background-color: #f9f9f9;
    border-top: 1px solid #f0f0f0;
}

.btn-service-view-all {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: transparent;
    color: #111;
    font-weight: 600;
    border: 1px solid #111;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-service-view-all:hover {
    background: #111;
    color: #fff;
}

/* Service Card Styles */
.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(195, 160, 89, 0.12);
}

.service-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-img-wrapper::after {
    opacity: 0.2;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
    position: relative;
    z-index: 2;
    margin-top: -30px;
    border-radius: 20px 20px 0 0;
    transition: background 0.4s ease;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #c3a059;
}

.service-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-service-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-service-link span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f4f4f4;
    border-radius: 50%;
    margin-left: 10px;
    transition: all 0.3s ease;
    color: #111;
}

.service-card:hover .btn-service-link {
    color: #c3a059;
}

.service-card:hover .btn-service-link span {
    background: #c3a059;
    color: #fff;
    transform: translateX(5px);
}

/* Customizing Splide elements */
.services-splide .splide__pagination {
    bottom: -40px;
}

.services-splide .splide__pagination__page.is-active {
    background: #c3a059;
    transform: scale(1.3);
}

.services-splide .splide__arrow {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0.8;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
}

.services-splide .splide__arrow:hover {
    opacity: 1;
    background: #111;
}

.services-splide .splide__arrow:hover svg {
    fill: #fff;
}

.services-splide .splide__arrow--prev {
    left: -20px;
}

.services-splide .splide__arrow--next {
    right: -20px;
}

@media (max-width: 1200px) {
    .services-splide .splide__arrow--prev {
        left: 10px;
    }

    .services-splide .splide__arrow--next {
        right: 10px;
    }
}