/* =========================================================
   Chendur UPVC Windows - Homepage Redesign
   File: assets/css/home-upvc.css
   ========================================================= */

:root {
    --ch-navy: #062b58;
    --ch-navy-dark: #031c3b;
    --ch-blue: #145da0;
    --ch-sky: #eaf4ff;
    --ch-red: #e42026;
    --ch-red-dark: #bd151b;
    --ch-text: #26364a;
    --ch-muted: #617087;
    --ch-line: #dce6f1;
    --ch-white: #ffffff;
    --ch-soft: #f6f9fd;
    --ch-shadow: 0 18px 50px rgba(6, 43, 88, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

.ch-home,
.ch-home input,
.ch-home select,
.ch-home textarea,
.ch-home button {
    font-family: "Poppins", Arial, sans-serif;
}

.ch-home {
    color: var(--ch-text);
    background: var(--ch-white);
}

.ch-home *,
.ch-home *::before,
.ch-home *::after {
    box-sizing: border-box;
}

.ch-home img {
    max-width: 100%;
    display: block;
}

/* Site-wide style.css sets a global `p { text-align: justify }` that loads
   after this stylesheet via header.php, so it wins ties on plain `p`.
   Reset every paragraph on redesigned pages to left-align by default;
   specific centered contexts (.ch-section-head p, .ch-page-hero p, etc.)
   explicitly opt back into center further down this file. */
.ch-home p {
    text-align: left;
}

.ch-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.ch-section {
    position: relative;
    padding: 88px 0;
}

.ch-section--soft {
    background: var(--ch-soft);
}

.ch-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: var(--ch-red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ch-kicker::before {
    content: "";
    width: 30px;
    height: 2px;
    border-radius: 99px;
    background: var(--ch-red);
}

.ch-title {
    margin: 0 0 18px;
    color: var(--ch-navy);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.ch-title span,
.ch-accent {
    color: var(--ch-red);
}

/* Internal links dropped into headings/body copy keep the surrounding
   text's own color instead of the browser's default link blue */
/* .ch-title a,
.ch-product-body h3 a,
.ch-check-item a,
.ch-copy a,
.ch-section-head a,
.ch-why-content a,
.ch-bottom-cta-inner a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    opacity: 0.92;
}

.ch-title a:hover,
.ch-product-body h3 a:hover,
.ch-check-item a:hover,
.ch-copy a:hover,
.ch-section-head a:hover {
    color: var(--ch-red);
    opacity: 1;
} */

.ch-why-content a:hover {
    opacity: 1;
    text-decoration-color: var(--ch-red);
}

.ch-section-head {
    max-width: 780px;
    margin: 0 auto 42px;
    text-align: center;
}

.ch-section-head .ch-kicker {
    justify-content: center;
}

.ch-section-head p,
.ch-copy p {
    margin: 0 0 16px;
    color: var(--ch-muted);
    font-size: 16px;
    line-height: 1.85;
}

.ch-section-head p {
    text-align: center;
}

.ch-btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 23px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.ch-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.ch-btn--red {
    color: var(--ch-white);
    background: linear-gradient(135deg, var(--ch-red), var(--ch-red-dark));
    box-shadow: 0 10px 24px rgba(228, 32, 38, 0.25);
}

.ch-btn--red:hover {
    color: var(--ch-white);
    box-shadow: 0 15px 28px rgba(228, 32, 38, 0.34);
}

.ch-btn--outline {
    color: var(--ch-navy);
    border-color: rgba(6, 43, 88, 0.35);
    background: rgba(255, 255, 255, 0.8);
}

.ch-btn--outline:hover {
    color: var(--ch-white);
    border-color: var(--ch-navy);
    background: var(--ch-navy);
}

/* Hero */
.ch-hero {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    padding-top: 132px;
    background: var(--ch-soft);
}

.ch-hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ch-hero-slider .owl-stage-outer,
.ch-hero-slider .owl-stage,
.ch-hero-slider .owl-item {
    height: 100%;
}

.ch-hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center right;
}

.ch-hero .owl-nav,
.ch-hero .owl-dots {
    display: none;
}

.ch-hero-overlay {
    /* position: absolute; */
    inset: 0;
    z-index: 1;
    /* background: linear-gradient(90deg, rgba(244, 249, 255, 0.98) 0%, rgba(244, 249, 255, 0.94) 41%, rgba(6, 43, 88, 0.12) 70%, rgba(6, 43, 88, 0.2) 100%); */
}

.ch-hero::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 56%;
    z-index: 1;
    background: rgba(255, 255, 255, 0.38);
    clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
}

.ch-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 6px;
    z-index: 3;
    background: linear-gradient(90deg, var(--ch-navy) 0 55%, var(--ch-red) 55% 100%);
}

@keyframes chHeroFadeUp {
    from {
        transform: translateY(22px);
    }
    to {
        transform: translateY(0);
    }
}

.ch-hero-label,
.ch-hero h1,
.ch-hero-subtitle,
.ch-hero-description,
.ch-hero-actions,
.ch-hero-features,
.ch-quote-card {
    animation: chHeroFadeUp 0.8s ease both;
}

.ch-hero-label { animation-delay: 0.05s; }
.ch-hero h1 { animation-delay: 0.15s; }
.ch-hero-subtitle { animation-delay: 0.25s; }
.ch-hero-description { animation-delay: 0.35s; }
.ch-hero-actions { animation-delay: 0.45s; }
.ch-hero-features { animation-delay: 0.55s; }
.ch-quote-card { animation-delay: 0.35s; }

.ch-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 40px));
    margin: auto;
    padding: 68px 0;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.62fr);
    gap: 70px;
    align-items: center;
}

.ch-hero-copy {
    max-width: 660px;
    text-align: left;
}

.ch-hero-label {
    margin-bottom: 16px;
    color: var(--ch-red);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ch-hero h1 {
    margin: 0;
    color: var(--ch-navy);
    font-size: clamp(45px, 5.3vw, 74px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.ch-hero h1 span {
    display: block;
    color: var(--ch-red);
}

.ch-hero-subtitle {
    margin: 18px 0 12px;
    color: var(--ch-navy);
    font-size: 18px;
    font-weight: 700;
}

.ch-hero-description {
    max-width: 600px;
    margin: 0;
    color: #40546c;
    font-size: 16px;
    line-height: 1.8;
}

.ch-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.ch-hero-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 35px;
}

.ch-hero-feature {
    position: relative;
    padding-top: 52px;
    color: var(--ch-navy);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
    text-align: center;
}

.ch-hero-feature::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    transform: translateX(-50%);
    border: 1px solid rgba(6, 43, 88, 0.25);
    border-radius: 50%;
    color: var(--ch-red);
    background: var(--ch-white);
    box-shadow: 0 8px 20px rgba(6, 43, 88, 0.1);
    font-size: 19px;
}

.ch-hero-feature:nth-child(1)::before { content: "◒"; }
.ch-hero-feature:nth-child(2)::before { content: "◖"; }
.ch-hero-feature:nth-child(3)::before { content: "☂"; }
.ch-hero-feature:nth-child(4)::before { content: "⌁"; }

.ch-quote-card {
    border: 1px solid rgba(6, 43, 88, 0.12);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 24px 65px rgba(3, 28, 59, 0.23);
}

.ch-quote-title {
    margin: 0;
    padding: 17px 22px;
    color: var(--ch-white);
    background: linear-gradient(135deg, var(--ch-navy), var(--ch-blue));
    font-size: 17px;
    font-weight: 700;
    text-align: center;
}

.ch-quote-form {
    padding: 22px;
}

.ch-field {
    margin-bottom: 13px;
}

.ch-field input,
.ch-field select,
.ch-field textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 13px;
    border: 1px solid #d7e1eb;
    border-radius: 5px;
    outline: none;
    color: var(--ch-text);
    background: var(--ch-white);
    font-size: 13px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ch-field textarea {
    min-height: 96px;
    resize: vertical;
}

.ch-field input:focus,
.ch-field select:focus,
.ch-field textarea:focus {
    border-color: var(--ch-blue);
    box-shadow: 0 0 0 3px rgba(20, 93, 160, 0.11);
}

.ch-quote-form .ch-btn {
    width: 100%;
    border: 0;
    cursor: pointer;
}

/* Premium intro */
.ch-intro-grid {
    display: grid;
    grid-template-columns: 0.72fr 1.35fr 0.85fr;
    gap: 38px;
    align-items: center;
}

.ch-product-visual,
.ch-smart-card {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--ch-shadow);
}

