:root {
    --ink: #06233b;
    --ink-2: #0a304f;
    --gold: #c9872d;
    --gold-2: #d79a3b;
    --paper: #ffffff;
    --soft: #f4efe8;
    --muted: #6d7884;
    --line: #e6e0d8;
    --shadow: 0 18px 42px rgba(6, 35, 59, .12);
}

* {
    box-sizing: border-box;
}

body.public-site {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Tajawal", Arial, "Tahoma", sans-serif;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

.site-shell {
    width: min(1170px, calc(100% - 48px));
    margin-inline: auto;
}

.top-strip {
    background: #031f35;
    color: #fff;
    font-size: 13px;
}

.top-strip__inner,
.main-nav__inner {
    display: flex;
    align-items: center;
}

.top-strip__inner {
    min-height: 34px;
    gap: 28px;
}

.top-strip__actions {
    margin-inline-start: auto;
    display: flex;
    align-items: stretch;
    gap: 18px;
}

.quote-mini {
    background: var(--gold);
    padding: 9px 18px;
    font-weight: 700;
}

.main-nav {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 20;
    color: var(--ink);
    transition: background .24s ease, box-shadow .24s ease, border-color .24s ease, color .24s ease, top .24s ease;
}

.has-home-slider .main-nav {
    position: absolute;
    top: 34px;
    inset-inline: 0;
    z-index: 40;
    background: transparent;
    border-bottom-color: transparent;
    color: #fff;
}

.has-home-slider.public-nav-solid .main-nav {
    position: fixed;
    top: 0;
    background: #fff;
    color: var(--ink);
    border-bottom-color: #e8e8e8;
    box-shadow: 0 10px 28px rgba(6, 35, 59, .12);
}

.main-nav__inner {
    min-height: 76px;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 315px;
}

.brand__logo {
    width: 58px;
    height: 70px;
    flex: 0 0 auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .18));
    transition: filter .24s ease;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    color: var(--ink);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.15;
    transition: color .24s ease;
}

.brand small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
    transition: color .24s ease;
}

.has-home-slider:not(.public-nav-solid) .brand strong {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .36);
}

.has-home-slider:not(.public-nav-solid) .brand small {
    color: rgba(255, 255, 255, .82);
}

.nav-links {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    font-size: 14px;
    font-weight: 700;
}

.nav-links a {
    padding: 28px 0 24px;
    border-bottom: 3px solid transparent;
}

.nav-links a i {
    display: none;
}

.nav-links .active {
    color: var(--gold);
    border-color: var(--gold);
}

.has-home-slider:not(.public-nav-solid) .nav-links a {
    text-shadow: 0 2px 10px rgba(0, 0, 0, .32);
}

.language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(6, 35, 59, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 6px 18px rgba(6, 35, 59, .12);
    flex: 0 0 auto;
}

.language-toggle a {
    position: relative;
    display: inline-grid;
    place-items: center;
    min-width: 42px;
    min-height: 34px;
    padding: 0 12px;
    color: var(--ink);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    overflow: hidden;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.language-toggle a:before {
    content: "";
    position: absolute;
    inset: 50%;
    width: 0;
    height: 0;
    background: rgba(201, 135, 45, .18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .25s ease, height .25s ease;
}

.language-toggle a:hover:before {
    width: 90px;
    height: 90px;
}

.language-toggle a:hover {
    transform: translateY(-1px);
}

.language-toggle a.is-active {
    color: #fff;
    background: var(--gold);
    box-shadow: 0 6px 14px rgba(201, 135, 45, .32);
}

.has-home-slider:not(.public-nav-solid) .language-toggle {
    border-color: rgba(255, 255, 255, .24);
    background: rgba(0, 27, 50, .38);
    box-shadow: none;
    backdrop-filter: blur(8px);
}

.has-home-slider:not(.public-nav-solid) .language-toggle a {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .32);
}

.has-home-slider:not(.public-nav-solid) .language-toggle a.is-active {
    color: #fff;
    background: var(--gold);
}

.menu-toggle {
    width: 42px;
    height: 42px;
    display: none;
    place-items: center;
    gap: 5px;
    border: 1px solid rgba(38, 56, 71, .18);
    border-radius: 5px;
    background: rgba(255, 255, 255, .88);
    color: var(--ink);
    padding: 9px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    display: block;
    background: currentColor;
    border-radius: 999px;
    transition: transform .2s ease, opacity .2s ease;
}

.public-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.public-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.public-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.has-home-slider:not(.public-nav-solid) .menu-toggle {
    border-color: rgba(255, 255, 255, .34);
    background: rgba(0, 27, 50, .34);
    color: #fff;
}

.search-button {
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    position: relative;
}

.search-button:before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2px solid #263847;
    border-radius: 50%;
    inset: 6px;
    transition: border-color .24s ease;
}

.search-button:after {
    content: "";
    position: absolute;
    width: 9px;
    height: 2px;
    background: #263847;
    transform: rotate(45deg);
    inset-inline-end: 5px;
    bottom: 8px;
    transition: background .24s ease;
}

.has-home-slider:not(.public-nav-solid) .search-button:before {
    border-color: #fff;
}

.has-home-slider:not(.public-nav-solid) .search-button:after {
    background: #fff;
}

.hero {
    min-height: 470px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    background: #061f36;
}

.hero__image {
    background: linear-gradient(90deg, rgba(6, 31, 54, .18), rgba(6, 31, 54, .06)), var(--hero-image) center / cover;
}

.hero__panel {
    background: linear-gradient(110deg, var(--ink) 0%, var(--ink-2) 78%, rgba(10, 48, 79, .84) 100%);
    color: #fff;
    padding: 48px clamp(32px, 6vw, 74px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
    margin-inline-start: -80px;
    padding-inline-start: 118px;
}

.is-rtl .hero__panel {
    clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
    margin-inline-start: 0;
    margin-inline-end: -80px;
    padding-inline-start: clamp(32px, 6vw, 74px);
    padding-inline-end: 118px;
    order: 2;
}

.is-rtl .hero__image {
    order: 1;
}

.hero__panel p {
    color: var(--gold-2);
    font-weight: 900;
    margin: 0 0 10px;
}

.hero h1 {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    margin: 0 0 20px;
    letter-spacing: 0;
}

.hero h1 span {
    color: var(--gold-2);
}

.hero__copy {
    max-width: 590px;
    line-height: 1.75;
    font-size: 15px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    margin-top: 26px;
}

.button,
.center-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 24px;
    border-radius: 3px;
    font-weight: 800;
    font-size: 14px;
}

.button--gold,
.center-button {
    color: #fff;
    background: var(--gold);
}

.button--outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .8);
}

.hero-benefits {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: min(1050px, calc(100% - 80px));
    margin-inline: auto;
    color: #fff;
    transform: translateY(-18px);
    gap: 18px;
}

.hero-benefits div {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 14px;
    align-items: center;
    border-inline-end: 1px solid rgba(255, 255, 255, .28);
}

.hero-benefits div:last-child {
    border: 0;
}

.hero-benefits strong,
.hero-benefits small {
    grid-column: 2;
}

.hero-benefits small {
    color: rgba(255, 255, 255, .82);
    margin-top: 4px;
}

.hero-slider {
    min-height: 860px;
    height: calc(100svh - 34px);
    position: relative;
    overflow: hidden;
    background: #031f35;
}

