@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Inter:wght@100..900&display=swap");

@font-face {
    font-family: "Vazirmatn";
    src: url("/fonts/Vazirmatn.woff2") format("woff2"),
        url("/fonts/Vazirmatn.woff") format("woff");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "B Nazanin";
    src: url("/fonts/B-Nazanin.woff2") format("woff2"),
        url("/fonts/B-Nazanin.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


html[lang="de"],
html[lang="en"],
html[lang="tr"],
html[lang="fr"] {
    font-family: var(--font-latin);
}

html[lang="fa"] {
    font-family: var(--font-fa);
}

html[lang="ar"] {
    font-family: var(--font-ar);
}

.lang-font-de,
.lang-font-en,
.lang-font-tr,
.lang-font-fr {
    font-family: var(--font-latin);
}

.lang-font-fa {
    font-family: var(--font-fa);
}

.lang-font-ar {
    font-family: var(--font-ar);
}


:root {
    --ink: #10140f;
    --paper: #f5f7f0;
    --soft: #e8ece2;
    --line: rgba(16, 20, 15, .12);
    --muted: #626b60;
    --lime: #ccff40;
    --steel: #8db4c8;
    --copper: #d28d5d;
    --white: #fff;
    --shadow: 0 24px 80px rgba(9, 15, 12, .18);
    --font-latin: "Inter", Arial, sans-serif;
    --font-fa: "B Nazanin", "Vazirmatn", Tahoma, serif;
    --font-ar: "Cairo", Tahoma, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: inherit;
    overflow-x: hidden;
}

[dir="rtl"] body {
    font-family: inherit;
    text-align: right;
}

img {
    max-width: 100%;
}

.ambient-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: .48;
    background-image:
        linear-gradient(rgba(16, 20, 15, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 20, 15, .055) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 70%, transparent);
}

.site-header {
    position: fixed;
    top: 14px;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 0 14px;
}

.site-header .navbar {
    max-width: 1540px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    background: rgba(12, 17, 13, .72);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .2);
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}

.brand-mark:hover,
.brand-mark:focus {
    color: #fff;
}

.brand-symbol {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: var(--fd-accent);
    color: #10140f;
    font-weight: 950;
    letter-spacing: 0;
}

.brand-mark strong,
.brand-mark small {
    display: block;
    line-height: 1.1;
}

.brand-mark small {
    max-width: 240px;
    color: rgba(255, 255, 255, .68);
    font-size: .78rem;
    white-space: normal;
}

.main-menu {
    gap: 4px;
}

.main-menu .nav-link {
    color: rgba(255, 255, 255, .76);
    border-radius: 8px;
    padding: 10px 14px;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.main-menu .nav-link:hover,
.main-menu .nav-link:focus {
    color: #fff;
    background: rgba(255, 255, 255, .1);
}

.main-menu .nav-link-strong {
    color: var(--fd-accent);
    border: 1px solid rgba(204, 255, 64, .35);
}

.main-menu .nav-link.is-active,
.main-menu .dropdown-toggle.is-active {
    color: var(--ink);
    background: var(--fd-accent);
}

.main-menu .nav-link:hover {
    transform: translateY(-1px);
}

.service-dropdown .dropdown-menu {
    margin-top: 8px;
    min-width: 230px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    padding: 8px;
    background: rgba(12, 17, 13, .95);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
    backdrop-filter: blur(18px);
}

.service-dropdown .dropdown-item {
    border-radius: 8px;
    color: rgba(255, 255, 255, .78);
    font-weight: 800;
    padding: 10px 12px;
}

.service-dropdown .dropdown-item:hover,
.service-dropdown .dropdown-item:focus {
    color: #fff;
    background: rgba(255, 255, 255, .1);
}

.service-dropdown .dropdown-item.is-active {
    color: var(--ink);
    background: var(--fd-accent);
}

.language-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.language-switcher a {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    font-size: .72rem;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    padding: 7px 8px;
}

.language-switcher a.active {
    color: var(--ink);
    background: var(--fd-accent);
    border-color: var(--fd-accent);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, .3);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.hero-section {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: #fff;
}

.hero-media,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 112%;
    object-fit: cover;
    transform: translateY(var(--hero-offset, 0));
    will-change: transform;
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(7, 9, 8, .9) 0%, rgba(7, 9, 8, .62) 34%, rgba(7, 9, 8, .18) 76%),
        linear-gradient(0deg, rgba(7, 9, 8, .78), transparent 42%);
}

