:root {
    --ink: #172033;
    --text: #263248;
    --muted: #667085;
    --paper: #ffffff;
    --soft: #f6f8fb;
    --soft-2: #eef5f2;
    --line: #dde4ee;
    --navy: #12275a;
    --blue: #1c64a5;
    --teal: #188977;
    --gold: #c99a34;
    --red: #d64c3f;
    --green: #25d366;
    --shadow: 0 18px 46px rgba(23, 32, 51, .12);
    --wide: 1320px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Inter", "Open Sans", Arial, sans-serif;
    color: var(--text);
    background: var(--paper);
    line-height: 1.62;
    overflow-x: hidden;
}

@supports (overflow-x: clip) {
    html,
    body {
        overflow-x: clip;
    }
}

main,
section,
article,
figure,
div {
    min-width: 0;
}

a {
    color: inherit;
    text-decoration: none;
    overflow-wrap: anywhere;
}

img {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3,
p,
li,
strong,
span {
    overflow-wrap: anywhere;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(221, 228, 238, .88);
    box-shadow: 0 10px 30px rgba(23, 32, 51, .08);
    backdrop-filter: blur(16px);
}

.header-top {
    width: min(var(--wide), calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr 48px;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
}

.brand {
    min-height: 72px;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border-radius: 8px;
    background: linear-gradient(135deg, #0f1d42 0%, #173775 100%);
    box-shadow: 0 16px 34px rgba(18, 39, 90, .22);
}

.brand img {
    width: 270px;
    height: auto;
}

.header-info {
    display: grid;
    grid-template-columns: 1fr 1.08fr 1.34fr .92fr;
    gap: 10px;
}

.info-item {
    min-width: 0;
    display: grid;
    grid-template-columns: 32px 1fr;
    grid-template-rows: auto auto;
    column-gap: 10px;
    align-items: center;
    padding: 9px 11px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.info-item > i {
    grid-row: 1 / 3;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--navy);
}

.info-item span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.2;
}

.info-item strong,
.info-item a {
    min-width: 0;
    overflow-wrap: normal;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
}

.email-item a {
    font-size: 12px;
    line-height: 1.12;
    word-break: normal;
}

.social-item {
    grid-template-columns: 30px 1fr;
}

.social-item > i {
    width: 30px;
    height: 30px;
}

.socials {
    display: flex;
    gap: 8px;
}

.socials a {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--blue);
}

.socials a:last-child {
    background: var(--red);
}

.menu-toggle {
    display: none;
    min-width: 94px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--navy);
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 12px 24px rgba(18, 39, 90, .14);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.menu-toggle i {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #e95a47;
}

.menu-toggle:hover {
    color: #fff;
    background: var(--navy);
    box-shadow: 0 16px 30px rgba(18, 39, 90, .22);
    transform: translateY(-1px);
}

.main-nav {
    border-top: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    min-height: 54px;
    align-items: center;
    padding: 0 16px;
    background: #e95a47;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 9px 16px;
    border-radius: 8px;
    color: #fff;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.main-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .16);
    transform: translateY(-1px);
}

.menu-close,
.menu-backdrop {
    display: none;
}

.hero {
    min-height: 560px;
    display: grid;
    align-items: center;
    padding: 42px 0 56px;
    background: #fff;
}

.hero-stage {
    position: relative;
    width: min(1500px, calc(100% - 32px));
    min-height: 470px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(320px, 39%) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    overflow: visible;
    background: #fff;
}

.hero-title {
    position: relative;
    z-index: 2;
}

.hero-title h1 {
    margin: 0;
    color: #0d0672;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 76px;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: 0;
    text-transform: uppercase;
    overflow-wrap: normal;
    word-break: keep-all;
}

.hero-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.hero-logo {
    position: relative;
    z-index: 3;
    margin: 0;
    display: grid;
    place-items: center;
    min-height: 146px;
    grid-column: span 3;
    border: 1px solid rgba(221, 228, 238, .82);
    border-radius: 8px;
    background: #fff;
    padding: 18px;
    transform-origin: center;
    box-shadow: 0 18px 38px rgba(23, 32, 51, .08);
    filter: none;
}

.hero-logo img {
    width: min(100%, 360px);
    height: 96px;
    object-fit: contain;
}

.hero-logo-1 {
    grid-column: span 3;
}

.hero-logo-2 {
    grid-column: span 3;
}

.hero-logo-3 {
    grid-column: 2 / span 4;
}

.hero-logo-4 {
    grid-column: span 3;
}

.hero-logo-5 {
    grid-column: span 3;
}

.hero-view-more {
    position: relative;
    grid-column: 2;
    justify-self: center;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 168px;
    min-height: 48px;
    padding: 11px 26px;
    border-radius: 999px;
    background: #3f3f3f;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    transition: background .2s ease, transform .2s ease;
}

.hero-view-more:hover {
    background: #e95a47;
    transform: translateY(-2px);
}

.reveal-fly {
    opacity: 0;
    animation:
        flyReveal .9s cubic-bezier(.2, .8, .2, 1) forwards,
        floatLogo 4.8s ease-in-out infinite;
    animation-delay: var(--delay, 0ms), calc(var(--delay, 0ms) + 900ms);
}

.reveal-left {
    animation:
        titleFlyReveal .9s cubic-bezier(.2, .8, .2, 1) forwards,
        titleFloat 5.4s ease-in-out infinite;
    animation-delay: 80ms, 980ms;
}

@keyframes flyReveal {
    0% {
        opacity: 0;
        transform: translate3d(80px, -24px, 0) scale(.86) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1) rotate(0);
    }
}