.hero-slider__track,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    --hero-panel-width: clamp(620px, 44.5vw, 710px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .45s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide:after {
    display: none;
}

.is-rtl .hero-slide:after {
    display: none;
}

.hero-slide__media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(1, 20, 36, .28), rgba(1, 20, 36, 0) 34%, rgba(1, 20, 36, .16)),
        var(--slide-image) center right / cover no-repeat;
    transform-origin: center;
}

.is-rtl .hero-slide__media {
    background:
        linear-gradient(270deg, rgba(1, 20, 36, .28), rgba(1, 20, 36, 0) 34%, rgba(1, 20, 36, .16)),
        var(--slide-image) center right / cover no-repeat;
    transform: scaleX(-1);
}

.hero-slide__content {
    position: relative;
    z-index: 2;
    width: var(--hero-panel-width);
    height: calc(100% - 150px);
    padding: 62px 92px 70px 86px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(circle at 18% 14%, rgba(25, 92, 143, .28), transparent 38%),
        linear-gradient(90deg, rgba(0, 27, 50, .98) 0%, rgba(0, 39, 70, .92) 58%, rgba(0, 39, 70, .54) 82%, rgba(0, 39, 70, 0) 100%);
    box-shadow: 34px 0 70px rgba(0, 0, 0, .28);
    text-align: left;
}

.hero-slide__content > * {
    position: relative;
    z-index: 3;
}

.hero-slide__content:after {
    display: none;
}

.is-rtl .hero-slide__content {
    margin-left: auto;
    margin-right: 0;
    padding: 62px 92px 70px 86px;
    background:
        radial-gradient(circle at 82% 14%, rgba(25, 92, 143, .28), transparent 38%),
        linear-gradient(270deg, rgba(0, 27, 50, .98) 0%, rgba(0, 39, 70, .92) 58%, rgba(0, 39, 70, .54) 82%, rgba(0, 39, 70, 0) 100%);
    box-shadow: -34px 0 70px rgba(0, 0, 0, .28);
    text-align: right;
    direction: rtl;
}

.is-rtl .hero-slide__content:after {
    display: none;
}

.slider-brand {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 38px;
}

.is-rtl .slider-brand {
    justify-content: flex-start;
}

.slider-brand__mark {
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    border: 4px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 24px;
    font-weight: 900;
}

.slider-brand strong,
.slider-brand small {
    display: block;
    line-height: 1.1;
}

.slider-brand strong {
    font-size: clamp(27px, 2.05vw, 38px);
    letter-spacing: 0;
    text-transform: uppercase;
}

.slider-brand small {
    margin-top: 8px;
    font-size: clamp(16px, 1.22vw, 22px);
    text-transform: uppercase;
}

.hero-slide__rule {
    width: 78px;
    height: 4px;
    background: var(--gold);
    display: block;
    margin-bottom: 34px;
}

.hero-slide h1 {
    max-width: min(660px, 90%);
    margin: 0;
    font-size: clamp(34px, 3.15vw, 58px);
    line-height: 1.12;
    letter-spacing: 0;
    text-transform: uppercase;
}

.is-rtl .hero-slide h1 {
    text-transform: none;
    font-size: clamp(32px, 3vw, 54px);
    line-height: 1.22;
    margin-left: 0;
    margin-right: auto;
}

.hero-slide h1 span {
    color: #f59a18;
}

.hero-slide__copy {
    max-width: min(600px, 86%);
    margin-top: 26px;
    font-size: clamp(15px, 1vw, 19px);
    line-height: 1.42;
}

.is-rtl .hero-slide__copy {
    margin-left: 0;
    margin-right: auto;
}

.hero-slide__copy p {
    margin: 0;
}

.hero-slide__actions {
    display: flex;
    gap: 22px;
    margin-top: 32px;
}

.is-rtl .hero-slide__actions {
    justify-content: flex-start;
}

.hero-slide__actions .button {
    min-width: 174px;
    min-height: 54px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: clamp(14px, .9vw, 16px);
    gap: 18px;
}

.is-rtl .hero-slide__actions .button {
    text-transform: none;
}

.hero-slide__actions .button--gold {
    background: linear-gradient(180deg, #f2a22d, #d78213);
}

.hero-slide__actions .button--outline {
    border-color: #e88c19;
}

.hero-slide__actions i {
    font-size: 20px;
    line-height: 1;
}

.hero-slider__arrow {
    position: absolute;
    top: calc(50% - 24px);
    z-index: 5;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 18, 33, .48);
}

.hero-slider__arrow:before {
    content: "";
    position: absolute;
    inset: 19px;
    border-top: 3px solid #fff;
    border-inline-start: 3px solid #fff;
}

.hero-slider__arrow--prev {
    inset-inline-start: 18px;
}

.hero-slider__arrow--prev:before {
    transform: rotate(-45deg);
}

.hero-slider__arrow--next {
    inset-inline-end: 18px;
}

.hero-slider__arrow--next:before {
    transform: rotate(135deg);
}

.hero-slider__dots {
    position: absolute;
    z-index: 6;
    bottom: 178px;
    inset-inline: 0;
    display: flex;
    justify-content: center;
    gap: 26px;
}

.hero-slider__dots button {
    width: 18px;
    height: 18px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .82);
    padding: 0;
}

.hero-slider__dots button.is-active {
    background: var(--gold);
}