.ch-product-visual {
    min-height: 390px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 28px;
    background: linear-gradient(155deg, var(--ch-navy), #0b4d8e);
}

.ch-product-visual img {
    width: 100%;
    max-height: 340px;
    object-fit: contain;
    filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.25));
}

.ch-mini-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.ch-mini-feature {
    text-align: center;
}

.ch-mini-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin: 0 auto 9px;
    border: 1px solid rgba(228, 32, 38, 0.18);
    border-radius: 50%;
    color: var(--ch-red);
    background: #fff4f4;
    font-size: 18px;
    font-weight: 800;
}

.ch-mini-feature strong {
    display: block;
    color: var(--ch-navy);
    font-size: 11px;
    line-height: 1.4;
}

.ch-smart-card {
    position: relative;
    padding: 25px;
    background: linear-gradient(145deg, #eaf4ff, #d5e9fb);
}

.ch-smart-card h3 {
    margin: 0 0 16px;
    color: var(--ch-navy);
    font-size: 17px;
    line-height: 1.35;
    text-transform: uppercase;
}

.ch-smart-list {
    display: grid;
    gap: 11px;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.ch-smart-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--ch-text);
    font-size: 12px;
    font-weight: 600;
}

.ch-smart-list li::before {
    content: "✓";
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    flex: 0 0 24px;
    border-radius: 50%;
    color: var(--ch-white);
    background: var(--ch-navy);
    font-size: 12px;
}

.ch-smart-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

/* Trusted company */
.ch-trusted-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 58px;
    align-items: center;
}

.ch-image-frame {
    position: relative;
    min-height: 500px;
}

.ch-image-frame::before {
    content: "";
    position: absolute;
    inset: 34px 34px -20px -20px;
    border-radius: 18px;
    background: var(--ch-navy);
}

.ch-image-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 500px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: var(--ch-shadow);
    transition: transform 0.5s ease;
}

.ch-image-frame:hover img {
    transform: scale(1.03);
}

.ch-trust-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.ch-trust-point {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px;
    border: 1px solid var(--ch-line);
    border-radius: 9px;
    background: var(--ch-white);
    color: var(--ch-navy);
    font-size: 13px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ch-trust-point:hover {
    transform: translateY(-3px);
    border-color: var(--ch-blue);
    box-shadow: var(--ch-shadow);
}

.ch-trust-point::before {
    content: "✓";
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    flex: 0 0 27px;
    border-radius: 50%;
    color: var(--ch-white);
    background: var(--ch-red);
}

/* Intro CTA button (Company intro / trusted sections) */
.mtp-intro-actions {
    margin-top: 26px;
}

.mtp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border: 0;
    border-radius: 999px;
    color: var(--ch-white);
    background: var(--ch-red);
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(228, 32, 38, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mtp-btn--red:hover {
    background: var(--ch-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(228, 32, 38, 0.36);
    color: var(--ch-white);
}

.mtp-btn span {
    transition: transform 0.2s ease;
}

.mtp-btn:hover span {
    transform: translateX(3px);
}

@media (max-width: 480px) {
    .mtp-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Product range */
.ch-products-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.ch-product-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--ch-line);
    border-radius: 11px;
    background: var(--ch-white);
    box-shadow: 0 8px 25px rgba(6, 43, 88, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ch-product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 38px rgba(6, 43, 88, 0.16);
}

.ch-product-card img {
    width: 100%;
    height: 145px;
    object-fit: cover;
}

.ch-product-body {
    padding: 17px 14px 18px;
    text-align: center;
}

.ch-product-body h3 {
    margin: 0 0 8px;
    color: var(--ch-navy);
    font-size: 14px;
    font-weight: 750;
}

.ch-product-body p {
    margin: 0;
    color: var(--ch-muted);
    font-size: 11px;
    line-height: 1.65;
    text-align: center;
}

.ch-products-note {
    max-width: 850px;
    margin: 26px auto 0;
    color: var(--ch-muted);
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
}

/* Why choose */
.ch-why-wrap {
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(120deg, var(--ch-navy-dark), var(--ch-navy));
    box-shadow: var(--ch-shadow);
}

.ch-why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
}

.ch-why-image img {
    width: 100%;
    height: 100%;
    min-height: 510px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ch-why-image:hover img {
    transform: scale(1.05);
}

.ch-why-content {
    position: relative;
    padding: 58px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ch-navy-dark), var(--ch-navy));
}

.ch-why-content::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -90px;
    width: 240px;
    height: 240px;
    border: 38px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.ch-why-content .ch-title,
.ch-why-content p {
    color: var(--ch-white);
}

.ch-why-content p {
    margin: 0 0 16px;
    opacity: 0.86;
    font-size: 15px;
    line-height: 1.8;
}

.ch-check-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 25px;
    margin-top: 26px;
}

.ch-check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ch-text);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    transition: transform 0.25s ease;
}

.ch-check-item:hover {
    transform: translateX(4px);
}

.ch-why-content .ch-check-item {
    color: var(--ch-white);
    font-weight: 400;
}

.ch-check-item::before {
    content: "✓";
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    flex: 0 0 22px;
    margin-top: 1px;
    border-radius: 50%;
    color: var(--ch-white);
    background: var(--ch-red);
    font-size: 11px;
    font-weight: 800;
}

/* Benefits */
.ch-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.ch-benefit-card {
    position: relative;
    padding: 28px 23px;
    overflow: hidden;
    border: 1px solid var(--ch-line);
    border-radius: 12px;
    background: var(--ch-white);
    box-shadow: 0 10px 28px rgba(6, 43, 88, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ch-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(6, 43, 88, 0.16);
}

.ch-benefit-card::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -32px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(20, 93, 160, 0.06);
}

.ch-benefit-number {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 12px;
    color: var(--ch-white);
    background: linear-gradient(135deg, var(--ch-navy), var(--ch-blue));
    font-size: 15px;
    font-weight: 800;
}

.ch-benefit-number i {
    font-size: 20px;
}

.ch-benefit-card h3 {
    margin: 0 0 10px;
    color: var(--ch-navy);
    font-size: 16px;
}

.ch-benefit-card p {
    margin: 0;
    color: var(--ch-muted);
    font-size: 13px;
    line-height: 1.7;
}

/* Process */
.ch-process-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 45px;
}

.ch-process-image img {
    width: 100%;
    height: 390px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: var(--ch-shadow);
}

.ch-process-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--ch-navy-dark), var(--ch-navy));
    box-shadow: var(--ch-shadow);
}

.ch-process-step {
    position: relative;
    min-height: 220px;
    padding: 32px 20px 26px;
    color: var(--ch-white);
    text-align: center;
    transition: background 0.25s ease;
}

.ch-process-step:hover {
    background: rgba(255, 255, 255, 0.06);
}

.ch-process-step p {
    text-align: center;
}

.ch-process-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 56px;
    right: -10px;
    z-index: 2;
    color: var(--ch-red);
    font-size: 20px;
    font-weight: 800;
}

