/* ================================================================
   Clients Page — Mockup Layout
   Scope: body.clients-page
   ================================================================ */

/* Hide legacy sections */
.clients-page .hero-section-banner,
.clients-page .bread-crumbs-container,
.clients-page .clients-header,
.clients-page .clients-team-banner,
.clients-page .clients {
    display: none !important;
}

/* ── Hero: Enterprise impact (reference layout) ── */
.clt-hero {
    position: relative;
    width: 100%;
    background:
        url("storage/images/clients-hero-bg.png") center right / cover no-repeat;
    background-color: #07102d;
    min-height: 520px;
    padding: 130px 24px 80px;
    overflow: hidden;
}
.clt-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #07102d 0%,
        #07102d 28%,
        rgba(7, 16, 45, 0.97) 40%,
        rgba(7, 16, 45, 0.75) 52%,
        rgba(7, 16, 45, 0.4) 65%,
        rgba(7, 16, 45, 0.12) 80%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
}
@media (min-width: 768px) {
    .clt-hero {
        min-height: 600px;
        padding: 140px 64px 88px;
    }
}
@media (max-width: 640px) {
    .clt-hero {
        min-height: auto;
        padding: calc(var(--tekbis-call-bar-height, 44px) + 72px + 36px) 20px 64px;
        background-position: 70% center;
    }
}
.clt-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    isolation: isolate;
}
.clt-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
@media (min-width: 900px) {
    .clt-hero__grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(260px, 340px);
        gap: 48px 40px;
        align-items: center;
    }
}
.clt-hero__content {
    position: relative;
    z-index: 2;
}
.clt-hero__badge {
     display: inline-block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #38BDF8;
        border: 1.5px solid #38BDF8;
        border-radius: 100px;
        padding: 5px 16px;
        width: fit-content;
        margin: 0;
        font-family: Montserrat, sans-serif;
}
.clt-hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
}
.clt-hero__title {
    font-family: Montserrat, sans-serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    color: #ffffff;
    max-width: 560px;
}
.clt-hero__desc {
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 32px;
    max-width: 520px;
}
.clt-hero__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.clt-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 8px;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.clt-hero__btn--primary {
    background: #0b3ac6;
    color: #ffffff;
    border: 2px solid #0b3ac6;
}
.clt-hero__btn--primary:hover {
    background: #0930b0;
    border-color: #0930b0;
    transform: translateY(-2px);
}
.clt-hero__btn--outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.45);
}
.clt-hero__btn--outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}
.clt-hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    position: relative;
    z-index: 3;
}
@media (min-width: 900px) {
    .clt-hero__stats {
        margin-left: auto;
        max-width: 340px;
    }
}
.clt-hero__stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 22px 18px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.clt-hero__stat:hover {
    background: #0b3ac6;
    border-color: #0b3ac6;
    box-shadow: 0 12px 32px rgba(11, 58, 198, 0.35);
    transform: translateY(-3px);
}
.clt-hero__stat-num {
    display: block;
    font-family: Montserrat, sans-serif;
    font-size: clamp(26px, 3vw, 32px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 6px;
    transition: color 0.25s ease;
}
.clt-hero__stat-label {
    display: block;
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.4;
    transition: color 0.25s ease;
}
.clt-hero__stat:hover .clt-hero__stat-num,
.clt-hero__stat:hover .clt-hero__stat-label {
    color: #ffffff;
}

/* ── Testimonials (homepage style) ── */
.clients-page .home-our-industries-voices {
    background: #ffffff;
    padding: 48px 0;
}
.clients-page .home-our-industries-voices__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
@media (min-width: 768px) {
    .clients-page .home-our-industries-voices__wrapper {
        padding: 0 40px;
    }
}
.clients-page .home-our-industries-voices__wrapper--txts {
    text-align: center;
    margin-bottom: 32px;
}
.clients-page .home-our-industries-voices__wrapper--txts-heading {
    font-family: Montserrat, sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}
.clients-page .home-our-industries-voices__wrapper--txts-heading span {
    color: #0b3ac6;
}
/* Voices marquee — see voices-testimonials.css */

/* ── Trusted by Industry Leaders ── */
.clt-trusted {
    padding: 56px 24px 40px;
    background: #ffffff;
}
@media (min-width: 768px) {
    .clt-trusted { padding: 64px 64px 48px; }
}
.clt-trusted__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.clt-trusted__title {
    font-family: Montserrat, sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: #0b3ac6;
    margin: 0 0 20px;
    line-height: 1.2;
}
.clt-trusted__desc {
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
    margin: 0 auto 28px;
    max-width: 640px;
}
.clt-trusted__image-wrap {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(7, 21, 74, 0.14);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.clt-trusted__image-wrap:hover {
    box-shadow: 0 28px 72px rgba(11, 58, 198, 0.18);
    transform: translateY(-4px);
}
.clt-trusted__image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 280px;
}

/* ── Key Metrics ── */
.clt-metrics {
    padding: 24px 24px 40px;
    background: #f8fafc;
}
@media (min-width: 768px) {
    .clt-metrics { padding: 32px 64px 48px; }
}
.clt-metrics__inner {
    max-width: 1200px;
    margin: 0 auto;
}
.clt-metrics__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 580px) {
    .clt-metrics__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
    .clt-metrics__grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.clt-metrics__card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(7, 21, 74, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.clt-metrics__card:hover {
    border-color: #0b3ac6;
    box-shadow: 0 12px 32px rgba(11, 58, 198, 0.14);
    transform: translateY(-5px);
}
.clt-metrics__icon {
    color: #0b3ac6;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}
.clt-metrics__value {
    display: block;
    font-family: Montserrat, sans-serif;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 800;
    color: #0b3ac6;
    line-height: 1.1;
    margin-bottom: 8px;
}
.clt-metrics__label {
    display: block;
    font-family: Montserrat, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0b3ac6;
    line-height: 1.4;
}

/* ── Strategic Technical Consulting ── */
.clt-consulting {
    padding: 48px 24px;
    background: #ffffff;
}
@media (min-width: 768px) {
    .clt-consulting { padding: 56px 64px; }
}
.clt-consulting__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}
@media (min-width: 900px) {
    .clt-consulting__inner {
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: start;
    }
}
.clt-consulting__title {
    font-family: Montserrat, sans-serif;
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 800;
    color: #0b3ac6;
    margin: 0 0 16px;
    line-height: 1.2;
}
.clt-consulting__desc {
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #64748b;
    margin: 0 0 28px;
}
.clt-consulting__image-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(7, 21, 74, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.clt-consulting__image-wrap:hover {
    box-shadow: 0 20px 56px rgba(11, 58, 198, 0.15);
    transform: translateY(-3px);
}
.clt-consulting__image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 220px;
}
.clt-consulting__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 600px) {
    .clt-consulting__cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
.clt-consulting__card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.clt-consulting__card:hover {
    border-color: #0b3ac6;
    box-shadow: 0 12px 32px rgba(11, 58, 198, 0.12);
    transform: translateY(-4px);
}
.clt-consulting__card--full {
    grid-column: 1 / -1;
}
.clt-consulting__card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(11, 58, 198, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b3ac6;
    margin-bottom: 14px;
    transition: background 0.25s ease;
}
.clt-consulting__card:hover .clt-consulting__card-icon {
    background: rgba(11, 58, 198, 0.14);
}
.clt-consulting__card-title {
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0b3ac6;
    margin: 0 0 8px;
    line-height: 1.3;
}
.clt-consulting__card-text {
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #64748b;
    margin: 0;
}

/* ── Contact / Transmission ── */
.clt-contact {
    background:
        linear-gradient(135deg, #050a18 0%, #0b3ac6 55%, #0930b0 100%);
    padding: 56px 24px 72px;
}
.clt-contact__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}
@media (min-width: 900px) {
    .clt-contact__inner {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
    }
}
.clt-contact__label {
    display: inline-block;
    font-family: Montserrat, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(11, 58, 198, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 6px 14px;
    margin-bottom: 16px;
}
.clt-contact__title {
    font-family: Montserrat, sans-serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.2;
}
.clt-contact__desc {
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 28px;
}
.clt-contact__info-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.clt-contact__info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.clt-contact__info-card:hover {
    border-color: rgba(11, 58, 198, 0.5);
    background: rgba(255, 255, 255, 0.09);
}
.clt-contact__info-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    background: rgba(11, 58, 198, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b3ac6;
}
.clt-contact__info-text {
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}
.clt-contact__form-wrap {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.35);
}
.clt-contact__form-wrap .home-hero__form-container {
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
}
.clients-page .clt-contact .hero-form__submit,
.clients-page .clt-contact button[type="submit"] {
    background: #0b3ac6 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    font-family: Montserrat, sans-serif !important;
    font-weight: 700 !important;
    width: 100% !important;
    padding: 16px !important;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.clients-page .clt-contact .hero-form__submit:hover,
.clients-page .clt-contact button[type="submit"]:hover {
    background: #0930b0 !important;
    transform: translateY(-1px);
}
.clients-page .clt-contact .hero-form__input:focus,
.clients-page .clt-contact .hero-form__select:focus,
.clients-page .clt-contact .hero-form__textarea:focus {
    border-color: #0b3ac6 !important;
    box-shadow: 0 0 0 3px rgba(11, 58, 198, 0.12) !important;
    outline: none !important;
}
