/* ═══════════════════════════════════════════════════
   ADM-Style Services Carousel (Horizontal Scroll)
   ═══════════════════════════════════════════════════ */
.adm-services-section {
    background: transparent;
    padding: 100px 0 60px;
    overflow: hidden;
}

/* Header */
.adm-services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding: 0 5vw 40px;
    flex-wrap: wrap;
}

.adm-header-left {
    flex: 1;
}

.adm-header-right {
    max-width: 420px;
}

.adm-tag {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 5px;
    color: #dfa539;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.adm-main-title {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: #1a1a1a;
    margin: 0;
}

.adm-header-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(26, 26, 26, 0.6);
    margin: 0;
}

/* Loader / Progress bar */
.adm-scroll-loader-wrap {
    width: 90vw;
    margin: 0 auto 40px;
    height: 2px;
    background: rgba(26, 26, 26, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.adm-scroll-loader {
    width: 0%;
    height: 100%;
    background: #dfa539;
}

/* Slider Track */
.adm-slider-outer {
    overflow: hidden;
    padding: 0 5vw;
}

.adm-slider-track {
    display: flex;
    gap: 12px;
    will-change: transform;
    flex-wrap: nowrap;
    width: max-content;
}

/* Cards */
.adm-card {
    width: 20vw;
    min-width: 300px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
}

.adm-card-link {
    display: block;
    text-decoration: none;
    position: relative;
    width: 100%;
    height: 100%;
}

.adm-card-img-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
}

.adm-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.25, 1, 0.3, 1);
    display: block;
}

.adm-card:hover .adm-card-img {
    transform: scale(1.06);
}

/* Default title at bottom */
.adm-card-default-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 24px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
    transition: opacity 0.35s ease;
    z-index: 2;
}

.adm-card:hover .adm-card-default-info {
    opacity: 0;
}

.adm-card-title {
    font-size: clamp(16px, 1.5vw, 22px);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0;
    text-transform: none;
    letter-spacing: -0.3px;
}

/* Hover amber overlay */
.adm-card-overlay {
    position: absolute;
    inset: 0;
    background: #ad7921d9;
    display: flex;
    align-items: flex-end;
    padding: 30px 28px;
    transform: translateY(101%);
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.3, 1);
    z-index: 3;
}

.adm-card:hover .adm-card-overlay {
    transform: translateY(0);
}

.adm-overlay-inner {
    width: 100%;
}

.adm-overlay-title {
    font-size: clamp(18px, 1.8vw, 26px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 18px;
    letter-spacing: -0.5px;
}

.adm-overlay-desc {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 22px;
}

.adm-overlay-link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.adm-card:hover .adm-overlay-link {
    color: #fff;
    border-color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .adm-card {
        width: 45vw;
    }
}

@media (max-width: 768px) {
    .adm-services-header {
        flex-direction: column;
        gap: 20px;
    }

    .adm-header-right {
        max-width: 100%;
    }

    .adm-card {
        width: 80vw;
    }
}

@media (max-width: 480px) {
    .adm-card {
        width: 90vw;
    }
}