.hero-slider .hero-benefits {
    width: 100%;
    min-height: 150px;
    bottom: 0;
    transform: none;
    z-index: 4;
    padding: 0 max(72px, calc((100vw - 1240px) / 2));
    background: linear-gradient(180deg, #062540, #001d35);
    align-items: center;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.hero-slider .hero-benefits div {
    grid-template-columns: 74px 1fr;
    column-gap: 28px;
    padding: 0 50px;
    min-height: 96px;
}

.hero-slider .hero-benefits .line-icon {
    grid-column: 1;

    justify-self: start;
}

.hero-slider .hero-benefits strong,
.hero-slider .hero-benefits small {
    grid-column: 2;
}

.is-rtl .hero-slider .hero-benefits div {
    grid-template-columns: 1fr 74px;
    text-align: right;
}

.is-rtl .hero-slider .hero-benefits .line-icon {
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: end;
}

.is-rtl .hero-slider .hero-benefits strong,
.is-rtl .hero-slider .hero-benefits small {
    grid-column: 1;
}

.hero-slider .hero-benefits .line-icon {
    width: 70px;
    height: 70px;
}

.hero-slider .hero-benefits .line-icon:after {
    width: 28px;
    height: 28px;
    inset: 17px;
}

.hero-slider .hero-benefits strong {
    font-size: 21px;
    text-transform: uppercase;
}

.is-rtl .hero-slider .hero-benefits strong {
    text-transform: none;
}

.hero-slider .hero-benefits small {
    font-size: 18px;
}

.line-icon {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 3px solid var(--gold);
    border-radius: 50%;
    position: relative;
    color: var(--gold);
}

.line-icon:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border: 3px solid var(--gold);
    border-radius: 4px;
    inset: 10px;
}

.line-icon--service,
.line-icon--price,
.line-icon--quality,
.line-icon--trust-quality,
.line-icon--trust-price,
.line-icon--trust-service {
    border: 0;
}

.line-icon--service:after,
.line-icon--price:after,
.line-icon--quality:after,
.line-icon--trust-quality:after,
.line-icon--trust-price:after,
.line-icon--trust-service:after {
    position: static;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 42px;
    line-height: 1;
    transform: none;
}

.line-icon--service:after {
    content: "\f590";
}

.line-icon--price:after {
    content: "\f02b";
}

.line-icon--quality:after {
    content: "\f559";
}

.line-icon--trust-quality:after {
    content: "\f559";
}

.line-icon--trust-price:after {
    content: "\f02b";
}

.line-icon--trust-service:after {
    content: "\f590";
}

.line-icon--vision:after {
    width: 24px;
    height: 12px;
    border-radius: 50%;
    inset: 12px 6px;
}

.line-icon--mission:after {
    border-radius: 50%;
}

.hero-slider .hero-benefits .line-icon--service:after,
.hero-slider .hero-benefits .line-icon--price:after,
.hero-slider .hero-benefits .line-icon--quality:after {
    font-size: 70px;
}

.section {
    padding: 42px 0 52px;
    text-align: center;
}

.page-hero {
    padding: 86px 0 46px;
    color: #fff;
    background:
        radial-gradient(circle at 18% 8%, rgba(47, 112, 160, .3), transparent 38%),
        linear-gradient(135deg, #06233b, #001d35);
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(38px, 4vw, 62px);
    line-height: 1.1;
}

.page-hero p {
    max-width: 680px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.7;
}

.is-rtl .page-hero p {
    margin-left: 0;
    margin-right: 0;
}

.categories-page-section {
    padding-top: 54px;
}

.contact-page-hero {
    background:
        radial-gradient(circle at 18% 8%, rgba(47, 112, 160, .3), transparent 38%),
        linear-gradient(135deg, #06233b, #001d35);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
    gap: 34px;
    align-items: start;
    padding: 62px 0 78px;
}

.is-rtl .contact-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
}

.is-rtl .contact-details-card {
    order: 2;
}

.is-rtl .contact-form-card {
    order: 1;
}

.contact-details-card,
.contact-form-card {
    background: #fff;
    border: 1px solid rgba(6, 35, 59, .1);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(6, 35, 59, .1);
}

.contact-details-card {
    padding: 28px;
}

.contact-form-card {
    padding: 32px;
}

.contact-details-card h2,
.contact-form-card h2 {
    margin: 0 0 22px;
    color: var(--ink);
    font-size: 28px;
}

.contact-info-list {
    display: grid;
    gap: 20px;
}

.contact-info-list div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 4px 14px;
}

.contact-info-list i {
    grid-row: 1 / span 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--gold);
    background: rgba(201, 135, 45, .1);
    border-radius: 50%;
}

.contact-info-list span {
    color: var(--gold);
    font-weight: 900;
}

.contact-info-list strong {
    color: #344555;
    line-height: 1.7;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-weight: 900;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(6, 35, 59, .16);
    border-radius: 6px;
    min-height: 50px;
    padding: 0 14px;
    color: var(--ink);
    background: #fff;
    font: inherit;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form textarea {
    min-height: 150px;
    padding: 14px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 0;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 135, 45, .14);
}

.contact-form__message,
.contact-form__captcha {
    grid-column: 1 / -1;
}

.contact-form .button {
    grid-column: 1 / -1;
    justify-content: center;
    border: 0;
    cursor: pointer;
}

.field-error {
    color: #b42318;
    font-size: 13px;
    font-weight: 700;
}

.contact-alert {
    margin-bottom: 22px;
    padding: 14px 16px;
    border-radius: 6px;
    font-weight: 800;
    line-height: 1.55;
}

.contact-alert.is-success {
    color: #0b5132;
    background: #e8f5ee;
}

.contact-alert.is-warning {
    color: #8a5a00;
    background: #fff3d8;
}

.whatsapp-float {
    position: fixed;
    inset-inline-end: 24px;
    bottom: 24px;
    z-index: 90;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: #fff;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 14px 30px rgba(6, 35, 59, .24);
    transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(6, 35, 59, .3);
}

.whatsapp-float i {
    font-size: 32px;
}

.about-page-hero {
    background:
        linear-gradient(90deg, rgba(0, 29, 53, .88), rgba(0, 29, 53, .72)),
        url("https://web.archive.org/web/20250124004625im_/https://off-engineers.com/wp-content/uploads/2024/01/SM837-38-1880-920.jpg") center / cover;
}

.about-story {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: clamp(34px, 4vw, 58px);
    align-items: center;
    padding: 72px 0;
}

.is-rtl .about-story {
    grid-template-columns: minmax(360px, .95fr) minmax(0, 1.05fr);
}

.is-rtl .about-story__copy {
    order: 2;
}

.is-rtl .about-story__media {
    order: 1;
}

.about-story__copy h2,
.about-quality h2,
.about-mission__copy h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1.14;
    font-weight: 900;
}

.about-story__copy p,
.about-quality p,
.about-mission__copy p {
    margin: 18px 0 0;
    color: #344555;
    font-size: 17px;
    line-height: 1.78;
}

.about-story__media,
.about-mission__media {
    position: relative;
}

.about-story__media:before {
    content: "";
    position: absolute;
    inset: -18px 42px 22px -18px;
    border: 2px solid var(--gold);
    border-radius: 10px;
}

.is-rtl .about-story__media:before {
    inset: -18px -18px 22px 42px;
}

.about-story__media img,
.about-mission__media img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1.62;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    box-shadow: 0 24px 56px rgba(6, 35, 59, .16);
}

.about-services,
.about-values {
    background: #fff;
}

.section-lead {
    max-width: 760px;
    margin: -8px auto 30px;
    color: #526170;
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
}

.about-service-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.about-service-grid article,
.about-values__grid article {
    min-height: 100%;
    padding: 28px 22px;
    background: #fff;
    border: 1px solid rgba(6, 35, 59, .1);
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(6, 35, 59, .08);
}

.about-service-grid i,
.about-values__grid i {
    color: var(--gold);
    font-size: 34px;
    margin-bottom: 18px;
}

.about-service-grid h3,
.about-values__grid h3 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.35;
}

.about-service-grid p,
.about-values__grid p {
    margin: 0;
    color: #51606e;
    line-height: 1.65;
    font-size: 14px;
}

.about-quality {
    padding: 48px 0;
    color: #fff;
    background:
        radial-gradient(circle at 18% 12%, rgba(47, 112, 160, .28), transparent 38%),
        linear-gradient(135deg, #06233b, #001d35);
}

.about-quality__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
}

.about-quality h2,
.about-quality p {
    color: #fff;
}

.about-quality p {
    max-width: 900px;
    color: rgba(255, 255, 255, .84);
}

.trust-grid--about {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.line-icon--trust-team {
    border: 0;
}

.line-icon--trust-team:after {
    content: "\f0c0";
    position: static;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    color: var(--gold);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 46px;
    line-height: 1;
}

.about-mission {
    display: grid;
    grid-template-columns: minmax(360px, .95fr) minmax(0, 1.05fr);
    gap: clamp(34px, 4vw, 58px);
    align-items: center;
    padding: 74px 0;
}

.is-rtl .about-mission {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
}

.is-rtl .about-mission__media {
    order: 2;
}

.is-rtl .about-mission__copy {
    order: 1;
}

.about-mission__copy {
    padding: clamp(28px, 3vw, 42px);
    background: var(--soft);
    border-radius: 8px;
    border-inline-start: 5px solid var(--gold);
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.about-image-section {
    position: relative;
    padding: 76px 0;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(6, 35, 59, .06), rgba(201, 135, 45, .08)),
        #fff;
}

.about-image-section:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 35, 59, .04), transparent 34%, rgba(6, 35, 59, .04));
    pointer-events: none;
}