[dir="rtl"] .hero-shade {
    background:
        linear-gradient(270deg, rgba(7, 9, 8, .9) 0%, rgba(7, 9, 8, .62) 34%, rgba(7, 9, 8, .18) 76%),
        linear-gradient(0deg, rgba(7, 9, 8, .78), transparent 42%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 780px) minmax(260px, 360px);
    gap: 28px;
    align-items: end;
    padding-top: 190px;
    padding-bottom: clamp(40px, 7vw, 92px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fd-accent);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 16px;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor;
}

[dir="rtl"] .eyebrow {
    letter-spacing: 0;
}

.hero-copy h1 {
    max-width: 860px;
    font-size: clamp(3.1rem, 7vw, 5.6rem);
    /* line-height: .9; */
    letter-spacing: 0;
    font-weight: 650;
    margin: 0 0 24px;
    text-wrap: balance;
}

.hero-copy p {
    max-width: 760px;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
    line-height: 1.65;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    border-radius: 8px;
    font-weight: 850;
    letter-spacing: 0;
    padding-inline: 22px;
}

.btn-primary {
    --bs-btn-bg: var(--fd-accent);
    --bs-btn-border-color: var(--fd-accent);
    --bs-btn-color: var(--ink);
    --bs-btn-hover-bg: #bdf035;
    --bs-btn-hover-border-color: #bdf035;
    --bs-btn-hover-color: var(--ink);
}

.hero-status {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px 14px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
}

.hero-status span {
    color: var(--fd-accent);
    font-weight: 950;
}

.hero-status strong {
    font-size: .98rem;
}

.motion-band {
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: var(--ink);
    color: var(--paper);
}

.ticker-track {
    display: flex;
    gap: 44px;
    width: max-content;
    padding: 18px 0;
    animation: ticker 24s linear infinite;
}

.ticker-track span {
    white-space: nowrap;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .78);
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.section-pad {
    padding: clamp(70px, 9vw, 150px) 0;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 34px;
}

.section-heading h2,
.process-panel h2,
.contact-layout h2,
.content-body h1 {
    font-size: clamp(2.2rem, 4.5vw, 4.2rem);
    line-height: .96;
    letter-spacing: 0;
    font-weight: 650;
    margin: 0 0 18px;
    text-wrap: balance;
}

.section-heading p,
.contact-layout p {
    color: var(--muted);
    font-size: 1.14rem;
    line-height: 1.7;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.service-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(20px, 3vw, 34px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .68);
    box-shadow: 0 18px 46px rgba(21, 26, 19, .07);
    transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    background: #fff;
    box-shadow: var(--shadow);
}

.service-card-wide {
    grid-column: span 2;
    background:
        linear-gradient(135deg, rgba(204, 255, 64, .2), rgba(141, 180, 200, .28)),
        #fff;
}

.service-index {
    width: fit-content;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 6px 10px;
    color: var(--muted);
    font-weight: 900;
}

.service-card h3 {
    max-width: 420px;
    font-size: clamp(1.5rem, 2vw, 2.4rem);
    line-height: 1;
    letter-spacing: 0;
    font-weight: 930;
}