@keyframes titleFlyReveal {
    0% {
        opacity: 0;
        transform: translate3d(-90px, 20px, 0) scale(.95);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes floatLogo {
    0%, 100% {
        translate: 0 0;
    }
    50% {
        translate: 0 -7px;
    }
}

@keyframes titleFloat {
    0%, 100% {
        translate: 0 0;
    }
    50% {
        translate: 0 -4px;
    }
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    cursor: pointer;
    white-space: normal;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: var(--navy);
    box-shadow: 0 14px 28px rgba(18, 39, 90, .22);
}

.btn-secondary {
    color: var(--ink);
    background: #fff;
    border-color: var(--line);
}

.client-strip figure {
    margin: 0;
    min-width: 0;
    min-height: 96px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 18px;
}

.section {
    padding: 86px 0;
}

.inner-hero {
    padding: 86px 0;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(18, 39, 90, .94), rgba(233, 90, 71, .86)),
        url("../images/commercial-property-valuation.jpg") center/cover no-repeat;
}

.inner-hero h1 {
    max-width: 760px;
    margin: 0 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 46px;
    line-height: 1.14;
}

.inner-hero p {
    max-width: 720px;
}

.inner-hero .kicker {
    color: #fff;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.facts-grid article,
.mission-grid article,
.detail-content article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(23, 32, 51, .08);
    padding: 22px;
}

.facts-grid i,
.mission-grid i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--navy);
    margin-bottom: 12px;
}

.facts-grid strong {
    display: block;
    color: var(--ink);
    font-size: 22px;
}

.facts-grid span {
    color: var(--muted);
    font-weight: 800;
}

.address-line {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
    color: var(--ink);
    font-weight: 800;
}

.address-line i {
    margin-top: 5px;
    color: var(--red);
}

.license-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 4px;
}

.license-strip span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 9px 12px;
    background: #fff;
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(23, 32, 51, .07);
}

.license-strip i {
    color: var(--teal);
}

.registrations-section {
    background: #fff;
}

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

.registration-grid article {
    min-height: 180px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 22px;
    box-shadow: 0 14px 30px rgba(23, 32, 51, .08);
}