.about-image__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 54px;
    align-items: center;
}

.is-rtl .about-image__inner {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
}

.is-rtl .about-image__copy {
    order: 2;
    text-align: right;
}

.is-rtl .about-image__media {
    order: 1;
}

.about-image__copy {
    position: relative;
    padding: 46px;
    color: #fff;
    background:
        radial-gradient(circle at 18% 12%, rgba(47, 112, 160, .28), transparent 38%),
        linear-gradient(135deg, #06233b, #001d35);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-image__copy:before {
    content: "";
    position: absolute;
    inset-block: 28px;
    inset-inline-start: 0;
    width: 4px;
    background: var(--gold);
    border-radius: 999px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-2);
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 14px;
}

.section-kicker:before {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor;
}

.about-image__copy h2 {
    margin: 0;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.12;
}

.about-image__copy p {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .84);
    font-size: clamp(16px, 1.18vw, 19px);
    line-height: 1.85;
}

.about-image__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    margin-top: 30px;
    padding: 0 26px;
    border-radius: 5px;
    background: var(--gold);
    color: #fff;
    font-weight: 900;
}

.about-image__media {
    position: relative;
    border-radius: 8px;
    isolation: isolate;
}

.about-image__media:before {
    content: "";
    position: absolute;
    inset: -18px 18px 18px -18px;
    z-index: -1;
    border: 2px solid var(--gold);
    border-radius: 8px;
}

.is-rtl .about-image__media:before {
    inset: -18px -18px 18px 18px;
}

.about-image__media img {
    width: 100%;
    aspect-ratio: 1.6;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 24px 58px rgba(6, 35, 59, .2);
}

.about-image-section {
    padding: 90px 0 78px;
    background:
        radial-gradient(circle at 4% 92%, rgba(201, 135, 45, .16) 0 2px, transparent 3px) 0 0 / 22px 22px,
        linear-gradient(110deg, #fff 0%, #fff 70%, #f7f4ef 70%, #fff 100%);
}

.about-image-section:before {
    background:
        linear-gradient(115deg, transparent 0 70%, rgba(6, 35, 59, .035) 70% 78%, transparent 78%),
        linear-gradient(180deg, rgba(6, 35, 59, .02), transparent);
}

.about-image__inner {
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: clamp(30px, 3.4vw, 46px);
    align-items: center;
}

.is-rtl .about-image__inner {
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
}

.is-rtl .about-image__copy,
.is-rtl .about-image__media {
    order: initial;
}

.about-image__copy {
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: left;
}

.is-rtl .about-image__copy {
    text-align: right;
}

.about-image__copy:before {
    display: none;
}

.section-kicker {
    color: var(--gold);
    font-size: clamp(15px, 1.1vw, 18px);
    margin-bottom: 14px;
}

.section-kicker:before {
    width: 44px;
    height: 3px;
}

.about-image__copy h2 {
    max-width: 720px;
    color: var(--ink);
    font-size: clamp(28px, 2.5vw, 38px);
    line-height: 1.16;
    font-weight: 900;
}

.about-image__copy h2:after {
    content: "";
    display: block;
    width: 54px;
    height: 3px;
    margin-top: 18px;
    background: var(--gold);
}

.is-rtl .about-image__copy h2:after {
    margin-left: 0;
    margin-right: 0;
}

.about-image__copy p {
    max-width: 760px;
    margin-top: 18px;
    color: #1f2f3c;
    font-size: clamp(15px, 1.05vw, 17px);
    line-height: 1.75;
}

.about-image__features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    max-width: 760px;
    margin-top: 24px;
}

.about-image__features span {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 0 10px;
    color: var(--ink);
    font-weight: 800;
    text-align: center;
    border-inline-end: 1px solid rgba(6, 35, 59, .18);
}

.about-image__features span:last-child {
    border-inline-end: 0;
}

.about-image__features i {
    color: var(--gold);
    font-size: 26px;
}

.about-image__button {
    min-width: 150px;
    margin-top: 28px;
    background: var(--ink);
    box-shadow: 0 14px 28px rgba(6, 35, 59, .18);
}

.about-image__media {
    align-self: stretch;
}

.about-image__media:before {
    inset: -22px -22px -22px 54px;
    border: 2px solid var(--gold);
    border-radius: 12px;
}

.is-rtl .about-image__media:before {
    inset: -22px -22px -22px 54px;
}

.about-image__media img {
    height: 100%;
    min-height: 340px;
    max-height: 430px;
    aspect-ratio: auto;
    border-radius: 10px;
    box-shadow: 0 26px 58px rgba(6, 35, 59, .18);
}

.about-image__stats {
    grid-column: 1 / -1;
    width: 100%;
    margin: 20px 0 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    min-height: 120px;
    color: #fff;
    background:
        radial-gradient(circle at 15% 10%, rgba(47, 112, 160, .28), transparent 38%),
        linear-gradient(135deg, #06233b, #001d35);
    border-radius: 10px;
    box-shadow: 0 18px 38px rgba(6, 35, 59, .22);
}

.about-image__stats div {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    align-items: center;
    column-gap: 16px;
    row-gap: 4px;
    padding: 0 22px;
    border-inline-end: 1px solid rgba(255, 255, 255, .18);
}

.about-image__stats div:last-child {
    border-inline-end: 0;
}

.about-image__stats i {
    grid-row: 1 / span 2;
    color: var(--gold);
    font-size: 36px;
}

.about-image__stats strong {
    color: var(--gold-2);
    font-size: clamp(28px, 2.4vw, 42px);
    line-height: 1;
}

.about-image__stats span {
    font-size: 15px;
    color: rgba(255, 255, 255, .9);
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 0 0 28px;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 0;
}

.section-title:before,
.section-title:after {
    content: "";
    width: 44px;
    height: 2px;
    background: var(--gold);
}

.section-heading-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 28px;
    position: relative;
}

.section-heading-row .section-title {
    margin-bottom: 0;
}

.section-heading-row__link {
    position: absolute;
    inset-inline-end: 0;
    color: var(--gold);
    font-weight: 800;
}

.offers-section {
    padding-top: 10px;
}

.offers-carousel {
    position: relative;
    padding-inline: 54px;
}

.offers-carousel__viewport {
    overflow: hidden;
}

.offers-carousel__track {
    display: flex;
    gap: 18px;
    transition: transform .35s ease;
    will-change: transform;
}

.offer-card {
    position: relative;
    flex: 0 0 calc((100% - 54px) / 4);
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(6, 35, 59, .08);
}

.offer-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    display: block;
    background: #f7f3ee;
}

.offer-card__badge {
    position: absolute;
    top: 12px;
    inset-inline-start: 12px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 4px;
    background: #d62424;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.offer-card__body {
    padding: 14px;
}

.offer-card__body h3 {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
    text-transform: uppercase;
}

.offer-card__body p {
    margin: 8px 0 0;
    color: #5b6773;
    font-size: 13px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.offers-carousel__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    box-shadow: 0 12px 28px rgba(6, 35, 59, .16);
    cursor: pointer;
    transform: translateY(-50%);
}

.offers-carousel__nav:disabled {
    opacity: .42;
    cursor: default;
}

.offers-carousel__nav--prev {
    inset-inline-start: 0;
}

