/* =========================================
   SERVICES SECTION
   Clickable service cards with hover effects
   ========================================= */

/* Services Section */
.fd-services {
    padding: 4rem 0;
}

@media (min-width: 992px) {
    .fd-services {
        padding: 6rem 0;
    }
}

/* Service Card Link (Clickable) */
.fd-service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    height: 100%;
}

.fd-service-card:hover {
    transform: translateY(-10px);
    text-decoration: none;
}

/* Card Inner Container */
.fd-service-card__inner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    padding: 3rem;
    overflow: hidden;
    box-shadow: 0 25px 30px -20px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .fd-service-card__inner {
        min-height: 400px;
    }
}

/* Overlay */
.fd-service-card__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 0;
    transition: background 0.3s ease;
}

.fd-service-card:hover .fd-service-card__inner::before {
    background: linear-gradient(to bottom, transparent 0%, rgba(185, 163, 139, 0.9) 100%);
}

/* Card Content */
.fd-service-card__content {
    position: relative;
    z-index: 1;
    color: #fff;
}

/* Card Title */
.fd-service-card__title {
    font-family: 'Italiana', serif;
    color: #fff !important;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.fd-service-card:hover .fd-service-card__title {
    transform: translateX(10px);
}

/* Card Text */
.fd-service-card__text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Card Arrow */
.fd-service-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.fd-service-card:hover .fd-service-card__arrow {
    background: #fff;
    color: #1b1b1e;
    transform: translateX(10px);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .fd-service-card__inner {
        padding: 2rem;
        min-height: 350px;
    }
}