.service-card p {
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

.process-section {
    padding: clamp(34px, 7vw, 110px) 0;
}

.process-panel {
    border-radius: 8px;
    background: #10140f;
    color: #fff;
    padding: clamp(26px, 5vw, 72px);
    overflow: hidden;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.process-steps span {
    min-height: 110px;
    display: flex;
    align-items: end;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 8px;
    padding: 16px;
    color: rgba(255, 255, 255, .82);
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
    font-weight: 850;
}

.contact-section {
    padding: clamp(64px, 8vw, 130px) 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) auto;
    align-items: end;
    gap: 24px;
    border-top: 1px solid var(--line);
    padding-top: 42px;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 24px 0;
    color: var(--muted);
}

.site-footer .container-fluid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.site-footer strong {
    color: var(--ink);
}

.site-footer a {
    color: var(--ink);
    font-weight: 800;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cookie-consent {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 80;
    width: min(940px, calc(100vw - 28px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(14, 18, 13, .92);
    color: #fff;
    box-shadow: 0 20px 70px rgba(0, 0, 0, .28);
    backdrop-filter: blur(18px);
    transform: translate(-50%, 18px);
    opacity: 0;
    transition: opacity .24s ease, transform .24s ease;
}

.cookie-consent.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.cookie-consent p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, .72);
    line-height: 1.55;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cookie-actions a {
    color: #fff;
    font-weight: 850;
    padding: 6px 8px;
}

.ai-chatbot {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1250;
    font-family: inherit;
}

[dir="rtl"] .ai-chatbot {
    right: auto;
    left: 22px;
}

.ai-chatbot-toggle {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    background: #10140f;
    color: var(--fd-accent);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .26);
    font-weight: 950;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.ai-chatbot-toggle:hover,
.ai-chatbot-toggle:focus {
    background: var(--fd-accent);
    color: var(--ink);
    transform: translateY(-2px);
}

.ai-chatbot-panel {
    position: absolute;
    right: 0;
    bottom: 74px;
    width: min(380px, calc(100vw - 32px));
    height: min(560px, calc(100svh - 120px));
    display: grid;
    grid-template-rows: auto 1fr auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    background: rgba(14, 18, 13, .96);
    color: #fff;
    box-shadow: 0 26px 90px rgba(0, 0, 0, .34);
    backdrop-filter: blur(18px);
}

[dir="rtl"] .ai-chatbot-panel {
    right: auto;
    left: 0;
}

.ai-chatbot-panel[hidden] {
    display: none;
}

.ai-chatbot-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.ai-chatbot-head span {
    display: block;
    color: var(--fd-accent);
    font-size: .74rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .12em;
}

[dir="rtl"] .ai-chatbot-head span {
    letter-spacing: 0;
}

.ai-chatbot-head h2 {
    margin: 2px 0 0;
    font-size: 1.05rem;
    line-height: 1.2;
    font-weight: 900;
}

.ai-chatbot-close {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
}

.ai-chatbot-messages {
    display: grid;
    align-content: start;
    gap: 10px;
    overflow-y: auto;
    padding: 16px;
    background:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 34px 34px;
}

.ai-chatbot-message {
    max-width: 88%;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: .94rem;
    line-height: 1.5;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.ai-chatbot-message-assistant {
    justify-self: start;
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .9);
}

.ai-chatbot-message-user {
    justify-self: end;
    background: var(--fd-accent);
    color: var(--ink);
    font-weight: 760;
}

[dir="rtl"] .ai-chatbot-message-assistant {
    justify-self: end;
}

[dir="rtl"] .ai-chatbot-message-user {
    justify-self: start;
}

.ai-chatbot-message-status {
    justify-self: center;
    background: rgba(141, 180, 200, .18);
    color: rgba(255, 255, 255, .78);
    font-size: .84rem;
}

.ai-chatbot-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .18);
}

.ai-chatbot-form textarea {
    width: 100%;
    min-height: 46px;
    max-height: 120px;
    resize: vertical;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    outline: none;
}

.ai-chatbot-form textarea::placeholder {
    color: rgba(255, 255, 255, .48);
}

.ai-chatbot-form button {
    min-width: 74px;
    border: 0;
    border-radius: 8px;
    padding: 0 14px;
    background: var(--fd-accent);
    color: var(--ink);
    font-weight: 900;
}

.ai-chatbot-form button:disabled,
.ai-chatbot-form textarea:disabled {
    opacity: .62;
    cursor: wait;
}

.plain-page {
    min-height: 70vh;
    padding: 150px 0 80px;
}

.content-body {
    /* max-width: 900px; */
}

.content-body h2 {
    margin: 44px 0 16px;
    font-size: clamp(1.8rem, 3vw, 3.1rem);
    line-height: 1;
    font-weight: 930;
    letter-spacing: 0;
}

.content-body p,
.content-body li {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.content-body ul {
    padding-left: 1.2rem;
}

[dir="rtl"] .content-body ul {
    padding-left: 0;
    padding-right: 1.2rem;
}

.cms-hero-photo {
    /* width: min(1120px, calc(100vw - 32px)); */
    margin: 34px 0 42px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cms-hero-photo img {
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
    display: block;
}

.cms-hero-photo figcaption {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    background: #10140f;
    color: rgba(255, 255, 255, .72);
    padding: 12px 16px;
    font-size: .86rem;
}

.cms-photo-gallery {
    /* width: min(1180px, calc(100vw - 32px)); */
    margin: 58px 0;
    padding: clamp(18px, 3vw, 30px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .4);
    box-shadow: 0 18px 46px rgba(21, 26, 19, .07);
}

.cms-photo-gallery-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}

.cms-photo-gallery-head span {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.cms-photo-gallery-head h2 {
    margin: 0;
}

.cms-photo-gallery-head p {
    max-width: 720px;
    margin: 0;
}

.cms-photo-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    grid-auto-rows: minmax(230px, auto);
    gap: 12px;
}

.cms-photo-card {
    position: relative;
    min-height: 260px;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--ink);
}

.cms-photo-card:first-child {
    grid-row: span 2;
}

.cms-photo-card img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    display: block;
    transition: transform .8s ease;
}

.cms-photo-card:hover img {
    transform: scale(1.04);
}

.cms-photo-card figcaption {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    color: #fff;
    background: rgba(9, 13, 10, .72);
    backdrop-filter: blur(14px);
}