.offers-carousel__nav--next {
    inset-inline-end: 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.offer-card--page {
    flex: initial;
}

.empty-state {
    margin: 0;
    padding: 42px 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: #52606c;
    text-align: center;
    font-weight: 700;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.category-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    min-height: 270px;
    box-shadow: 0 14px 32px rgba(6, 35, 59, .08);
}

.category-card img {
    width: 100%;
    aspect-ratio: 1672 / 941;
    object-fit: cover;
    display: block;
}

.category-card span {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    color: #fff;
    background: var(--gold);
    border-radius: 50%;
    margin-top: -16px;
    position: relative;
    font-size: 14px;
    font-weight: 900;
}

.category-card h3 {
    margin: 12px 14px 8px;
    font-size: 16px;
    min-height: 42px;
    display: grid;
    place-items: center;
    text-transform: uppercase;
}

.category-card a {
    color: var(--gold);
    font-size: 14px;
    display: inline-block;
    padding-bottom: 18px;
}

.category-card__image-link {
    display: block;
    padding-bottom: 0 !important;
}

.testimonial-section {
    padding: 72px 0;
    background:
        radial-gradient(circle at 0% 100%, rgba(78, 170, 230, .18), transparent 34%),
        radial-gradient(circle at 100% 100%, rgba(255, 190, 120, .16), transparent 32%),
        linear-gradient(135deg, #f5f8fa 0%, #edf3f6 100%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.testimonial-card {
    position: relative;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid rgba(6, 35, 59, .05);
    border-radius: 8px;
    background: #fff;
    text-align: start;
    box-shadow: 0 24px 54px rgba(6, 35, 59, .1);
}

.testimonial-card:before {
    display: none;
}

.testimonial-card__image {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid #d9ae59;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(145deg, #fff2ba, #b8862e 45%, #6f4915) border-box;
    box-shadow:
        0 10px 18px rgba(6, 35, 59, .16),
        inset 0 2px 8px rgba(255, 255, 255, .9),
        inset 0 -5px 12px rgba(111, 73, 21, .24);
}

.testimonial-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.testimonial-card__image span {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    color: #06233b;
    background: #fff7df;
    font-size: 23px;
    font-weight: 900;
}

.testimonial-card__quote {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin: 0 0 22px;
    border: 1px solid rgba(6, 35, 59, .08);
    border-radius: 50%;
    background: #fff;
    color: #cbd7e7;
    font-size: 24px;
    box-shadow: 0 8px 18px rgba(6, 35, 59, .04);
}

.testimonial-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #22313f;
    font-size: 17px;
    line-height: 1.62;
}

.testimonial-card p strong,
.testimonial-card p b {
    color: #ef6d00;
}

.testimonial-card__footer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid rgba(6, 35, 59, .08);
}

.testimonial-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #172432;
    font-size: 18px;
    line-height: 1.2;
}

.testimonial-card__identity {
    min-width: 0;
}

.testimonial-card__identity span {
    display: block;
    margin-top: 4px;
    color: #5d6975;
    font-size: 14px;
    line-height: 1.35;
}

.testimonial-page-hero {
    background:
        radial-gradient(circle at 78% 14%, rgba(193, 145, 68, .24), transparent 34%),
        linear-gradient(135deg, #06233b, #00233f);
}

.testimonials-page-section {
    padding-top: 82px;
}

.testimonial-grid--page {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 24px;
}

.testimonial-card--page {
    min-height: 360px;
}

.product-page-hero {
    background:
        radial-gradient(circle at 18% 8%, rgba(47, 112, 160, .3), transparent 38%),
        linear-gradient(135deg, #06233b, #001d35);
}

.product-list-layout {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
    padding: 54px 0 72px;
}

.is-rtl .product-list-layout {
    grid-template-columns: minmax(0, 1fr) 290px;
}

.is-rtl .product-filter-panel {
    order: 2;
}

.is-rtl .product-results {
    order: 1;
}

.product-filter-panel {
    position: sticky;
    top: 94px;
    padding: 24px;
    background: #fff;
    border: 1px solid rgba(6, 35, 59, .1);
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(6, 35, 59, .08);
}

.product-filter-panel__head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}

.product-filter-panel h2 {
    margin: 0;
    color: var(--ink);
    font-size: 20px;
}

.product-filter-panel__head a {
    color: var(--gold);
    font-weight: 800;
    font-size: 13px;
}

.product-filter-panel fieldset {
    margin: 0 0 22px;
    padding: 0;
    border: 0;
}

.product-filter-panel legend {
    margin-bottom: 12px;
    color: var(--ink);
    font-weight: 900;
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 36px;
    color: #344555;
    font-weight: 700;
    cursor: pointer;
}

.filter-check input {
    accent-color: var(--gold);
}

.color-dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--color, var(--gold));
    border: 1px solid rgba(6, 35, 59, .16);
    box-shadow: 0 0 0 3px rgba(6, 35, 59, .05);
    flex: 0 0 auto;
}

.product-results__bar {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-bottom: 20px;
    color: var(--ink);
}

.product-results__bar strong {
    font-size: 22px;
}

.product-results__bar span {
    color: #526170;
    font-weight: 800;
}

.product-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    background: #fff;
    border: 1px solid rgba(6, 35, 59, .1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(6, 35, 59, .08);
}

.product-card a {
    display: block;
    height: 100%;
}

.product-card img {
    width: 100%;
    aspect-ratio: 1672 / 941;
    object-fit: cover;
    display: block;
}

.product-card div {
    padding: 18px 18px 20px;
}

.product-card span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--gold);
    font-weight: 900;
    font-size: 13px;
}

.product-card h3 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.35;
}

.product-card p {
    margin: 0;
    color: #51606e;
    line-height: 1.55;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.empty-products {
    min-height: 260px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    padding: 38px;
    text-align: center;
    color: #526170;
    background: var(--soft);
    border-radius: 8px;
}

.empty-products i {
    color: var(--gold);
    font-size: 44px;
}

.empty-products h2 {
    margin: 0;
    color: var(--ink);
}

.empty-products p {
    margin: 0;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(420px, .95fr) minmax(0, 1.05fr);
    gap: clamp(34px, 4vw, 58px);
    align-items: start;
    padding: 62px 0 48px;
}

.is-rtl .product-detail {
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
}

.is-rtl .product-detail__gallery {
    order: 2;
}

.is-rtl .product-detail__content {
    order: 1;
}

.product-detail__main-image {
    width: 100%;
    aspect-ratio: 1672 / 941;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    box-shadow: 0 24px 56px rgba(6, 35, 59, .16);
}

.product-detail__thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.product-detail__thumbs img {
    width: 100%;
    aspect-ratio: 1.45;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
}

.product-detail__thumbs img:hover {
    border-color: var(--gold);
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 18px;
}

.product-detail__content h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(34px, 3.4vw, 56px);
    line-height: 1.08;
}

.model-pill {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-top: 18px;
    padding: 10px 14px;
    color: #fff;
    background: var(--ink);
    border-radius: 5px;
    font-weight: 800;
}

.model-pill strong {
    color: var(--gold-2);
}

.product-detail__content p {
    margin: 22px 0 0;
    color: #344555;
    font-size: 17px;
    line-height: 1.75;
}

.product-option-summary {
    display: grid;
    gap: 20px;
    margin-top: 28px;
}

.product-option-summary strong {
    display: block;
    margin-bottom: 10px;
    color: var(--ink);
}

.option-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 12px;
    color: var(--ink);
    background: var(--soft);
    border: 1px solid rgba(6, 35, 59, .1);
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
}

.variant-section {
    padding: 20px 0 72px;
}

.variant-table {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(6, 35, 59, .1);
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(6, 35, 59, .08);
}