.ch-process-no {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin: 0 auto 17px;
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    color: var(--ch-white);
    font-size: 21px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.ch-process-step:hover .ch-process-no {
    transform: scale(1.1) rotate(-6deg);
}

.ch-process-step h3 {
    margin: 0 0 8px;
    color: var(--ch-white);
    font-size: 14px;
}

.ch-process-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    line-height: 1.6;
}

/* Trust / values */
.ch-values-wrap {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 36px;
    align-items: stretch;
}

.ch-values-copy {
    padding: 42px;
    border: 1px solid var(--ch-line);
    border-radius: 16px;
    background: var(--ch-white);
    box-shadow: var(--ch-shadow);
}

.ch-values-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 16px;
}

.ch-value-card {
    display: flex;
    height: 100%;
    min-height: 150px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 23px;
    border-radius: 14px;
    color: var(--ch-white);
    background: linear-gradient(145deg, var(--ch-navy), var(--ch-blue));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ch-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(6, 43, 88, 0.28);
}

.ch-value-card:nth-child(2),
.ch-value-card:nth-child(3) {
    background: linear-gradient(145deg, var(--ch-red), var(--ch-red-dark));
}

.ch-value-card strong {
    display: block;
    margin-bottom: 7px;
    font-size: 16px;
}

.ch-value-card span {
    font-size: 12px;
    line-height: 1.6;
    opacity: 0.82;
}

/* Client logos marquee */
.ch-clients-marquee {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
}

.ch-clients-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 64px;
    animation: chClientsScroll 26s linear infinite;
}

.ch-clients-marquee:hover .ch-clients-track {
    animation-play-state: paused;
}

.ch-client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    height: 60px;
}

.ch-client-logo img {
    max-height: 100%;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.ch-client-logo img:hover {
    transform: translateY(-2px);
}

@keyframes chClientsScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .ch-clients-track {
        animation: none;
    }
}

@media (max-width: 575px) {
    .ch-clients-track {
        gap: 40px;
    }

    .ch-client-logo {
        height: 44px;
    }

    .ch-client-logo img {
        max-width: 120px;
    }
}

/* Testimonials */
.ch-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.ch-testimonial-card {
    position: relative;
    padding: 30px 27px 24px;
    border: 1px solid var(--ch-line);
    border-radius: 13px;
    background: var(--ch-white);
    box-shadow: 0 12px 32px rgba(6, 43, 88, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ch-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(6, 43, 88, 0.16);
}

.ch-testimonial-card::before {
    content: "“";
    position: absolute;
    top: 8px;
    right: 22px;
    color: rgba(228, 32, 38, 0.12);
    font-size: 75px;
    line-height: 1;
    font-family: Georgia, serif;
}

.ch-stars {
    margin-bottom: 15px;
    color: #f2b01e;
    letter-spacing: 2px;
}

.ch-testimonial-card blockquote {
    position: relative;
    z-index: 1;
    margin: 0 0 23px;
    color: var(--ch-muted);
    font-size: 14px;
    line-height: 1.8;
}

.ch-reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ch-reviewer-avatar {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: 0 0 44px;
    border-radius: 50%;
    overflow: hidden;
    color: var(--ch-white);
    background: linear-gradient(135deg, var(--ch-navy), var(--ch-blue));
    font-size: 14px;
    font-weight: 800;
    transition: transform 0.3s ease;
}

.ch-testimonial-card:hover .ch-reviewer-avatar {
    transform: scale(1.1);
}

.ch-reviewer-avatar svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
    fill: currentColor;
}

.ch-reviewer strong {
    display: block;
    color: var(--ch-navy);
    font-size: 13px;
}

.ch-reviewer span {
    
    color: var(--ch-muted);
    font-size: 11px;
}

/* Existing video section retained */
.word-section {
    padding: 80px 0;
    background: var(--ch-white);
}

.word-section h2 {
    margin: 0 0 35px;
    color: var(--ch-navy);
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    text-align: center;
}

.inner-video video {
    width: 100%;
    height: auto;
    display: block;
}

/* FAQ */
.ch-faq-grid {
    display: grid;
    grid-template-columns: 0.76fr 1.24fr;
    gap: 45px;
    align-items: center;
}

.ch-faq-visual {
    position: relative;
    padding: 30px;
    border-radius: 18px;
    background: linear-gradient(145deg, #dceeff, #f8fbff);
    overflow: hidden;
}

.ch-faq-visual img {
    width: 100%;
    height: 430px;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ch-faq-visual:hover img {
    transform: scale(1.04);
}

.ch-faq-list {
    display: grid;
    gap: 12px;
}

.ch-faq-item {
    border: 1px solid var(--ch-line);
    border-radius: 8px;
    background: var(--ch-white);
    box-shadow: 0 5px 16px rgba(6, 43, 88, 0.05);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ch-faq-item:hover {
    border-color: var(--ch-blue);
    box-shadow: var(--ch-shadow);
}

.ch-faq-item summary {
    position: relative;
    padding: 17px 52px 17px 18px;
    color: var(--ch-navy);
    cursor: pointer;
    list-style: none;
    font-size: 14px;
    font-weight: 700;
}

.ch-faq-item summary::-webkit-details-marker {
    display: none;
}

.ch-faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    color: var(--ch-red);
    font-size: 22px;
    transition: transform 0.25s ease;
}

.ch-faq-item[open] summary::after {
    content: "−";
}

.ch-faq-answer {
    padding: 0 18px 18px;
    color: var(--ch-muted);
    font-size: 13px;
    line-height: 1.75;
}

/* Bottom CTA */
.ch-bottom-cta {
    padding: 0 0 34px;
    background: var(--ch-soft);
}

.ch-bottom-cta-inner {
    width: 100%;
    color: var(--ch-white);
    background: linear-gradient(120deg, var(--ch-navy-dark), var(--ch-navy));
    box-shadow: var(--ch-shadow);
}

.ch-bottom-cta-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 46px 0;
}

.ch-bottom-cta h2 {
    margin: 0 0 8px;
    color: var(--ch-white);
    font-size: clamp(23px, 3vw, 34px);
    font-weight: 800;
}

.ch-bottom-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.65;
}

/* Popup */
.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(3, 18, 38, 0.76);
    backdrop-filter: blur(6px);
}

#enquiryPopup .popup-content {
    position: relative;
    width: min(380px, 100%);
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    background: var(--ch-white);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
    animation: chPopupIn 0.3s ease;
}

@keyframes chPopupIn {
    from { transform: translateY(18px) scale(0.96); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

#enquiryPopup .close-btn {
    position: absolute;
    z-index: 3;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--ch-white);
    background: rgba(255, 255, 255, 0.16);
    cursor: pointer;
    font-size: 13px;
    line-height: 1;
    transition: background 0.2s ease;
}

#enquiryPopup .close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Header */
.ch-schedule-header {
    position: relative;
    padding: 34px 26px 44px;
    text-align: center;
    background: var(--ch-navy);
    overflow: hidden;
}

.ch-schedule-header::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 18px;
    width: 64px;
    height: 64px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.35) 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    -webkit-mask-image: radial-gradient(circle at 0 0, #000 55%, transparent 100%);
    mask-image: radial-gradient(circle at 0 0, #000 55%, transparent 100%);
}

.ch-schedule-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--ch-white);
    color: var(--ch-navy);
    font-size: 22px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.ch-schedule-header h3 {
    position: relative;
    margin: 0 0 8px;
    color: var(--ch-white);
    font-size: 22px;
    font-weight: 800;
}

.ch-schedule-header p {
    position: relative;
    margin: 0 auto;
    max-width: 280px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.6;
}