.registration-grid i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--navy);
    margin-bottom: 14px;
}

.registration-grid h3 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.28;
}

.registration-grid p {
    margin: 0;
    color: var(--muted);
    font-weight: 800;
}

.mission-section {
    background: #fff;
}

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

.mission-grid h2,
.detail-content h2 {
    margin: 0 0 12px;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 34px;
    align-items: center;
}

.service-detail-grid figure {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}

.service-detail-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

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

.detail-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.detail-content li {
    display: flex;
    gap: 10px;
    color: var(--muted);
}

.detail-content li i {
    color: var(--teal);
    margin-top: 5px;
}

.service-method-section {
    background: var(--soft);
}

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

.method-grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 24px;
    box-shadow: 0 14px 30px rgba(23, 32, 51, .08);
}

.method-grid i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--red);
    margin-bottom: 14px;
}

.method-grid h2 {
    margin: 0 0 10px;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
}

.method-grid p {
    margin: 0;
    color: var(--muted);
}

.clients-page-section {
    background: #fff;
}

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

.client-logo-grid article {
    display: grid;
    align-content: center;
    gap: 18px;
    min-height: 230px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 28px;
    box-shadow: 0 16px 34px rgba(23, 32, 51, .08);
}

.client-logo-grid img {
    width: 100%;
    max-height: 112px;
    object-fit: contain;
}

.client-logo-grid h2 {
    margin: 0;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.25;
    text-align: center;
}

.client-logo-grid h2 i {
    color: var(--teal);
}

.contact-page-section {
    background: #fff;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 26px;
    align-items: start;
}

.contact-info-panel,
.enquiry-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 28px;
    box-shadow: var(--shadow);
}

.contact-info-panel h2,
.enquiry-panel h2 {
    margin: 0 0 20px;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    line-height: 1.15;
}

.contact-card-list {
    display: grid;
    gap: 14px;
}

.contact-card-list article {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 4px 14px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
    background: #fbfcfe;
}

.contact-card-list article > i {
    grid-row: 1 / span 3;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--navy);
    font-size: 18px;
}

.contact-card-list span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-card-list strong,
.contact-card-list a {
    color: var(--ink);
    font-weight: 900;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.contact-card-list a {
    width: fit-content;
}

.contact-card-list a:hover {
    color: var(--red);
}

.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.contact-socials a {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--blue);
    font-size: 18px;
    box-shadow: 0 12px 22px rgba(23, 32, 51, .12);
    transition: transform .2s ease, background .2s ease;
}

.contact-socials a:nth-child(2) {
    background: var(--red);
}

.contact-socials a:nth-child(3) {
    background: var(--green);
}

.contact-socials a:nth-child(4) {
    background: var(--navy);
}

.contact-socials a:hover {
    transform: translateY(-2px);
}

.map-section {
    padding: 0 0 86px;
    background: #fff;
}

.map-frame {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    background: var(--soft);
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

.services-band {
    background:
        linear-gradient(180deg, #f8fafc 0%, #ffffff 52%, #f6f8fb 100%);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.section-heading h2,
.about-copy h2,
.form-panel h2,
.testimonials h2,
.contact-cta h2 {
    margin: 0 0 14px;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    line-height: 1.16;
    letter-spacing: 0;
}

.section-heading p:not(.kicker) {
    margin: 0 auto;
    max-width: 620px;
    color: var(--muted);
}

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

.service-card {
    position: relative;
    grid-column: span 2;
    min-height: 276px;
    overflow: hidden;
    border-radius: 8px;
    background: #101828;
    box-shadow: 0 18px 36px rgba(23, 32, 51, .13);
}

.services-grid .service-card:nth-last-child(2):nth-child(3n + 1) {
    grid-column: 2 / span 2;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 24, 40, .15) 0%, rgba(16, 24, 40, .86) 100%);
}

.service-card img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    transition: transform .35s ease, opacity .35s ease;
}