.variant-table__head,
.variant-table__row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    align-items: center;
    padding: 16px 20px;
}

.variant-table__head {
    color: #fff;
    background: var(--ink);
    font-weight: 900;
}

.variant-table__row {
    border-top: 1px solid rgba(6, 35, 59, .08);
    color: #344555;
    font-weight: 700;
}

.variant-table__row span:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

.center-button {
    margin-top: 24px;
}

.center-button--dark {
    background: var(--ink);
}

.trust-band {
    background: var(--soft);
    padding: 44px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.trust-grid article {
    position: relative;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    text-align: start;
    padding: 0 18px;
}

.trust-grid b {
    position: absolute;
    top: -12px;
    inset-inline-start: 84px;
    background: var(--gold);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
}

.trust-grid h3,
.trust-grid p {
    grid-column: 2;
    margin: 0;
}

.trust-grid p {
    color: #495866;
    line-height: 1.65;
    margin-top: 8px;
    font-size: 14px;
}

.work-section {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 34px;
    padding: 42px 0;
    align-items: center;
}

.is-rtl .work-section {
    grid-template-columns: 1fr 330px;
}

.is-rtl .work-copy {
    order: 2;
}

.work-copy h2 {
    font-size: 28px;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.work-copy p {
    color: #425160;
    line-height: 1.75;
    margin: 0 0 20px;
}

.work-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.work-gallery__item {
    width: 100%;
    aspect-ratio: 1.8;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(6, 35, 59, .1);
    border-radius: 4px;
    background: #f7f3ee;
    padding: 0;
    cursor: pointer;
}

.work-gallery__item img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity .25s ease;
}

.work-gallery__item:hover img {
    opacity: .88;
}

.work-lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease;
}

.work-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.work-lightbox-open {
    overflow: hidden;
}

.work-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 36, .86);
}

.work-lightbox__dialog {
    position: relative;
    width: min(1120px, 100%);
    min-height: min(680px, calc(100vh - 48px));
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 58px;
    align-items: center;
    gap: 16px;
    color: #fff;
}

.work-lightbox figure {
    min-width: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.work-lightbox figure img {
    width: 100%;
    max-height: calc(100vh - 150px);
    object-fit: contain;
    display: block;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 28px 72px rgba(0, 0, 0, .32);
}

.work-lightbox figcaption {
    min-height: 24px;
    text-align: center;
    color: rgba(255, 255, 255, .88);
    font-weight: 800;
}

.work-lightbox__close,
.work-lightbox__nav {
    border: 0;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.work-lightbox__close:hover,
.work-lightbox__nav:hover {
    background: var(--gold);
    transform: translateY(-1px);
}

.work-lightbox__close {
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    z-index: 2;
}

.work-lightbox__nav {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    font-size: 22px;
}

.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease;
}

.quote-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.quote-modal-open {
    overflow: hidden;
}

.quote-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 36, .82);
}

.quote-modal__dialog {
    position: relative;
    width: min(920px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .32);
}

.quote-modal__close {
    position: absolute;
    top: 16px;
    inset-inline-end: 16px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--ink);
    background: rgba(6, 35, 59, .08);
    cursor: pointer;
}

.quote-modal__head {
    padding-inline-end: 48px;
    margin-bottom: 22px;
}

.quote-modal__head span {
    display: inline-flex;
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 8px;
}

.quote-modal__head h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(28px, 3vw, 40px);
}

.quote-modal__head p {
    margin: 10px 0 0;
    color: #51606e;
    line-height: 1.65;
}

.quote-modal__notice {
    display: none;
    margin-bottom: 18px;
    padding: 12px 14px;
    color: var(--ink);
    background: rgba(201, 135, 45, .12);
    border: 1px solid rgba(201, 135, 45, .28);
    border-radius: 6px;
    font-weight: 800;
}

.quote-modal__notice.is-visible {
    display: block;
}

.quote-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.quote-form label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-weight: 900;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(6, 35, 59, .16);
    border-radius: 6px;
    padding: 0 13px;
    color: var(--ink);
    background: #fff;
    font: inherit;
}

.quote-form input[type="file"] {
    padding: 10px 12px;
}

.quote-form textarea {
    min-height: 130px;
    padding: 13px;
    resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
    outline: 0;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 135, 45, .14);
}

.quote-form__message,
.quote-form__captcha,
.quote-form__submit {
    grid-column: 1 / -1;
}

.quote-form__submit {
    justify-self: start;
    border: 0;
    cursor: pointer;
    gap: 12px;
}

.projects-page-hero {
    background:
        radial-gradient(circle at 18% 8%, rgba(47, 112, 160, .3), transparent 38%),
        linear-gradient(135deg, #06233b, #001d35);
}

.projects-intro {
    display: block;
    padding: 58px 0 28px;
}

.projects-intro h2 {
    max-width: 820px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.14;
}

.projects-intro p {
    max-width: 850px;
    margin: 18px 0 0;
    color: #425160;
    font-size: 17px;
    line-height: 1.85;
}

.projects-gallery-section {
    padding: 18px 0 76px;
}

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.project-gallery-card {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    border-radius: 6px;
    background: #061f36;
    box-shadow: 0 14px 32px rgba(6, 35, 59, .1);
}

.project-gallery-card--featured {
    grid-row: span 2;
    min-height: 494px;
}

.project-gallery-card__button,
.project-gallery-card img {
    display: block;
    width: 100%;
    height: 100%;
}

.project-gallery-card__button {
    position: relative;
    border: 0;
    background: #f7f3ee;
    padding: 0;
    cursor: pointer;
    color: inherit;
    font: inherit;
    text-align: inherit;
}

.project-gallery-card img {
    object-fit: contain;
    transition: transform .35s ease, opacity .35s ease;
}

.project-gallery-card:hover img {
    opacity: .86;
    transform: none;
}

.project-gallery-card span {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    min-height: 74px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 6px;
    padding: 44px 20px 18px;
    color: #fff;
    background: linear-gradient(180deg, rgba(3, 31, 53, 0), rgba(3, 31, 53, .86));
}

.project-gallery-card strong {
    font-size: 18px;
    line-height: 1.25;
}

.project-gallery-card small {
    color: rgba(255, 255, 255, .84);
    font-size: 13px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.vision-mission__item {
    color: #fff;
    padding-block: 42px;
    padding-inline: clamp(28px, 4vw, 54px);
    display: flex;
    align-items: flex-start;
    gap: 22px;
    min-height: 230px;
}

.vision-mission__item > div {
    flex: 1;
    min-width: 0;
}

.vision {
    background: var(--ink);
    padding-inline-start: max(34px, calc((100vw - 1170px) / 2));
}

.mission {
    background: var(--gold);
    padding-inline-end: max(34px, calc((100vw - 1170px) / 2));
}

.vision-mission__icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, .76);
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
}

.vision-mission h2 {
    margin: 0 0 8px;
    text-transform: uppercase;
}

.vision-mission p {
    margin: 0 0 18px;
    line-height: 1.8;
}

.vision-mission a {
    display: inline-flex;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .8);
    min-height: 38px;
    align-items: center;
    padding: 0 20px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
}

.site-footer {
    background: #06233b;
    color: #fff;
    padding: 28px 0 34px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, .8fr) minmax(0, 1.7fr);
    gap: 56px;
    align-items: start;
}

.footer-grid h3 {
    color: #fff;
    margin: 0 0 12px;
}

.footer-grid p {
    color: rgba(255, 255, 255, .78);
    line-height: 1.7;
    margin: 0;
}