/* Wave divider between header and form */
.ch-schedule-wave {
    position: relative;
    display: block;
    margin-top: -1px;
    line-height: 0;
}

.ch-schedule-wave svg {
    display: block;
    width: 100%;
    height: 34px;
}

.ch-wave-navy {
    fill: var(--ch-navy);
}

.ch-wave-red {
    fill: var(--ch-red);
}

/* Form */
.ch-schedule-form {
    padding: 6px 24px 26px;
}

.ch-sched-field {
    position: relative;
    margin-bottom: 12px;
}

.ch-sched-field i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: var(--ch-muted);
    font-size: 14px;
    pointer-events: none;
}

.ch-sched-field input,
.ch-sched-field textarea {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 1px solid var(--ch-line);
    border-radius: 10px;
    background: var(--ch-soft);
    color: var(--ch-text);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ch-sched-field input:focus,
.ch-sched-field textarea:focus {
    border-color: var(--ch-blue);
    background: var(--ch-white);
    box-shadow: 0 0 0 3px rgba(20, 93, 160, 0.12);
}

.ch-sched-field--textarea i {
    top: 15px;
    transform: none;
}

.ch-sched-field textarea {
    min-height: 84px;
    resize: vertical;
}

.ch-schedule-form button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 50px;
    margin-top: 4px;
    border: 0;
    border-radius: 10px;
    color: var(--ch-white);
    background: var(--ch-red);
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(228, 32, 38, 0.35);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ch-schedule-form button[type="submit"]:hover {
    background: var(--ch-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(228, 32, 38, 0.4);
}

.ch-schedule-form button[type="submit"] i {
    font-size: 15px;
}

/* "Get Quote" trigger button placed inside a page's .banner */
.banner-quote-btn {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 86px;
    border: 0;
    border-radius: 999px;
    background: var(--ch-blue, #145da0);
    color: #fff;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
    transition: background 0.2s ease, transform 0.2s ease;
}

.banner-quote-btn:hover {
    background: var(--ch-navy, #062b58);
    color: #fff;
    transform: translate(-50%, -50%) translateY(-2px);
}

@media (max-width: 575px) {
    .banner-quote-btn {
        top: auto;
        left: 12px;
        right: 12px;
        bottom: 12px;
        transform: none;
        justify-content: center;
        font-size: 13px;
        padding: 12px 16px;
    }

    .banner-quote-btn:hover {
        transform: none;
    }
}

/* Responsive */
@media (max-width: 1100px) {
    .ch-hero-inner {
        grid-template-columns: 1fr 350px;
        gap: 32px;
    }

    .ch-intro-grid {
        grid-template-columns: 0.8fr 1.2fr;
    }

    .ch-smart-card {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 0.8fr;
        align-items: center;
        gap: 25px;
    }

    .ch-smart-card img {
        height: 240px;
    }

    .ch-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ch-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .ch-section {
        padding: 70px 0;
    }

    .ch-hero {
        min-height: auto;
        padding-top: 104px;
    }

    .ch-hero-slide {
        background-position: 64% center;
    }

    .ch-hero::before {
        width: 100%;
        clip-path: none;
        background: rgba(245, 250, 255, 0.88);
    }

    .ch-hero-inner {
        grid-template-columns: 1fr;
        padding: 62px 0;
    }

    .ch-hero-copy {
        max-width: 720px;
    }

    .ch-quote-card {
        width: min(560px, 100%);
    }

    .ch-trusted-grid,
    .ch-process-intro,
    .ch-values-wrap,
    .ch-faq-grid {
        grid-template-columns: 1fr;
    }

    .ch-image-frame {
        max-width: 680px;
    }

    .ch-why-grid {
        grid-template-columns: 1fr;
    }

    .ch-why-image img {
        min-height: 360px;
        max-height: 430px;
    }

    .ch-process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ch-process-step:last-child {
        grid-column: 1 / -1;
    }

    .ch-process-step:nth-child(2)::after,
    .ch-process-step:nth-child(4)::after,
    .ch-process-step:last-child::after {
        display: none;
    }

    .ch-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .ch-faq-visual {
        max-width: 620px;
        margin-inline: auto;
    }
}

@media (max-width: 700px) {
    .ch-container,
    .ch-hero-inner {
        width: min(100% - 28px, 1180px);
    }

    .ch-section {
        padding: 56px 0;
    }

    .ch-hero {
        padding-top: 92px;
    }

    .ch-hero-slide {
        background-position: 70% center;
    }

    .ch-hero-inner {
        padding: 50px 0;
    }

    .ch-hero h1 {
        font-size: clamp(38px, 12vw, 56px);
    }

    .ch-hero-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 360px;
    }

    .ch-intro-grid {
        grid-template-columns: 1fr;
    }

    .ch-product-visual {
        min-height: 340px;
    }

    .ch-smart-card {
        grid-template-columns: 1fr;
    }

    .ch-smart-card img {
        height: 220px;
    }

    .ch-mini-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ch-image-frame,
    .ch-image-frame img {
        min-height: 360px;
        height: 360px;
    }

    .ch-image-frame::before {
        inset: 22px 16px -14px -10px;
    }

    .ch-trust-points,
    .ch-check-grid,
    .ch-values-grid {
        grid-template-columns: 1fr;
    }

    .ch-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ch-why-content,
    .ch-values-copy {
        padding: 34px 24px;
    }

    .ch-benefits-grid {
        grid-template-columns: 1fr;
    }

    .ch-process-steps {
        grid-template-columns: 1fr;
    }

    .ch-process-step {
        min-height: auto;
    }

    .ch-process-step::after {
        display: none !important;
    }

    .ch-bottom-cta-flex {
        align-items: flex-start;
        flex-direction: column;
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .ch-title {
        font-size: 30px;
    }

    .ch-hero h1 {
        font-size: 38px;
    }

    .ch-hero-subtitle {
        font-size: 16px;
    }

    .ch-hero-description,
    .ch-copy p,
    .ch-section-head p {
        font-size: 14px;
        line-height: 1.75;
    }

    .ch-hero-actions {
        flex-direction: column;
    }

    .ch-hero-actions .ch-btn {
        width: 100%;
    }

    .ch-quote-form {
        padding: 18px;
    }

    .ch-products-grid {
        grid-template-columns: 1fr;
    }

    .ch-product-card img {
        height: 210px;
    }

    .ch-process-image img,
    .ch-faq-visual img {
        height: 300px;
    }

    .ch-faq-visual {
        padding: 16px;
    }

    #enquiryPopup .popup-content {
        width: 100%;
    }

    .ch-schedule-header {
        padding: 28px 20px 38px;
    }

    .ch-schedule-icon {
        width: 50px;
        height: 50px;
        font-size: 19px;
    }

    .ch-schedule-header h3 {
        font-size: 20px;
    }

    .ch-schedule-form {
        padding: 6px 18px 22px;
    }
}

@media (max-width: 380px) {
    .popup-overlay {
        padding: 12px;
    }

    .ch-schedule-header p {
        max-width: 240px;
    }
}




/* ====================================
   CHENDUR THREE BANNER HERO
==================================== */

.ch-hero {
    --ch-navy: #082d5b;
    --ch-blue: #134f88;
    --ch-red: #e51c25;
    --ch-white: #ffffff;
    position: relative;
    width: 100%;
    margin-top: 18px;
    overflow: hidden;
    background: #eef4fa;
}

.ch-hero-swiper {
    width: 100%;
    height: 650px;
}

.ch-hero-slide {
    position: relative;
    min-height: 650px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* .ch-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(245, 249, 253, 0.98) 0%,
            rgba(245, 249, 253, 0.93) 38%,
            rgba(245, 249, 253, 0.45) 58%,
            rgba(3, 26, 53, 0.45) 100%
        );
}

.ch-hero-overlay--dark {
    background:
        linear-gradient(
            90deg,
            rgba(4, 35, 71, 0.96) 0%,
            rgba(4, 35, 71, 0.89) 40%,
            rgba(4, 35, 71, 0.35) 67%,
            rgba(0, 0, 0, 0.38) 100%
        );
}

.ch-hero-overlay--blue {
    background:
        linear-gradient(
            90deg,
            rgba(238, 246, 253, 0.97) 0%,
            rgba(238, 246, 253, 0.90) 41%,
            rgba(7, 47, 90, 0.38) 70%,
            rgba(2, 22, 45, 0.52) 100%
        );
} */

.ch-hero-container {
    position: relative;
    z-index: 3;
    width: min(1240px, calc(100% - 40px));
    height: 100%;
    min-height: 650px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.ch-hero-copy {
    width: min(650px, 54%);
    padding: 50px 0 80px;
}

.ch-hero-label {
    margin-bottom: 16px;
    color: var(--ch-red);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 1.5;
    text-transform: uppercase;
}

.ch-hero h1,
.ch-hero-heading {
    margin: 0 0 18px;
    color: var(--ch-navy);
    font-family: inherit;
    font-size: clamp(44px, 4.5vw, 72px);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

.ch-hero h1 span,
.ch-hero-heading span {
    display: block;
    color: var(--ch-red);
}

.ch-hero-overlay--dark + .ch-hero-container .ch-hero-heading,
.ch-hero-overlay--dark + .ch-hero-container .ch-hero-subtitle,
.ch-hero-overlay--dark + .ch-hero-container .ch-hero-description {
    color: #ffffff;
}

.ch-hero-subtitle {
    margin: 0 0 15px;
    color: var(--ch-navy);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
}

.ch-hero-description {
    max-width: 610px;
    margin: 0;
    color: #334e6f;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: 0;
    word-spacing: 0;
}

.ch-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 27px;
}

.ch-btn {
    min-height: 50px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease;
}

.ch-btn--red {
    background: linear-gradient(135deg, #e91e28, #c80f18);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(229, 28, 37, 0.22);
}

.ch-btn--red:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(229, 28, 37, 0.31);
}

.ch-btn--outline {
    border-color: var(--ch-navy);
    background: rgba(255, 255, 255, 0.88);
    color: var(--ch-navy);
}

.ch-btn--outline:hover {
    background: var(--ch-navy);
    color: #ffffff;
    transform: translateY(-3px);
}

.ch-hero-features {
    max-width: 610px;
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.ch-hero-feature {
    position: relative;
    min-height: 88px;
    padding: 0 12px;
    border-right: 1px solid rgba(8, 45, 91, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--ch-navy);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

.ch-hero-feature:last-child {
    border-right: 0;
}

.ch-feature-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
    border: 1px solid rgba(8, 45, 91, 0.20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--ch-red);
    font-size: 17px;
    box-shadow: 0 7px 18px rgba(8, 45, 91, 0.10);
}

/* .ch-hero-overlay--dark
    + .ch-hero-container
    .ch-hero-feature {
    border-color: rgba(255, 255, 255, 0.24);
    color: #ffffff;
} */

/* Quote form */

.ch-quote-card {
    position: absolute;
    z-index: 10;
    top: 50%;
    right: max(30px, calc((100% - 1240px) / 2));
    width: 390px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 24px 55px rgba(0, 25, 54, 0.27);
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
}

.ch-quote-title {
    margin: 0 !important;
    padding: 19px 20px;
    background: linear-gradient(135deg, var(--ch-navy), var(--ch-blue));
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.ch-quote-form {
    padding: 21px;
}

.ch-field {
    margin-bottom: 12px;
}

.ch-field input,
.ch-field select,
.ch-field textarea {
    width: 100%;
    height: 48px;
    padding: 12px 14px;
    border: 1px solid #d2dfec;
    border-radius: 5px;
    outline: none;
    background: #ffffff;
    color: #273d59;
    font-family: inherit;
    font-size: 14px;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.ch-field textarea {
    height: 88px;
    min-height: 88px;
    resize: vertical;
}

.ch-field input:focus,
.ch-field select:focus,
.ch-field textarea:focus {
    border-color: var(--ch-blue);
    box-shadow: 0 0 0 3px rgba(19, 79, 136, 0.10);
}

.ch-quote-form .ch-btn {
    width: 100%;
    border: 0;
    cursor: pointer;
}

/* Swiper controls */

.ch-hero-prev,
.ch-hero-next {
    z-index: 12;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(8, 45, 91, 0.86);
    color: #ffffff;
    opacity: 0;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        background-color 0.3s ease;
}

.ch-hero:hover .ch-hero-prev,
.ch-hero:hover .ch-hero-next {
    opacity: 1;
}

.ch-hero-prev {
    left: 22px;
}

.ch-hero-next {
    right: 22px;
}

.ch-hero-prev::after,
.ch-hero-next::after {
    font-size: 16px;
    font-weight: 800;
}

.ch-hero-prev:hover,
.ch-hero-next:hover {
    background: var(--ch-red);
    transform: scale(1.08);
}

.ch-hero-pagination {
    z-index: 12;
    bottom: 20px !important;
}

.ch-hero-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: var(--ch-navy);
    opacity: 0.45;
}

.ch-hero-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 10px;
    background: var(--ch-red);
    opacity: 1;
}

/* Banner animation */

.ch-hero-slide .ch-hero-label,
.ch-hero-slide h1,
.ch-hero-slide .ch-hero-heading,
.ch-hero-slide .ch-hero-subtitle,
.ch-hero-slide .ch-hero-description,
.ch-hero-slide .ch-hero-actions,
.ch-hero-slide .ch-hero-features {
    opacity: 0;
    transform: translateY(30px);
}

.ch-hero-slide.swiper-slide-active .ch-hero-label {
    animation: chHeroReveal 0.65s ease 0.18s forwards;
}

.ch-hero-slide.swiper-slide-active h1,
.ch-hero-slide.swiper-slide-active .ch-hero-heading {
    animation: chHeroReveal 0.7s ease 0.30s forwards;
}

.ch-hero-slide.swiper-slide-active .ch-hero-subtitle {
    animation: chHeroReveal 0.65s ease 0.42s forwards;
}

.ch-hero-slide.swiper-slide-active .ch-hero-description {
    animation: chHeroReveal 0.65s ease 0.53s forwards;
}

.ch-hero-slide.swiper-slide-active .ch-hero-actions {
    animation: chHeroReveal 0.65s ease 0.64s forwards;
}

.ch-hero-slide.swiper-slide-active .ch-hero-features {
    animation: chHeroReveal 0.65s ease 0.74s forwards;
}

@keyframes chHeroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet */

@media (max-width: 1199px) {
    .ch-hero-swiper,
    .ch-hero-slide,
    .ch-hero-container {
        min-height: 620px;
        height: 620px;
    }

    .ch-hero-container {
        width: calc(100% - 50px);
    }

    .ch-hero-copy {
        width: 53%;
    }

    .ch-quote-card {
        right: 25px;
        width: 350px;
    }

    .ch-hero h1,
    .ch-hero-heading {
        font-size: 48px;
    }
}

/* Mobile and tablet */

@media (max-width: 991px) {
    .ch-hero {
        margin-top: 12px;
        overflow: visible;
    }

    .ch-hero-swiper,
    .ch-hero-slide,
    .ch-hero-container {
        height: 590px;
        min-height: 590px;
    }

    /* .ch-hero-overlay,
    .ch-hero-overlay--dark,
    .ch-hero-overlay--blue {
        background:
            linear-gradient(
                90deg,
                rgba(244, 249, 253, 0.97) 0%,
                rgba(244, 249, 253, 0.90) 62%,
                rgba(6, 35, 67, 0.42) 100%
            );
    } */

    .ch-hero-container {
        width: calc(100% - 40px);
        align-items: center;
    }

    .ch-hero-copy {
        width: calc(100% - 350px);
        padding: 40px 0 65px;
    }

    .ch-hero h1,
    .ch-hero-heading {
        font-size: 39px;
    }

    .ch-hero-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .ch-hero-features {
        gap: 3px;
    }

    .ch-hero-feature {
        padding: 0 5px;
        font-size: 11px;
    }

    .ch-quote-card {
        right: 20px;
        width: 320px;
    }

    .ch-quote-form {
        padding: 15px;
    }

    .ch-field {
        margin-bottom: 9px;
    }

    .ch-field input,
    .ch-field select {
        height: 43px;
    }

    .ch-field textarea {
        height: 72px;
        min-height: 72px;
    }
}

/* Mobile */

@media (max-width: 767px) {
    .ch-hero {
        padding-bottom: 24px;
        background: #eef4fa;
    }

    .ch-hero-swiper,
    .ch-hero-slide,
    .ch-hero-container {
        height: 600px;
        min-height: 600px;
    }

    .ch-hero-slide {
        background-position: center;
    }

    /* .ch-hero-overlay,
    .ch-hero-overlay--dark,
    .ch-hero-overlay--blue {
        background:
            linear-gradient(
                180deg,
                rgba(242, 248, 253, 0.97) 0%,
                rgba(242, 248, 253, 0.92) 68%,
                rgba(7, 39, 75, 0.70) 100%
            );
    } */

    .ch-hero-container {
        width: calc(100% - 30px);
        align-items: flex-start;
    }

    .ch-hero-copy {
        width: 100%;
        padding: 52px 0 65px;
        text-align: center;
    }

    .ch-hero-copy p {
        text-align: center;
    }

    .ch-hero-label {
        font-size: 11px;
    }

    .ch-hero h1,
    .ch-hero-heading {
        font-size: clamp(34px, 10vw, 46px);
        letter-spacing: -0.6px;
    }

    .ch-hero-subtitle {
        font-size: 17px;
    }

    .ch-hero-description {
        max-width: 520px;
        margin-right: auto;
        margin-left: auto;
        font-size: 14px;
        line-height: 1.7;
    }

    .ch-hero-actions {
        justify-content: center;
    }

    .ch-hero-features {
        max-width: 440px;
        margin: 28px auto 0;
        grid-template-columns: repeat(4, 1fr);
    }

    .ch-hero-feature {
        min-height: 78px;
        font-size: 10px;
    }

    .ch-feature-icon {
        width: 36px;
        height: 36px;
    }

    .ch-quote-card {
        position: relative;
        top: auto;
        right: auto;
        width: calc(100% - 30px);
        max-width: 520px;
        margin: -18px auto 0;
        transform: none;
    }

    .ch-hero-prev,
    .ch-hero-next {
        display: none;
    }

    .ch-hero-pagination {
        bottom: 31px !important;
    }
}

/* Small mobiles */

@media (max-width: 480px) {
    .ch-hero-swiper,
    .ch-hero-slide,
    .ch-hero-container {
        height: 140px;
        min-height: 140px;
    }

    .ch-hero-copy {
        padding-top: 40px;
    }

    .ch-hero h1,
    .ch-hero-heading {
        font-size: 35px;
        line-height: 1.08;
    }

    .ch-hero-actions {
        flex-direction: column;
    }

    .ch-hero-actions .ch-btn {
        width: 100%;
    }

    .ch-hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 0;
    }

    .ch-hero-feature:nth-child(2) {
        border-right: 0;
    }

    .ch-hero-feature {
        min-height: 70px;
    }

    .ch-quote-title {
        font-size: 18px;
    }
}
/* =========================================================
   HERO ALIGNMENT FIX - KEEP THIS BLOCK AT THE VERY END
   ========================================================= */

/* Remove the empty area between the default header and hero */
.ch-home main,
main.ch-home,
.ch-hero {
    margin-top: 0 !important;
}

.ch-hero {
    padding-top: 0 !important;
    min-height: 650px !important;
    height: 650px;
    overflow: hidden;
}

.ch-hero-swiper,
.ch-hero-swiper .swiper-wrapper,
.ch-hero-swiper .swiper-slide,
.ch-hero-slide,
.ch-hero-container {
    height: 650px !important;
    min-height: 650px !important;
}

/* Keep the form vertically centred; the old animation was removing translateY(-50%) */
.ch-quote-card {
    top: 50% !important;
    bottom: auto !important;
    right: max(30px, calc((100% - 1240px) / 2)) !important;
    width: 390px;
    max-height: calc(100% - 48px);
    transform: translateY(-50%) !important;
    animation: chQuoteCardReveal 0.75s ease 0.35s both !important;
}

@keyframes chQuoteCardReveal {
    from {
        opacity: 0;
        transform: translateY(calc(-50% + 22px));
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

/* Compact form spacing so the complete form stays inside the banner */
.ch-quote-title {
    padding: 16px 20px;
    font-size: 19px;
}

.ch-quote-form {
    padding: 18px 20px 20px;
}

.ch-field {
    margin-bottom: 10px;
}

.ch-field input,
.ch-field select {
    height: 45px;
    min-height: 45px;
}

.ch-field textarea {
    height: 76px;
    min-height: 76px;
}

.ch-quote-form .ch-btn {
    min-height: 46px;
}

/* Keep content and form balanced on medium desktop widths */
@media (max-width: 1365px) {
    .ch-hero-container {
        width: min(1180px, calc(100% - 50px));
    }

    .ch-hero-copy {
        width: min(610px, calc(100% - 390px));
        padding-right: 34px;
    }

    .ch-quote-card {
        right: 25px !important;
        width: 350px;
    }
}

@media (max-width: 1199px) {
    .ch-hero,
    .ch-hero-swiper,
    .ch-hero-swiper .swiper-wrapper,
    .ch-hero-swiper .swiper-slide,
    .ch-hero-slide,
    .ch-hero-container {
        height: 620px !important;
        min-height: 620px !important;
    }

    .ch-quote-card {
        width: 330px;
        max-height: calc(100% - 32px);
    }

    .ch-quote-form {
        padding: 14px 16px 16px;
    }

    .ch-field {
        margin-bottom: 8px;
    }

    .ch-field input,
    .ch-field select {
        height: 41px;
        min-height: 41px;
    }

    .ch-field textarea {
        height: 65px;
        min-height: 65px;
    }
}

@media (max-width: 991px) {
    .ch-hero {
        margin-top: 0 !important;
        padding-top: 0 !important;
        height: auto !important;
        min-height: 0 !important;
        overflow: visible;
    }

    .ch-hero-swiper,
    .ch-hero-swiper .swiper-wrapper,
    .ch-hero-swiper .swiper-slide,
    .ch-hero-slide,
    .ch-hero-container {
        height: 590px !important;
        min-height: 590px !important;
    }

    .ch-quote-card {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        width: calc(100% - 30px);
        max-width: 520px;
        max-height: none;
        margin: 20px auto 0;
        transform: none !important;
        animation: none !important;
    }
}

@media (max-width: 767px) {
    .ch-hero {
        padding-bottom: 24px !important;
    }

    .ch-hero-swiper,
    .ch-hero-swiper .swiper-wrapper,
    .ch-hero-swiper .swiper-slide,
    .ch-hero-slide,
    .ch-hero-container {
        height: 600px !important;
        min-height: 600px !important;
    }

    .ch-quote-card {
        position: relative;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: calc(100% - 30px);
        max-width: 520px;
        max-height: none;
        margin: 20px auto 0;
        transform: none !important;
        animation: chQuoteCardMobileReveal 0.65s ease both !important;
    }

    @keyframes chQuoteCardMobileReveal {
        from {
            opacity: 0;
            transform: translateY(18px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 480px) {
    .ch-hero-swiper,
    .ch-hero-swiper .swiper-wrapper,
    .ch-hero-swiper .swiper-slide,
    .ch-hero-slide,
    .ch-hero-container {
        height: 140px !important;
        min-height: 170px !important;
    }
}

/* =========================================================
   FINAL ALIGNMENT FIXES
   Header gap, lighter hero typography and full-width CTA
   ========================================================= */

/* Small, consistent gap below the default header */
.ch-hero {
    margin-top: 10px !important;
}

/* Lighter hero typography */
.ch-hero h1,
.ch-hero-heading {
    font-weight: 500 !important;
    letter-spacing: -1px !important;
}

.ch-hero-label,
.ch-hero-subtitle,
.ch-hero-description {
    font-weight: 500 !important;
}

/* Full-width upgrade section */
.ch-bottom-cta {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 58px 0;
    overflow: hidden;
    color: var(--ch-white);
    background: linear-gradient(120deg, var(--ch-navy-dark), var(--ch-navy));
}

.ch-bottom-cta::before {
    content: "";
    position: absolute;
    top: -130px;
    right: -100px;
    width: 360px;
    height: 360px;
    border: 55px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
    pointer-events: none;
}

.ch-bottom-cta::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ch-blue) 0 55%, var(--ch-red) 55% 100%);
}

/* The HTML uses: class="ch-container ch-bottom-cta-inner" */
.ch-bottom-cta .ch-bottom-cta-inner {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 40px)) !important;
    max-width: 1180px !important;
    min-height: 0;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    color: var(--ch-white);
    background: transparent !important;
    box-shadow: none !important;
}

.ch-bottom-cta-copy {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 900px;
    text-align: left;
}

.ch-bottom-cta h2 {
    margin: 0 0 14px !important;
    color: var(--ch-white) !important;
    font-family: "Poppins", Arial, sans-serif !important;
    font-size: clamp(27px, 3vw, 40px) !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.02em !important;
    text-align: left;
}

.ch-bottom-cta p {
    max-width: 900px;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-family: "Poppins", Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.8 !important;
    letter-spacing: 0 !important;
    word-spacing: 0 !important;
    text-align: left;
}

.ch-bottom-cta .ch-btn {
    min-width: 190px;
    min-height: 52px;
    flex: 0 0 auto;
    padding: 14px 26px;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .ch-hero {
        margin-top: 8px !important;
    }

    .ch-bottom-cta {
        padding: 48px 0;
    }

    .ch-bottom-cta .ch-bottom-cta-inner {
        gap: 30px;
    }

    .ch-bottom-cta h2 {
        font-size: 30px !important;
    }
}

@media (max-width: 767px) {
    .ch-hero {
        margin-top: 8px !important;
    }

    .ch-bottom-cta {
        padding: 42px 0;
    }

    .ch-bottom-cta .ch-bottom-cta-inner {
        width: min(100% - 30px, 1180px) !important;
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .ch-bottom-cta-copy {
        max-width: 100%;
    }

    .ch-bottom-cta h2 {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }

    .ch-bottom-cta p {
        font-size: 14px !important;
        line-height: 1.75 !important;
    }

    .ch-bottom-cta .ch-btn {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .ch-bottom-cta {
        padding: 36px 0;
    }

    .ch-bottom-cta h2 {
        font-size: 25px !important;
    }
}

/* =====================================================
   MOBILE: FORM BELOW THE HERO BANNER
   Keep this block at the very end of home-upvc.css
===================================================== */

@media (max-width: 991px) {

    /* Stack Swiper and form vertically */
    .ch-hero {
        display: block !important;
        width: 100%;
        height: auto !important;
        min-height: 0 !important;
        margin-top: 8px !important;
        padding: 0 0 30px !important;
        overflow: visible !important;
        background: #eef4fa;
    }

    /* Hero banner stays first */
    .ch-hero-swiper {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        height: 460px !important;
        min-height: 460px !important;
        order: 1;
    }

    .ch-hero-swiper .swiper-wrapper,
    .ch-hero-swiper .swiper-slide,
    .ch-hero-slide,
    .ch-hero-container {
        width: 100% !important;
        height: 460px !important;
        min-height: 460px !important;
    }

    /* Hide the hero banner text/copy on mobile — image + quote form only */
    .ch-hero-copy {
        display: none !important;
    }

    /* Form comes completely after banner */
    .ch-quote-card {
        position: relative !important;
        inset: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        display: block !important;
        width: calc(100% - 30px) !important;
        max-width: 520px !important;
        max-height: none !important;

        margin: 25px auto 0 !important;
        transform: none !important;
        animation: chMobileFormReveal 0.6s ease both !important;
        order: 2;

        border-radius: 12px;
        overflow: hidden;
        background: #ffffff;
        box-shadow: 0 16px 40px rgba(6, 43, 88, 0.18);
    }

    @keyframes chMobileFormReveal {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Mobile phones */
@media (max-width: 767px) {

    .ch-hero-swiper,
    .ch-hero-swiper .swiper-wrapper,
    .ch-hero-swiper .swiper-slide,
    .ch-hero-slide,
    .ch-hero-container {
        height: 440px !important;
        min-height: 440px !important;
    }

    .ch-quote-card {
        width: calc(100% - 24px) !important;
        margin-top: 20px !important;
    }

    .ch-quote-title {
        padding: 16px 15px !important;
        font-size: 18px !important;
    }

    .ch-quote-form {
        padding: 18px !important;
    }
}

/* Small mobile phones */
@media (max-width: 480px) {

    .ch-hero-swiper,
    .ch-hero-swiper .swiper-wrapper,
    .ch-hero-swiper .swiper-slide,
    .ch-hero-slide,
    .ch-hero-container {
        height: 120px !important;
        min-height: 170px !important;
    }

    .ch-quote-card {
        width: calc(100% - 20px) !important;
    }

    .ch-field input,
    .ch-field select {
        width: 100% !important;
        height: 46px !important;
        min-height: 46px !important;
    }

    .ch-field textarea {
        width: 100% !important;
        height: 90px !important;
        min-height: 90px !important;
    }

    .ch-quote-form .ch-btn {
        width: 100% !important;
    }
}

/* =========================================================
   Inner Page Hero (About / Services / other content pages)
   Reuses the site's ch- color system and Poppins font so
   these pages match the homepage's modern look.
   ========================================================= */

.ch-page-hero {
    position: relative;
    width: 100%;
    margin-top: 8px;
    padding: 78px 0 66px;
    overflow: hidden;
    text-align: center;
    color: var(--ch-white);
    background: linear-gradient(120deg, var(--ch-navy-dark), var(--ch-navy) 60%, var(--ch-blue));
}

.ch-page-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ch-blue) 0 55%, var(--ch-red) 55% 100%);
}

.ch-page-hero-inner {
    position: relative;
    z-index: 1;
    width: min(820px, calc(100% - 40px));
    margin: 0 auto;
}

.ch-page-hero .ch-kicker {
    justify-content: center;
}

.ch-page-hero h1 {
    margin: 0 0 16px;
    color: var(--ch-white);
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.ch-page-hero p {
    margin: 0 auto;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
    line-height: 1.85;
    text-align: center;
}

@media (max-width: 700px) {
    .ch-page-hero {
        padding: 56px 0 46px;
        margin-top: 6px;
    }
}

/* =========================================================
   Services page — distinct layout so it doesn't read as a
   copy of the About page. Split hero, side-by-side window/
   door panels, icon-pill benefit strip. Same font + palette.
   ========================================================= */

.ch-svc-hero {
    position: relative;
    width: 100%;
    margin-top: 8px;
    padding: 72px 0;
    overflow: hidden;
    color: var(--ch-white);
    background: linear-gradient(120deg, var(--ch-navy-dark), var(--ch-navy) 55%, var(--ch-blue));
}

.ch-svc-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ch-blue) 0 55%, var(--ch-red) 55% 100%);
}

.ch-svc-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 50px;
    align-items: center;
}

.ch-svc-hero .ch-kicker {
    color: #ff8a90;
}

.ch-svc-hero .ch-kicker::before {
    background: #ff8a90;
}

.ch-svc-hero h1 {
    margin: 0 0 16px;
    color: var(--ch-white);
    font-size: clamp(30px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.ch-svc-hero p {
    margin: 0 0 26px;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.85;
}

.ch-svc-hero-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(3, 28, 59, 0.35);
}

.ch-svc-hero-visual img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ch-svc-hero-visual:hover img {
    transform: scale(1.04);
}

@media (max-width: 900px) {
    .ch-svc-hero-grid {
        grid-template-columns: 1fr;
    }

    .ch-svc-hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .ch-svc-hero p {
        max-width: 100%;
    }
}

/* Window / door type showcase */
.ch-svc-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.ch-svc-type-panel {
    padding: 34px;
    border-radius: 16px;
    background: var(--ch-white);
    box-shadow: var(--ch-shadow);
    border-top: 4px solid var(--ch-navy);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ch-svc-type-panel:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(6, 43, 88, 0.18);
}

.ch-svc-type-panel--doors {
    border-top-color: var(--ch-red);
}

.ch-svc-type-panel h3 {
    margin: 0 0 8px;
    color: var(--ch-navy);
    font-size: 22px;
    font-weight: 800;
}

.ch-svc-type-panel p {
    margin: 0 0 22px;
    color: var(--ch-muted);
    font-size: 15px;
    line-height: 1.75;
}

.ch-svc-type-list {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ch-svc-type-list li {
    position: relative;
    padding-left: 26px;
    color: var(--ch-text);
    font-size: 15px;
    font-weight: 600;
}

.ch-svc-type-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: var(--ch-navy);
}

.ch-svc-type-panel--doors .ch-svc-type-list li::before {
    background: var(--ch-red);
}

@media (max-width: 768px) {
    .ch-svc-types {
        grid-template-columns: 1fr;
    }
}

/* Benefit strip — icon pills instead of numbered cards */
.ch-svc-benefit-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.ch-svc-benefit-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 12px;
    background: var(--ch-white);
    box-shadow: 0 10px 26px rgba(6, 43, 88, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ch-svc-benefit-pill:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(6, 43, 88, 0.14);
}

.ch-svc-benefit-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--ch-navy), var(--ch-blue));
    color: var(--ch-white);
    font-weight: 800;
    font-size: 13px;
}

