/* ===== Home page sections ===== */

/* Slider caption polish */
.header.slider-fade .caption h5 {
    font-size: clamp(1.5rem, 3.5vw, 2.6rem) !important;
    font-weight: 700 !important;
    color: #fff !important;
    line-height: 1.45 !important;
    max-width: 720px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.header.slider-fade .caption .slider-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

/* About home */
.home-about {
    position: relative;
    padding: var(--site-section-pad, 90px) 0;
    background: linear-gradient(180deg, #1b1b1b 0%, #181818 100%);
}

.home-about .intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(245, 183, 84, 0.12);
    border: 1px solid rgba(245, 183, 84, 0.28);
    color: #f5b754;
    font-size: 13px;
    margin-bottom: 18px;
}

.home-about .intro-title {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.45;
    margin-bottom: 18px;
}

.home-about .intro-title span {
    color: #f5b754;
}

.home-about .intro-text {
    color: rgba(255, 255, 255, 0.72);
    line-height: 2;
    font-size: 15px;
    margin-bottom: 28px;
}

.home-about .intro-image-wrap {
    position: relative;
    border-radius: 24px 24px 0 24px;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.home-about .intro-image-wrap img {
    width: 100%;
    display: block;
    transition: transform 600ms ease;
}

.home-about .intro-image-wrap:hover img {
    transform: scale(1.04);
}

.home-about .intro-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
}

/* Home services */
.home-services {
    position: relative;
    padding: var(--site-section-pad, 90px) 0;
    background:
        radial-gradient(900px 320px at 0% 0%, rgba(245, 183, 84, 0.08), transparent 55%),
        #1b1b1b;
}

.home-services .section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 42px;
}

.home-services .section-head p {
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.9;
}

/* Brands */
.home-brands {
    padding: 50px 0;
    background: #161616;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.home-brands .clients-logo {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.home-brands .clients-logo:hover {
    border-color: rgba(245, 183, 84, 0.35);
    transform: translateY(-3px);
}

.home-brands .clients-logo img {
    max-height: 48px;
    width: auto;
    filter: grayscale(0.2) brightness(1.05);
    opacity: 0.9;
}

/* News / Blog cards on home */
.home-feed {
    padding: var(--site-section-pad, 90px) 0;
}

.home-feed--alt {
    background:
        radial-gradient(800px 280px at 100% 20%, rgba(245, 183, 84, 0.07), transparent 55%),
        #181818;
}

.home-feed .section-head {
    text-align: center;
    margin-bottom: 36px;
}

.home-card {
    height: 100%;
    background: #222;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.home-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 183, 84, 0.35);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.home-card__media {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.home-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.home-card:hover .home-card__media img {
    transform: scale(1.06);
}

.home-card__date {
    position: absolute;
    top: 14px;
    right: 14px;
    min-width: 54px;
    padding: 8px 10px;
    border-radius: 14px;
    background: rgba(27, 27, 27, 0.86);
    border: 1px solid rgba(245, 183, 84, 0.5);
    color: #f5b754;
    text-align: center;
    backdrop-filter: blur(6px);
    line-height: 1.2;
}

.home-card__date strong {
    display: block;
    font-size: 16px;
}

.home-card__date span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
}

.home-card__body {
    padding: 22px 22px 24px;
}

.home-card__title {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.55;
    margin: 0 0 14px;
}

.home-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-card__title a:hover {
    color: #f5b754;
}

.home-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f5b754;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.home-card__link:hover {
    color: #fff;
}

.home-feed__more {
    text-align: center;
    margin-top: 36px;
}

@media (max-width: 767.98px) {
    .home-about .intro-image-wrap {
        margin-top: 28px;
        border-radius: 18px;
    }
}