[dir="rtl"] .cms-photo-card figcaption,
[dir="rtl"] .cms-hero-photo figcaption,
[dir="rtl"] .site-footer .container-fluid,
[dir="rtl"] .cookie-actions,
[dir="rtl"] .hero-actions {
    direction: rtl;
}

.cms-photo-card figcaption strong,
.cms-photo-card figcaption span {
    display: block;
}

.cms-photo-card figcaption span {
    color: rgba(255, 255, 255, .68);
    font-size: .82rem;
}

.cms-component-placeholder {
    margin: 24px 0;
    border: 1px dashed var(--line);
    border-radius: 8px;
    padding: 16px;
    color: var(--muted);
    background: rgba(255, 255, 255, .64);
}

.contact-page {
    min-height: 100vh;
    padding: 150px 0 90px;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(280px, 520px) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: start;
}

.contact-intro {
    position: sticky;
    top: 120px;
}

.contact-intro h1 {
    font-size: clamp(2.8rem, 5.4vw, 6.6rem);
    line-height: .92;
    font-weight: 950;
    letter-spacing: 0;
    margin: 0 0 22px;
}

.contact-intro p {
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.75;
}

.contact-signal {
    display: grid;
    gap: 4px;
    margin-top: 28px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .68);
}

.contact-signal span {
    color: var(--muted);
}

.enquiry-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 18px 46px rgba(21, 26, 19, .07);
    padding: clamp(18px, 3vw, 34px);
}

.enquiry-form {
    display: grid;
    gap: 26px;
}

.enquiry-form fieldset {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0 0 24px;
    border: 0;
    border-bottom: 1px solid var(--line);
}

.enquiry-form legend {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 930;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-grid-wide {
    grid-column: 1 / -1;
}

.enquiry-form label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-weight: 780;
}

.enquiry-form label span:first-child,
.service-checks > span {
    color: var(--ink);
    font-size: .86rem;
    font-weight: 900;
}

.enquiry-form .form-control,
.enquiry-form .form-select {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 13px;
    background: #fff;
}

.service-checks {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.service-checks > span {
    grid-column: 1 / -1;
}

.service-checks label,
.consent-line {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfcf8;
}

[dir="rtl"] .service-checks label,
[dir="rtl"] .consent-line {
    direction: rtl;
}

[dir="rtl"] .form-control,
[dir="rtl"] .form-select,
[dir="rtl"] textarea {
    text-align: right;
}

[dir="rtl"] input[type="email"],
[dir="rtl"] input[type="tel"],
[dir="rtl"] input[type="url"] {
    direction: ltr;
    text-align: left;
}

[dir="rtl"] .service-dropdown .dropdown-menu {
    text-align: right;
}

[dir="rtl"] .ticker-track {
    animation-name: ticker-rtl;
}

@keyframes ticker-rtl {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(50%);
    }
}

.file-drop {
    border: 1px dashed rgba(16, 20, 15, .28);
    border-radius: 8px;
    padding: 16px;
    background: #fbfcf8;
}

.file-drop small {
    color: var(--muted);
}

.enquiry-success {
    min-height: 360px;
    display: grid;
    align-content: center;
    gap: 12px;
}

.enquiry-success span {
    width: fit-content;
    border-radius: 8px;
    padding: 6px 10px;
    background: var(--fd-accent);
    color: var(--ink);
    font-weight: 950;
}

.enquiry-success h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: .98;
    font-weight: 950;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
    transition-delay: var(--delay, 0ms);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1100px) {
    .hero-content,
    .contact-layout,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .contact-intro {
        position: static;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .site-header {
        top: 8px;
        padding: 0 8px;
    }

    .brand-mark small {
        display: none;
    }

    .hero-copy h1 {
        font-size: clamp(2.8rem, 15vw, 4.8rem);
    }

    .hero-content {
        padding-top: 140px;
    }

    .service-grid,
    .process-steps,
    .cms-photo-grid,
    .form-grid,
    .service-checks {
        grid-template-columns: 1fr;
    }

    .cms-photo-card:first-child {
        grid-row: span 1;
    }

    .cms-photo-card figcaption,
    .cms-hero-photo figcaption {
        display: block;
    }

    .service-card-wide {
        grid-column: span 1;
    }

    .hero-status {
        display: none;
    }

    .cookie-consent {
        grid-template-columns: 1fr;
    }

    .ai-chatbot {
        right: 14px;
        bottom: 14px;
    }

    [dir="rtl"] .ai-chatbot {
        right: auto;
        left: 14px;
    }

    .ai-chatbot-panel {
        bottom: 68px;
        height: min(520px, calc(100svh - 96px));
    }
}