.ch-svc-benefit-pill strong {
    display: block;
    margin-bottom: 2px;
    color: var(--ch-navy);
    font-size: 15px;
}

.ch-svc-benefit-pill span {
    color: var(--ch-muted);
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .ch-svc-benefit-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .ch-svc-benefit-strip {
        grid-template-columns: 1fr;
    }
}

/* Precision — compact horizontal step row (replaces a 2nd image+copy block) */
.ch-svc-precision-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 10px;
}

.ch-svc-precision-step {
    position: relative;
    padding: 26px 22px 22px;
    border-radius: 14px;
    background: var(--ch-white);
    box-shadow: var(--ch-shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ch-svc-precision-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(6, 43, 88, 0.18);
}

.ch-svc-precision-step:hover span {
    transform: scale(1.1) rotate(-6deg);
}

.ch-svc-precision-step p {
    text-align: center;
}

.ch-svc-precision-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
    border-radius: 50%;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, var(--ch-red), var(--ch-red-dark));
    color: var(--ch-white);
    font-weight: 800;
    font-size: 14px;
}

.ch-svc-precision-step h3 {
    margin: 0 0 8px;
    color: var(--ch-navy);
    font-size: 17px;
    font-weight: 700;
}

.ch-svc-precision-step p {
    margin: 0;
    color: var(--ch-muted);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 700px) {
    .ch-svc-precision-steps {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Scroll reveal animation (About / Services pages)

   Gated behind body.ch-reveal-ready, which JS adds only once
   it is actually running and has wired up the observer below.
   If JS is blocked or fails, .ch-reveal elements simply stay
   at their default opacity: 1 — never permanently invisible.
   ========================================================= */

.ch-reveal {
    opacity: 1;
    transform: none;
}

body.ch-reveal-ready .ch-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: calc(var(--ch-reveal-i, 0) * 70ms);
}

body.ch-reveal-ready .ch-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   Testimonial swiper (shared across all pages)
   ========================================================= */

.ch-testimonial-swiper {
    padding: 6px 6px 8px;
    overflow: hidden;
}

/* Swiper's own CSS sets .swiper-wrapper{height:100%}; with no explicit
   height on the swiper container, that resolves against the viewport
   instead of the content, stretching every slide to full-screen height.
   Force both back to their natural content height. */
.ch-testimonial-swiper .swiper-wrapper {
    height: auto !important;
}

.ch-testimonial-swiper .swiper-slide {
    height: auto !important;
    display: flex;
}

.ch-testimonial-swiper .ch-testimonial-card {
    width: 100%;
}

.ch-testimonial-pagination {
    position: static !important;
    margin-top: 26px;
    text-align: center;
}

.ch-testimonial-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin: 0 4px !important;
    background: var(--ch-navy);
    opacity: 0.35;
    transition: width 0.25s ease, opacity 0.25s ease;
}