.footer-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 20px;
}

.footer-contact__grid a {
    color: rgba(255, 255, 255, .86);
}

.footer-contact__address,
.footer-contact__lines {
    min-width: 0;
}

.footer-contact__lines {
    display: grid;
    gap: 12px;
}

.footer-contact__social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 2px;
}

.footer-contact__social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 4px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.footer-contact__social i,
.footer-contact__row > i {
    color: var(--gold-2);
}

.mission .footer-contact__social i,
.mission .footer-contact__row > i {
    color: #fff;
}

.footer-contact__row {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: rgba(255, 255, 255, .78);
    line-height: 1.7;
}

.footer-contact__row > i {
    margin-top: 4px;
    text-align: center;
}

@media (max-width: 1020px) {
    .nav-links {
        gap: 14px;
        font-size: 13px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero__image,
    .is-rtl .hero__image {
        min-height: 280px;
        order: 1;
    }

    .hero__panel,
    .is-rtl .hero__panel {
        order: 2;
        margin: 0;
        clip-path: none;
        padding: 44px 32px 130px;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
        width: calc(100% - 42px);
        gap: 10px;
    }

    .hero-benefits div {
        border: 0;
    }

    .hero-slider {
        min-height: 900px;
    }

    .hero-slide__content,
    .is-rtl .hero-slide__content {
        width: 100%;
        height: calc(100% - 240px);
        padding: clamp(130px, 15vw, 178px) 36px 280px;
        clip-path: none;
        box-shadow: none;
        justify-content: flex-start;
        background:
            radial-gradient(circle at 18% 14%, rgba(25, 92, 143, .2), transparent 42%),
            linear-gradient(90deg, rgba(0, 27, 50, .96) 0%, rgba(0, 39, 70, .82) 58%, rgba(0, 39, 70, .38) 100%);
    }

    .is-rtl .hero-slide__content {
        background:
            radial-gradient(circle at 82% 14%, rgba(25, 92, 143, .2), transparent 42%),
            linear-gradient(270deg, rgba(0, 27, 50, .96) 0%, rgba(0, 39, 70, .82) 58%, rgba(0, 39, 70, .38) 100%);
    }

    .hero-slide h1,
    .is-rtl .hero-slide h1 {
        max-width: 760px;
        font-size: clamp(30px, 5vw, 46px);
        line-height: 1.14;
    }

    .hero-slide__copy {
        max-width: 720px;
        font-size: clamp(15px, 2vw, 18px);
    }

    .hero-slide:after,
    .hero-slide__content:after {
        display: none;
    }

    .hero-slide__media {
        opacity: .46;
    }

    .hero-slider__dots {
        bottom: 254px;
    }

    .hero-slider .hero-benefits {
        min-height: 240px;
        grid-template-columns: 1fr;
        padding: 22px 28px;
    }

    .hero-slider .hero-benefits div {
        padding: 8px 0;
    }

    .hero-slider .hero-benefits strong {
        font-size: clamp(17px, 2.4vw, 20px);
    }

    .hero-slider .hero-benefits small {
        font-size: clamp(14px, 2vw, 17px);
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .offer-card {
        flex-basis: calc((100% - 18px) / 2);
    }

    .offers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-grid,
    .testimonial-grid--page {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 58px 20px;
    }

    .product-list-layout,
    .is-rtl .product-list-layout,
    .product-detail,
    .is-rtl .product-detail {
        grid-template-columns: 1fr;
    }

    .product-filter-panel {
        position: static;
    }

    .is-rtl .product-filter-panel,
    .is-rtl .product-results,
    .is-rtl .product-detail__gallery,
    .is-rtl .product-detail__content {
        order: initial;
    }

    .product-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-story,
    .is-rtl .about-story,
    .about-mission,
    .is-rtl .about-mission,
    .contact-layout,
    .is-rtl .contact-layout {
        grid-template-columns: 1fr;
    }

    .is-rtl .about-story__copy,
    .is-rtl .about-story__media,
    .is-rtl .about-mission__copy,
    .is-rtl .about-mission__media,
    .is-rtl .contact-details-card,
    .is-rtl .contact-form-card {
        order: initial;
    }

    .about-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-grid--about,
    .about-values__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-quality__inner {
        grid-template-columns: 1fr;
    }

    .about-image__inner,
    .is-rtl .about-image__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-image__media img {
        min-height: 300px;
        max-height: 360px;
    }

    .about-image__stats {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        min-height: auto;
        padding: 22px 0;
        gap: 18px 0;
    }

    .about-image__stats div:nth-child(2) {
        border-inline-end: 0;
    }

    .is-rtl .about-image__copy,
    .is-rtl .about-image__media {
        order: initial;
    }

    .work-section,
    .is-rtl .work-section {
        grid-template-columns: 1fr;
    }

    .is-rtl .work-copy {
        order: 0;
    }

    .projects-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-gallery-card--featured {
        grid-row: span 1;
        min-height: 240px;
    }
}

@media (max-width: 760px) {
    body.public-site {
        padding-top: 40px;
    }

    .site-shell {
        width: min(100% - 28px, 1170px);
    }

    .top-strip {
        position: fixed;
        top: 0;
        inset-inline: 0;
        z-index: 70;
        height: 40px;
        overflow: hidden;
    }

    .top-strip__inner {
        min-height: 40px;
        padding: 0;
        gap: 10px;
        flex-wrap: nowrap;
        overflow: hidden;
        white-space: nowrap;
        font-size: 11px;
    }

    .top-strip__inner > a {
        flex: 0 1 auto;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .top-strip__inner > a:nth-child(2),
    .top-strip__inner > a:nth-child(3) {
        display: none;
    }

    .top-strip__actions {
        width: auto;
        flex: 0 0 auto;
        margin-inline-start: auto;
        gap: 8px;
        align-items: center;
        justify-content: space-between;
    }

    .quote-mini {
        padding: 7px 10px;
        font-size: 11px;
    }

    .main-nav,
    .has-home-slider .main-nav {
        position: fixed;
        top: 40px;
        inset-inline: 0;
        z-index: 60;
        background: #fff;
        color: var(--ink);
        border-bottom-color: #e8e8e8;
        box-shadow: 0 10px 28px rgba(6, 35, 59, .1);
    }

    .has-home-slider:not(.public-nav-solid) .main-nav {
        background: rgba(0, 27, 50, .52);
        color: #fff;
        border-bottom-color: rgba(255, 255, 255, .14);
        box-shadow: none;
        backdrop-filter: blur(8px);
    }

    .has-home-slider.public-nav-solid .main-nav {
        top: 40px;
    }

    .main-nav__inner {
        min-height: auto;
        padding: 8px 0;
        position: relative;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .brand {
        min-width: 0;
        flex: 1;
    }

    .language-toggle {
        padding: 3px;
        gap: 2px;
        box-shadow: 0 6px 16px rgba(6, 35, 59, .1);
    }

    .language-toggle a {
        min-width: 36px;
        min-height: 30px;
        padding: 0 9px;
        font-size: 12px;
    }

    .brand__logo {
        width: 38px;
        height: 46px;
    }

    .brand strong {
        font-size: 14px;
    }

    .brand small {
        font-size: 11px;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 8px);
        inset-inline: 0;
        width: 100%;
        display: grid;
        justify-content: stretch;
        gap: 0;
        padding: 10px;
        background: rgba(255, 255, 255, .98);
        border: 1px solid rgba(6, 35, 59, .12);
        border-radius: 6px;
        box-shadow: 0 18px 42px rgba(6, 35, 59, .18);
        max-height: calc(100vh - 118px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--ink);
        text-shadow: none;
        padding: 13px 14px;
        border-bottom: 1px solid rgba(6, 35, 59, .08);
        border-inline-start: 3px solid transparent;
    }

    .nav-links a i {
        display: inline-flex;
        width: 22px;
        justify-content: center;
        color: var(--gold);
        font-size: 16px;
        flex: 0 0 auto;
    }

    .nav-links a span {
        min-width: 0;
        flex: 1;
    }

    .nav-links a:last-child {
        border-bottom: 0;
    }

    .nav-links .active {
        border-bottom-color: rgba(6, 35, 59, .08);
        border-inline-start-color: var(--gold);
    }

    .is-rtl .nav-links {
        text-align: right;
    }

    .is-rtl .nav-links a {
        flex-direction: row-reverse;
    }

    .public-menu-open .nav-links {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .menu-toggle {
        display: inline-grid;
    }

    .search-button {
        width: 38px;
        height: 38px;
    }

    .trust-grid,
    .footer-grid,
    .vision-mission {
        grid-template-columns: 1fr;
    }

    .section-heading-row {
        display: grid;
        justify-items: center;
    }

    .section-heading-row__link {
        position: static;
    }

    .offers-carousel {
        padding-inline: 46px;
    }

    .offer-card {
        flex-basis: 100%;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-section {
        padding: 58px 0;
    }

    .testimonial-grid,
    .testimonial-grid--page {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .footer-contact {
        grid-column: auto;
    }

    .footer-contact__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .vision-mission__item {
        padding-block: 34px;
        padding-inline: 22px;
        gap: 16px;
    }

    .vision-mission__icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        font-size: 23px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .product-list-layout {
        padding: 42px 0 54px;
    }

    .contact-layout {
        padding: 42px 0 58px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-details-card,
    .contact-form-card {
        padding: 22px;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        inset-inline-end: 16px;
        bottom: 16px;
    }

    .whatsapp-float i {
        font-size: 28px;
    }

    .product-card-grid {
        grid-template-columns: 1fr;
    }

    .product-results__bar {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-detail {
        padding: 42px 0;
    }

    .product-detail__thumbs {
        grid-template-columns: repeat(3, 1fr);
    }

    .variant-table {
        overflow-x: auto;
    }

    .variant-table__head,
    .variant-table__row {
        min-width: 640px;
    }

    .about-story,
    .about-mission {
        padding: 48px 0;
    }

    .about-story__media:before,
    .is-rtl .about-story__media:before {
        inset: -10px 12px 12px -10px;
    }

    .about-service-grid,
    .trust-grid--about,
    .about-values__grid {
        grid-template-columns: 1fr;
    }

    .about-quality {
        padding: 40px 0;
    }

    .about-mission__copy {
        padding: 24px;
    }

    .about-image-section {
        padding: 48px 0;
    }

    .about-image__inner,
    .is-rtl .about-image__inner {
        gap: 28px;
    }

    .about-image__copy {
        padding: 0;
    }

    .about-image__copy h2 {
        font-size: clamp(28px, 9vw, 36px);
    }

    .about-image__copy p {
        font-size: 15px;
        line-height: 1.75;
    }

    .about-image__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 0;
    }

    .about-image__features span:nth-child(2n) {
        border-inline-end: 0;
    }

    .about-image__button {
        width: min(100%, 220px);
    }

    .about-image__media:before {
        inset: -12px 12px 12px -12px;
    }

    .is-rtl .about-image__media:before {
        inset: -12px -12px 12px 12px;
    }

    .about-image__media img {
        min-height: 220px;
        max-height: 300px;
    }

    .about-image__stats {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .about-image__stats div,
    .about-image__stats div:nth-child(2) {
        border-inline-end: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .18);
        padding: 14px 0;
    }

    .about-image__stats div:last-child {
        border-bottom: 0;
    }

    .work-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .work-lightbox {
        padding: 14px;
    }

    .work-lightbox__dialog {
        min-height: calc(100vh - 28px);
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "image image"
            "prev next";
        align-content: center;
        gap: 14px;
    }

    .work-lightbox figure {
        grid-area: image;
    }

    .work-lightbox figure img {
        max-height: calc(100vh - 178px);
    }

    .work-lightbox__nav {
        width: 100%;
        height: 48px;
        border-radius: 5px;
    }

    .work-lightbox__nav--prev {
        grid-area: prev;
    }

    .work-lightbox__nav--next {
        grid-area: next;
    }

    .quote-modal {
        padding: 14px;
    }

    .quote-modal__dialog {
        max-height: calc(100vh - 28px);
        padding: 22px;
    }

    .quote-form {
        grid-template-columns: 1fr;
    }

    .quote-form__submit {
        width: 100%;
    }

    .projects-intro {
        padding: 44px 0 18px;
    }

    .projects-gallery-section {
        padding-bottom: 54px;
    }

    .projects-gallery {
        grid-template-columns: 1fr;
    }

    .project-gallery-card,
    .project-gallery-card--featured {
        min-height: 260px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-slider {
        min-height: 1020px;
        margin-top: -40px;
    }

    .slider-brand {
        margin-bottom: 30px;
    }

    .slider-brand__mark {
        width: 64px;
        height: 64px;
        font-size: 20px;
    }

    .hero-slide h1,
    .is-rtl .hero-slide h1 {
        max-width: 100%;
        font-size: clamp(27px, 8vw, 37px);
        line-height: 1.16;
        overflow-wrap: anywhere;
    }

    .hero-slide__content,
    .is-rtl .hero-slide__content {
        height: calc(100% - 300px);
        padding: 214px 22px 320px;
    }

    .hero-slide__rule {
        width: 58px;
        height: 3px;
        margin-bottom: 22px;
    }

    .hero-slide__copy {
        max-width: 100%;
        margin-top: 18px;
        font-size: clamp(14px, 4vw, 16px);
        line-height: 1.45;
    }

    .hero-slide__actions {
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 24px;
    }

    .hero-slide__actions .button {
        min-width: 0;
        width: min(100%, 220px);
        min-height: 50px;
        padding-inline: 18px;
    }

    .hero-slider__arrow {
        width: 48px;
        height: 48px;
    }

    .hero-slider__dots {
        bottom: 312px;
        gap: 14px;
    }

    .hero-slider__dots button {
        width: 12px;
        height: 12px;
    }

    .hero-slider .hero-benefits {
        min-height: 300px;
        padding: 18px 22px;
    }

    .hero-slider .hero-benefits div,
    .is-rtl .hero-slider .hero-benefits div {
        grid-template-columns: 52px 1fr;
        column-gap: 14px;
        min-height: 76px;
        text-align: left;
    }

    .is-rtl .hero-slider .hero-benefits div {
        grid-template-columns: 1fr 52px;
        text-align: right;
    }

    .hero-slider .hero-benefits .line-icon {
        width: 52px;
        height: 52px;
    }

    .hero-slider .hero-benefits .line-icon--service:after,
    .hero-slider .hero-benefits .line-icon--price:after,
    .hero-slider .hero-benefits .line-icon--quality:after {
        font-size: 48px;
    }

    .hero-slider .hero-benefits strong {
        font-size: 16px;
    }

    .hero-slider .hero-benefits small {
        font-size: 14px;
    }

    .hero__actions {
        flex-wrap: wrap;
    }
}