.service-overlay {
    position: relative;
    z-index: 2;
    min-height: 276px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    color: #fff;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #12275a;
    background: #fff;
    font-size: 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
}

.service-card h3 {
    margin: 18px 0 16px;
    font-size: 22px;
    line-height: 1.25;
}

.service-card a {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    padding: 9px 13px;
    color: #fff;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .3);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.service-card:hover img,
.service-card.is-active img {
    transform: scale(1.08);
    opacity: .85;
}

.service-card:hover a,
.service-card.is-active a {
    background: var(--gold);
    border-color: var(--gold);
}

.about-section {
    background: var(--soft-2);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 44px;
    align-items: center;
}

.profile-photo {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 14px;
    box-shadow: var(--shadow);
}

.profile-photo img {
    width: 100%;
    aspect-ratio: 524 / 694;
    border-radius: 8px;
    object-fit: cover;
}

.profile-photo figcaption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--navy);
    font-weight: 900;
}

.credentials {
    display: block;
    margin: 0 0 16px;
    color: var(--navy);
    font-weight: 800;
}

.credentials i {
    color: var(--gold);
    margin-right: 6px;
}

.about-copy > p:not(.credentials) {
    color: var(--muted);
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.choose-grid article,
.testimonials article {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(23, 32, 51, .08);
}

.choose-grid article > i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--teal);
    margin-bottom: 14px;
}

.choose-grid h3,
.testimonials h3 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 17px;
}

.choose-grid p,
.testimonials p {
    margin: 0;
    color: var(--muted);
}

.appointment-section {
    background: #fff;
}

.appointment-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 28px;
    align-items: start;
}

.form-panel,
.testimonials {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 28px;
}

.appointment-form {
    display: grid;
    gap: 16px;
}

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

label,
legend {
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
}

label > span,
legend {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

label i,
legend i {
    color: var(--blue);
}

input,
textarea {
    width: 100%;
    min-height: 48px;
    margin-top: 8px;
    border: 1px solid #d5dde8;
    border-radius: 8px;
    background: #fbfcfe;
    color: var(--ink);
    padding: 11px 13px;
    font: inherit;
    outline: none;
    transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}

input:focus,
textarea:focus {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(28, 100, 165, .12);
}

textarea {
    resize: vertical;
}

fieldset {
    margin: 0;
    padding: 18px;
    border: 1px solid #d5dde8;
    border-radius: 8px;
}

.checkbox-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.checkbox-grid label {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
    min-height: 56px;
    background: #fff;
    font-size: 13px;
    font-weight: 800;
}

.checkbox-grid label:has(input:checked) {
    border-color: var(--blue);
    background: #f4f8fd;
}

.checkbox-grid input {
    width: 16px;
    min-width: 16px;
    min-height: 16px;
    margin: 3px 0 0;
    accent-color: var(--navy);
}

.checkbox-grid span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.notice {
    display: flex;
    gap: 10px;
    border-left: 4px solid var(--teal);
    border-radius: 8px;
    padding: 12px 14px;
    background: #eef8f5;
    color: var(--ink);
}

.notice.error {
    display: block;
    border-color: var(--red);
    background: #fff1f0;
}

.notice.error p {
    margin: 0 0 6px;
}

.testimonials {
    display: grid;
    gap: 16px;
}

.avatar {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--navy);
    font-size: 18px;
    margin-bottom: 14px;
}

.clients-section {
    background: #fff;
}

.client-strip {
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
}

.client-track {
    display: flex;
    width: max-content;
    gap: 16px;
    animation: clientMarquee 24s linear infinite;
}

.client-strip:hover .client-track {
    animation-play-state: paused;
}

.client-strip figure {
    gap: 12px;
    width: 240px;
    min-height: 150px;
    border: 0;
    box-shadow: none;
}