.ch-testimonial-pagination .swiper-pagination-bullet-active {
    width: 26px;
    border-radius: 10px;
    background: var(--ch-red);
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    body.ch-reveal-ready .ch-reveal {
        transition-duration: 0.01ms;
        transform: none;
    }
}

/* ============================================================
   Contact page
   ============================================================ */
.ch-contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}

.ch-contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ch-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--ch-white);
    border: 1px solid var(--ch-line);
    border-radius: 14px;
    box-shadow: var(--ch-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ch-contact-info-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(6, 43, 88, 0.16);
}

.ch-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ch-navy), var(--ch-blue));
    color: var(--ch-white);
    font-size: 18px;
}

.ch-contact-info-item h3 {
    margin: 0 0 4px;
    color: var(--ch-navy);
    font-size: 15px;
    font-weight: 700;
}

.ch-contact-info-item p,
.ch-contact-info-item a {
    margin: 0;
    color: var(--ch-muted);
    font-size: 14.5px;
    line-height: 1.6;
    text-decoration: none;
}

.ch-contact-info-item a:hover {
    color: var(--ch-red);
}

.ch-contact-map {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--ch-shadow);
}

.ch-contact-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.ch-contact-form-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px;
    background: var(--ch-white);
    border: 1px solid var(--ch-line);
    border-radius: 20px;
    box-shadow: var(--ch-shadow);
}

.ch-contact-form-card > p {
    color: var(--ch-muted);
    margin: 0 0 24px;
}

.ch-contact-form-card .ch-field {
    margin-bottom: 18px;
}

.ch-contact-form-card .ch-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--ch-navy);
    font-size: 14px;
    font-weight: 600;
}

.ch-contact-form-card .error-message {
    display: block;
    margin-top: 6px;
    font-size: 13px;
}

@media (max-width: 991px) {
    .ch-contact-split {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .ch-contact-map {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 600px) {
    .ch-contact-form-card {
        padding: 26px 20px;
    }
}