@keyframes clientMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 8px));
    }
}

.client-strip img {
    width: 100%;
    max-height: 66px;
    object-fit: contain;
}

.client-strip figcaption {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.client-strip figcaption i {
    color: var(--teal);
}

.contact-cta {
    overflow: hidden;
    padding: 44px 0 0;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(18, 39, 90, .95), rgba(24, 137, 119, .88)),
        url("../images/contact-bg.png") center/cover no-repeat;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 24px;
    align-items: center;
}

.contact-cta .kicker,
.contact-cta h2 {
    color: #fff;
}

.contact-lines {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.contact-lines a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 8px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, .12);
    font-weight: 900;
}

.contact-grid > img {
    align-self: end;
    width: min(340px, 100%);
    max-height: 420px;
    border-radius: 8px 8px 0 0;
    object-fit: cover;
    object-position: center top;
}

.site-footer {
    background: #111827;
    color: #fff;
    font-size: 14px;
}

.footer-grid {
    min-height: 68px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.footer-grid span,
.footer-grid a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-grid a {
    color: #dce8ff;
}

.whatsapp {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 55;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--green);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .24);
    font-size: 32px;
    animation: pulseFloat 2.6s ease-in-out infinite;
}

.floating-call {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 55;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #e95a47;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .24);
    font-size: 24px;
    animation: callPulse 2s ease-in-out infinite;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 92px;
    z-index: 55;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--navy);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .22);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .25s ease, transform .25s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

@keyframes pulseFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.04);
    }
}

@keyframes callPulse {
    0%, 100% {
        box-shadow: 0 14px 28px rgba(233, 90, 71, .28), 0 0 0 0 rgba(233, 90, 71, .35);
    }
    50% {
        box-shadow: 0 14px 28px rgba(233, 90, 71, .28), 0 0 0 12px rgba(233, 90, 71, 0);
    }
}

@media (max-width: 1100px) {
    .header-top {
        grid-template-columns: 240px 1fr 48px;
    }

    .brand img {
        width: 230px;
    }

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

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

    .hero-stage {
        grid-template-columns: minmax(280px, 36%) minmax(0, 1fr);
        min-height: 430px;
    }

    .hero-title h1 {
        font-size: 64px;
    }

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

    .service-card,
    .services-grid .service-card:nth-last-child(2):nth-child(3n + 1) {
        grid-column: auto;
    }

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

@media (max-width: 820px) {
    .site-header {
        position: relative;
    }

    .header-top {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
    }

    .brand img {
        width: min(220px, 58vw);
    }

    .header-info {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .info-item {
        padding: 8px;
        grid-template-columns: 30px 1fr;
        column-gap: 8px;
    }

    .info-item > i {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .info-item span {
        font-size: 11px;
    }

    .info-item strong,
    .info-item a {
        font-size: 12px;
    }

    .menu-toggle {
        display: inline-flex;
        place-items: center;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 70;
        width: 70vw;
        max-width: 340px;
        height: 100vh;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        justify-content: flex-start;
        gap: 10px;
        min-height: 100vh;
        padding: 18px 16px 22px;
        overflow-y: auto;
        overflow-x: hidden;
        background: #fff;
        box-shadow: -18px 0 34px rgba(18, 39, 90, .18);
        transform: translate3d(100%, 0, 0);
        visibility: hidden;
        transition: transform .32s cubic-bezier(.2, .8, .2, 1), visibility .32s ease;
        contain: layout paint;
    }

    .main-nav.is-open {
        transform: translateX(0);
        visibility: visible;
    }

    .main-nav a {
        justify-content: flex-start;
        width: 100%;
        min-height: 48px;
        border: 1px solid #e7edf5;
        background: #f8fafc;
        color: var(--ink);
        box-shadow: 0 10px 20px rgba(23, 32, 51, .06);
    }

    .main-nav a:hover {
        color: #fff;
        background: #e95a47;
    }

    .menu-backdrop {
        position: fixed;
        inset: 0;
        z-index: 65;
        display: block;
        opacity: 0;
        pointer-events: none;
        background: rgba(15, 23, 42, .48);
        backdrop-filter: blur(3px);
        transition: opacity .28s ease;
    }

    body.menu-open .menu-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    body.menu-open {
        overflow: hidden;
    }

    .menu-close {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        min-height: 48px;
        margin-bottom: 8px;
        border: 0;
        border-radius: 8px;
        padding: 10px 12px;
        color: #fff;
        background: var(--navy);
        font-size: 13px;
        font-weight: 900;
        text-transform: uppercase;
        cursor: pointer;
    }

    .menu-close i {
        width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: var(--navy);
        background: #fff;
    }

    .hero {
        min-height: auto;
        padding: 26px 0 30px;
        background: #fff;
    }

    .hero-stage {
        width: min(100% - 22px, 720px);
        min-height: 280px;
        display: grid;
        grid-template-columns: minmax(104px, 34%) minmax(0, 1fr);
        gap: 12px;
        align-items: center;
        overflow: visible;
    }

    .hero-title,
    .hero-logo,
    .hero-view-more {
        position: static;
    }

    .hero-title {
        text-align: left;
    }

    .hero-title h1 {
        font-size: 36px;
        line-height: 1.16;
    }

    .hero-logo {
        min-height: 76px;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 12px 24px rgba(23, 32, 51, .08);
    }

    .hero-logo img {
        height: 58px;
        max-height: 58px;
        object-fit: contain;
    }

    .hero-logo-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 8px;
    }

    .hero-logo-3 {
        grid-column: 2 / span 4;
    }

    .hero-view-more {
        grid-column: 2;
        justify-self: center;
        min-width: 134px;
        min-height: 40px;
        padding: 8px 18px;
        font-size: 13px;
        transform: none;
    }

    .hero-view-more:hover {
        transform: translateY(-2px);
    }

    .services-grid,
    .form-row,
    .checkbox-grid,
    .choose-grid,
    .facts-grid,
    .mission-grid,
    .service-detail-grid,
    .detail-content,
    .method-grid,
    .registration-grid,
    .client-logo-grid,
    .contact-page-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .services-grid .service-card:nth-last-child(2):nth-child(3n + 1) {
        grid-column: auto;
    }

    .client-track {
        gap: 12px;
    }

    .contact-socials {
        justify-content: flex-start;
    }

    .section {
        padding: 58px 0;
    }

    .inner-hero {
        padding: 58px 0;
    }

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

    .section-heading h2,
    .about-copy h2,
    .form-panel h2,
    .testimonials h2,
    .contact-cta h2 {
        font-size: 32px;
    }

    .form-panel,
    .testimonials,
    .contact-info-panel,
    .enquiry-panel {
        padding: 22px;
    }

    .map-section {
        padding-bottom: 58px;
    }

    .map-frame iframe {
        height: 340px;
    }

    .contact-grid > img {
        width: min(260px, 80vw);
        margin: 0 auto;
    }

    .footer-grid {
        min-height: 96px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 620px) {
    .section {
        padding: 48px 0;
    }

    .inner-hero {
        padding: 48px 0;
    }

    .inner-hero h1,
    .section-heading h2,
    .about-copy h2,
    .form-panel h2,
    .testimonials h2,
    .contact-cta h2,
    .contact-info-panel h2,
    .enquiry-panel h2 {
        font-size: 28px;
        line-height: 1.18;
    }

    .brand {
        min-height: 62px;
        padding: 10px 12px;
    }

    .header-info {
        grid-template-columns: 1fr;
    }

    .services-grid {
        gap: 14px;
    }

    .service-card,
    .service-overlay {
        min-height: 230px;
    }

    .service-card h3 {
        font-size: 19px;
    }

    .facts-grid article,
    .mission-grid article,
    .detail-content article,
    .registration-grid article,
    .client-logo-grid article,
    .method-grid article,
    .contact-info-panel,
    .enquiry-panel {
        padding: 18px;
    }

    .checkbox-grid label {
        min-height: 48px;
    }

    .floating-call,
    .whatsapp {
        width: 54px;
        height: 54px;
    }

    .whatsapp {
        font-size: 28px;
    }

    .floating-call {
        font-size: 21px;
    }

    .back-to-top {
        right: max(12px, env(safe-area-inset-right));
        bottom: 82px;
        width: 44px;
        height: 44px;
    }

    .whatsapp {
        right: max(12px, env(safe-area-inset-right));
        bottom: 14px;
    }

    .floating-call {
        left: max(12px, env(safe-area-inset-left));
        bottom: 14px;
    }
}

@media (max-width: 460px) {
    .container,
    .header-top {
        width: min(100% - 24px, 1180px);
    }

    .brand {
        min-height: 52px;
        padding: 8px 10px;
        width: fit-content;
    }

    .brand img {
        width: min(172px, 48vw);
    }

    .menu-toggle {
        min-width: 98px;
        height: 46px;
        gap: 8px;
        font-size: 14px;
    }

    .menu-toggle i {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .whatsapp {
        right: max(10px, env(safe-area-inset-right));
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    .floating-call {
        left: max(10px, env(safe-area-inset-left));
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .back-to-top {
        right: max(10px, env(safe-area-inset-right));
        bottom: 72px;
        width: 40px;
        height: 40px;
    }

    .header-info {
        display: none;
    }

    .hero-stage {
        width: min(100% - 16px, 440px);
        grid-template-columns: minmax(142px, 42%) minmax(0, 1fr);
        gap: 8px;
        min-height: 212px;
    }

    .hero-title h1 {
        font-size: 23px;
        line-height: 1.18;
        white-space: nowrap;
    }

    .hero-logo-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 6px;
    }

    .hero-logo {
        min-height: 54px;
        padding: 6px;
        box-shadow: 0 8px 18px rgba(23, 32, 51, .08);
    }

    .hero-logo img {
        height: 38px;
        max-height: 38px;
    }

    .hero-logo-3 {
        grid-column: 2 / span 4;
    }

    .hero-view-more {
        min-width: 112px;
        min-height: 34px;
        padding: 7px 12px;
        font-size: 11px;
    }

    .service-card,
    .service-overlay {
        min-height: 240px;
    }

    .contact-lines a {
        width: 100%;
        overflow-wrap: anywhere;
    }

    .contact-card-list article {
        grid-template-columns: 40px minmax(0, 1fr);
        padding: 14px;
    }

    .contact-card-list article > i {
        width: 40px;
        height: 40px;
    }

    .client-strip figure {
        width: 210px;
    }
}

@media (max-width: 360px) {
    .container,
    .header-top,
    .hero-stage {
        width: min(100% - 18px, 1180px);
    }

    .hero-title h1 {
        font-size: 22px;
    }

    .hero-stage {
        grid-template-columns: minmax(126px, 42%) minmax(0, 1fr);
        gap: 6px;
        min-height: 190px;
    }

    .hero-logo-grid {
        gap: 5px;
    }

    .hero-logo {
        min-height: 48px;
        padding: 5px;
    }

    .hero-logo img {
        height: 34px;
        max-height: 34px;
    }

    .whatsapp,
    .floating-call {
        width: 48px;
        height: 48px;
    }

    .whatsapp {
        font-size: 24px;
    }

    .floating-call {
        font-size: 19px;
    }

    .main-nav a,
    .btn,
    .service-card a,
    .contact-lines a {
        width: 100%;
    }

    .contact-card-list article {
        grid-template-columns: 1fr;
    }

    .contact-card-list article > i {
        grid-row: auto;
    }
}
