html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Assistant', sans-serif;
    color: #111111;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

body>main {
    flex: 1 0 auto;
}

body>footer {
    margin-top: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 200;
    transform: translateY(-140%);
    border-radius: 8px;
    background: #111111;
    color: #ffffff;
    padding: 12px 18px;
    font-weight: 800;
    box-shadow: 0 16px 32px rgba(17, 17, 17, 0.22);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid #e31b23;
    outline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    box-shadow: 0 0 0 4px rgba(227, 27, 35, 0.16);
}

.font-heading {
    font-family: 'Heebo', sans-serif;
}

.home-page {
    background-color: #ffffff;
}

.home-hero-title {
    font-size: clamp(2.35rem, 3.85vw, 3.5rem);
    line-height: 1.14;
    letter-spacing: 0;
    text-wrap: balance;
}

.home-hero-title>span {
    display: block;
}

.mobile-menu-button {
    display: none;
    width: 46px;
    height: 44px;
    padding: 0;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    background: #ffffff;
    color: #111111;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(17, 17, 17, 0.08);
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-menu-button:hover {
    border-color: #e31b23;
    color: #e31b23;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.12);
}

.mobile-menu-button i {
    font-size: 18px;
}

.mobile-whatsapp-fab {
    position: fixed;
    right: 16px;
    bottom: calc(28px + env(safe-area-inset-bottom, 0px));
    z-index: 60;
    display: none;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366 0%, #1ebe57 100%);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(20, 20, 20, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-whatsapp-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(20, 20, 20, 0.22);
}

.mobile-whatsapp-fab i {
    font-size: 1.7rem;
    line-height: 1;
}

.accessibility-widget {
    position: fixed;
    top: 50%;
    left: 16px;
    z-index: 120;
    transform: translateY(-50%);
}

.accessibility-fab {
    width: 54px;
    height: 54px;
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.65rem;
    box-shadow: 0 16px 34px rgba(17, 17, 17, 0.24);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.accessibility-fab:hover,
.accessibility-fab[aria-expanded="true"] {
    background: #e31b23;
    transform: translateX(2px);
    box-shadow: 0 20px 40px rgba(17, 17, 17, 0.3);
}

.accessibility-panel {
    position: absolute;
    top: 50%;
    left: 68px;
    width: min(282px, calc(100vw - 96px));
    transform: translateY(-50%);
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    background: #ffffff;
    color: #111111;
    box-shadow: 0 24px 58px rgba(17, 17, 17, 0.22);
    overflow: hidden;
}

.accessibility-panel.hidden {
    display: none;
}

.accessibility-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #eeeeee;
    background: #111111;
    color: #ffffff;
    font-family: 'Heebo', sans-serif;
}

.accessibility-panel-close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    cursor: pointer;
}

.accessibility-panel-actions {
    display: grid;
    gap: 8px;
    padding: 12px;
}

.accessibility-panel-action {
    min-height: 46px;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    background: #ffffff;
    color: #111111;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    cursor: pointer;
    font-weight: 800;
    text-align: right;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.accessibility-panel-action i {
    color: #e31b23;
    text-align: center;
}

.accessibility-panel-action:hover,
.accessibility-panel-action.is-active {
    border-color: rgba(227, 27, 35, 0.45);
    background: #fff4f4;
    color: #8f1117;
}

.accessibility-panel-reset {
    background: #f7f7f7;
}

html[data-a11y-text="large"] body {
    font-size: 112.5%;
}

html[data-a11y-links="true"] a {
    text-decoration: underline;
    text-underline-offset: 0.18em;
    text-decoration-thickness: 0.12em;
}

html[data-a11y-reduce-motion="true"] *,
html[data-a11y-reduce-motion="true"] *::before,
html[data-a11y-reduce-motion="true"] *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
}

html[data-a11y-contrast="true"] body,
html[data-a11y-contrast="true"] main,
html[data-a11y-contrast="true"] section,
html[data-a11y-contrast="true"] footer {
    background: #000000 !important;
    color: #ffffff !important;
}

html[data-a11y-contrast="true"] header,
html[data-a11y-contrast="true"] article,
html[data-a11y-contrast="true"] form,
html[data-a11y-contrast="true"] .bg-white,
html[data-a11y-contrast="true"] .stats-card,
html[data-a11y-contrast="true"] .contact-side-panel,
html[data-a11y-contrast="true"] .contact-highlight-card,
html[data-a11y-contrast="true"] .faq-item,
html[data-a11y-contrast="true"] .gallery-shell,
html[data-a11y-contrast="true"] .accessibility-panel {
    background: #000000 !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

html[data-a11y-contrast="true"] a,
html[data-a11y-contrast="true"] button,
html[data-a11y-contrast="true"] .text-brandRed,
html[data-a11y-contrast="true"] .text-brandDarkGray,
html[data-a11y-contrast="true"] .text-brandBlack {
    color: #ffff66 !important;
}

html[data-a11y-contrast="true"] input,
html[data-a11y-contrast="true"] textarea,
html[data-a11y-contrast="true"] select {
    background: #000000 !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

.hero-location-label,
.hero-meta-label {
    font-size: 0.95rem;
    text-shadow: 0 0 16px rgba(227, 27, 35, 0.2);
}

.hero-meta-label {
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: #ff4d55;
}

@media (min-width: 1024px) {
    .hero-meta-label {
        font-size: 1.34rem;
        color: #ff7b82;
        letter-spacing: 0.03em;
    }
}

.mobile-menu-panel {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 45;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    background: #ffffff;
    box-shadow: 0 22px 42px rgba(17, 17, 17, 0.14);
}

.mobile-menu-panel.hidden {
    display: none;
}

.mobile-menu-nav {
    display: grid;
    gap: 0;
    padding: 10px 16px 14px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    border-bottom: 1px solid #f0f0f0;
    color: #2a2a2a;
    font-weight: 700;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.mobile-menu-link:last-child {
    border-bottom: 0;
}

.mobile-menu-link:hover,
.mobile-menu-link.is-active {
    color: #e31b23;
}

#contact-form {
    scroll-margin-top: 120px;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}

.stats-card {
    min-height: 100%;
    border: 1px solid #ececec;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stats-card:hover {
    transform: translateY(-4px);
    border-color: rgba(227, 27, 35, 0.18);
    box-shadow: 0 22px 50px rgba(17, 17, 17, 0.12);
}

.stats-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.stats-number {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1;
    margin-bottom: 14px;
}

.contact-side-panel {
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 32px 28px;
    border: 1px solid #ececec;
    box-shadow: 0 20px 48px rgba(17, 17, 17, 0.08);
}

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

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

.contact-highlight-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 16px 18px;
    border: 1px solid #ededed;
    border-radius: 8px;
    background: #fafafa;
}

.contact-highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(227, 27, 35, 0.1);
    color: #e31b23;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    width: 100%;
    padding: 0 18px;
    border-radius: 8px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: #ffffff;
    color: #111111;
    font-weight: 700;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.contact-chip:hover {
    transform: translateY(-1px);
    color: #e31b23;
    border-color: rgba(227, 27, 35, 0.3);
    box-shadow: 0 14px 28px rgba(17, 17, 17, 0.08);
}

.contact-input {
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-input:focus {
    border-color: #e31b23;
    box-shadow: 0 0 0 4px rgba(227, 27, 35, 0.08);
    background-color: #fffdfd;
}

input[type="email"] {
    direction: ltr !important;
    text-align: left !important;
}

.is-invalid {
    border-color: #e31b23 !important;
    box-shadow: 0 0 0 4px rgba(227, 27, 35, 0.1) !important;
    background-color: #fff8f8;
}

.field-error {
    margin-top: 6px;
    color: #b3131a;
    font-size: 0.88rem;
    font-weight: 700;
}

.form-message {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-radius: 8px;
    padding: 14px 16px;
    font-weight: 700;
    line-height: 1.5;
}

.form-message-error {
    border: 1px solid rgba(227, 27, 35, 0.24);
    background: #fff4f4;
    color: #8f1117;
}

.form-message-success {
    border: 1px solid rgba(34, 197, 94, 0.24);
    background: #f0fdf4;
    color: #166534;
}

.form-trust-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 8px;
    background: #fafafa;
    color: #2a2a2a;
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 14px 16px;
}

.form-trust-note i {
    flex: 0 0 auto;
    color: #e31b23;
    margin-top: 4px;
}

.form-honeypot {
    position: fixed;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
}

.faq-list {
    direction: rtl;
}

.faq-item {
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(17, 17, 17, 0.06);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
    border-color: rgba(227, 27, 35, 0.28);
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.09);
}

.faq-item summary {
    min-height: 68px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    list-style: none;
    font-family: 'Heebo', sans-serif;
    font-weight: 800;
    font-size: 1.08rem;
    color: #111111;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(227, 27, 35, 0.1);
    color: #e31b23;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.faq-item[open] summary i {
    transform: rotate(180deg);
    background: #e31b23;
    color: #ffffff;
}

.faq-item p {
    padding: 0 24px 22px;
    color: #2a2a2a;
    line-height: 1.8;
}

.training-card {
    position: relative;
}

.training-card::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid transparent;
    border-radius: 6px;
    pointer-events: none;
    transition: border-color 0.2s ease;
}

.training-card:hover::after,
.training-card:focus::after {
    border-color: rgba(227, 27, 35, 0.28);
}

.training-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.72);
    padding: 28px 16px;
}

.training-modal.hidden {
    display: none;
}

.training-modal-panel {
    position: relative;
    width: min(100%, 760px);
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
    padding: 34px;
}

.training-modal-close {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.training-modal-close:hover {
    background: #E31B23;
    transform: scale(1.04);
}

.health-page {
    background-color: #F9F9F9;
}

.gallery-page {
    background-color: #F9F9F9;
}



.bg-brandBlack {
    background-color: #111111;
}

.bg-brandRed {
    background-color: #E31B23;
}

.bg-brandGray {
    background-color: #F9F9F9;
}

.bg-brandDarkGray {
    background-color: #2A2A2A;
}

.text-brandBlack {
    color: #111111;
}

.text-brandRed {
    color: #E31B23;
}

.text-brandDarkGray {
    color: #2A2A2A;
}

.border-brandRed {
    border-color: #E31B23;
}

.hover\:bg-black:hover {
    background-color: #000000;
}

.hover\:bg-brandRed:hover {
    background-color: #E31B23;
}

.hover\:text-brandRed:hover {
    color: #E31B23;
}

.hover\:text-brandBlack:hover {
    color: #111111;
}

.hover\:border-brandRed:hover {
    border-color: #E31B23;
}

#signature-pad {
    border: 2px dashed #cccccc;
    background-color: #fafafa;
    cursor: crosshair;
    transition: border-color 0.3s;
}

#signature-pad:focus {
    border-color: #E31B23;
}

.testimonial-carousel {
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 0 64px;
}

.testimonial-section {
    position: relative;
    overflow: hidden;
    background-color: #111111;
    background-image: linear-gradient(135deg, #0f0f10 0%, #18191d 52%, #111111 100%);
}

.testimonial-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(227, 27, 35, 0.08) 0%, rgba(17, 17, 17, 0) 44%, rgba(17, 17, 17, 0.24) 100%);
    pointer-events: none;
}

.testimonial-section-inner {
    position: relative;
    z-index: 1;
}

.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    direction: rtl;
    width: min(86vw, 390px);
}

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

.drive-gallery-grid.is-compact {
    gap: 10px;
}

.gallery-shell {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(249, 249, 249, 0.62)),
        #ffffff;
}

.gallery-view-toggle {
    display: inline-flex;
    gap: 8px;
    padding: 6px;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    background: #f6f6f6;
}

.gallery-view-toggle button {
    min-height: 40px;
    border: 0;
    border-radius: 6px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #2a2a2a;
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-view-toggle button.is-active {
    background: #111111;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(17, 17, 17, 0.12);
}

.drive-gallery-item {
    aspect-ratio: 4 / 3;
    border: 0;
    border-radius: 8px;
    background: #eeeeee;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    position: relative;
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.drive-gallery-grid.is-compact .drive-gallery-item {
    aspect-ratio: 1 / 1;
}

.drive-gallery-item::after {
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    inset: auto 14px 14px auto;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 17, 17, 0.72);
    color: #ffffff;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.drive-gallery-item:hover,
.drive-gallery-item:focus {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(17, 17, 17, 0.14);
}

.drive-gallery-item:hover::after,
.drive-gallery-item:focus::after {
    opacity: 1;
    transform: translateY(0);
}

.drive-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.drive-gallery-item:hover img {
    transform: scale(1.055);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 88px;
}

.gallery-lightbox.hidden {
    display: none;
}

.gallery-lightbox img {
    max-width: 100%;
    max-height: calc(100vh - 190px);
    object-fit: contain;
    display: block;
}

.gallery-lightbox-media {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.gallery-lightbox-info {
    min-width: min(100%, 420px);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    color: #ffffff;
    background: rgba(17, 17, 17, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 12px 16px;
}

.gallery-lightbox-info p {
    font-weight: 700;
}

.gallery-lightbox-info span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    white-space: nowrap;
}

.gallery-lightbox-close,
.gallery-lightbox-arrow {
    position: absolute;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-arrow:hover {
    background: rgba(227, 27, 35, 0.82);
    transform: scale(1.04);
}

.gallery-lightbox-close {
    top: 22px;
    left: 22px;
    width: 48px;
    height: 48px;
    font-size: 26px;
}

.gallery-lightbox-arrow {
    top: 50%;
    width: 64px;
    height: 64px;
    font-size: 30px;
    transform: translateY(-50%);
}

.gallery-lightbox-arrow:hover {
    transform: translateY(-50%) scale(1.04);
}

.gallery-lightbox-prev {
    right: 22px;
}

.gallery-lightbox-next {
    left: 22px;
}

.lightbox-open {
    overflow: hidden;
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.42);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.16);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.testimonial-arrow:hover {
    background: rgba(227, 27, 35, 0.78);
    transform: translateY(-50%) scale(1.04);
}

.testimonial-arrow:disabled {
    opacity: 0.22;
    cursor: default;
    pointer-events: none;
}

.testimonial-arrow-prev {
    left: 6px;
}

.testimonial-arrow-next {
    right: 6px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }

    .drive-gallery-item:hover,
    .drive-gallery-item:focus,
    .stats-card:hover,
    .contact-chip:hover,
    .testimonial-arrow:hover,
    .gallery-lightbox-arrow:hover,
    .gallery-lightbox-close:hover,
    .training-modal-close:hover {
        transform: none;
    }

    .drive-gallery-item:hover img {
        transform: none;
    }
}

@media (max-width: 767px) {
    body>footer {
        padding-bottom: 84px;
    }

    .home-page>section:not(#home) {
        padding-top: 2.75rem !important;
        padding-bottom: 2.75rem !important;
    }

    .home-page>section:not(#home) .mb-12,
    .home-page>section:not(#home) .mb-14,
    .home-page>section:not(#home) .mb-16 {
        margin-bottom: 2rem !important;
    }

    .contact-chip-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .contact-chip {
        min-height: 54px;
        padding: 0 10px;
        font-size: 0.88rem;
        gap: 6px;
        white-space: nowrap;
    }

    .contact-chip i {
        font-size: 1rem;
    }

    .mobile-whatsapp-fab {
        display: inline-flex;
    }

    .home-hero-title {
        font-size: clamp(1.9rem, 8.2vw, 2.5rem);
        line-height: 1.06;
    }

    header .h-20 {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
        height: auto;
        min-height: 80px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    header .h-20>div:first-of-type,
    header .h-20>a:first-of-type {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
    }

    header .h-20>nav {
        display: none !important;
    }

    header .h-20>div img,
    header .h-20>a:first-of-type img {
        height: 50px;
    }

    .mobile-menu-button {
        display: inline-flex;
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        align-self: center;
    }

    header .h-20>div:last-of-type,
    header .h-20>a:last-of-type {
        grid-column: 2;
        grid-row: 1;
        display: block;
        justify-self: center;
        align-self: center;
    }

    header .h-20>div:last-of-type a,
    header .h-20>a:last-of-type {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        min-width: 124px;
        padding: 0 14px;
        border-radius: 8px;
        background: #e31b23;
        color: #ffffff;
        font-size: 0.92rem;
        font-weight: 800;
        line-height: 1.1;
        text-align: center;
        box-shadow: 0 10px 22px rgba(227, 27, 35, 0.22);
    }

    .hero-location-label {
        font-size: 0.92rem;
        letter-spacing: 0.08em;
    }

    .hero-meta-label {
        font-size: 1rem;
        margin-bottom: 6px;
    }
}

@media (max-width: 640px) {
    .accessibility-widget {
        left: 12px;
        top: auto;
        bottom: calc(18px + env(safe-area-inset-bottom, 0px));
        transform: none;
        z-index: 140;
    }

    .accessibility-fab {
        width: 44px;
        height: 44px;
        font-size: 1.32rem;
    }

    .accessibility-panel {
        left: 54px;
        top: auto;
        bottom: 0;
        width: min(270px, calc(100vw - 72px));
        transform: none;
    }

    .home-hero-title {
        font-size: clamp(1.75rem, 8vw, 2.2rem);
    }

    .training-modal-panel {
        padding: 28px 20px;
    }

    .testimonial-carousel {
        padding: 0 42px;
    }

    .testimonial-arrow {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }

    .gallery-lightbox {
        padding: 72px 18px;
    }

    .gallery-lightbox-arrow {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }



    .gallery-section {
        padding-top: 2rem;
    }

    .gallery-shell {
        margin-right: -6px;
        margin-left: -6px;
        padding: 14px;
        border-radius: 8px;
        box-shadow: 0 14px 34px rgba(17, 17, 17, 0.08);
    }

    .gallery-toolbar {
        align-items: stretch;
        gap: 14px;
        padding: 6px 2px 14px;
    }

    .gallery-toolbar h2 {
        font-size: 1.18rem;
    }

    .gallery-toolbar #gallery-count {
        font-size: 0.9rem;
    }

    .gallery-view-toggle {
        width: 100%;
        gap: 6px;
        padding: 5px;
    }

    .gallery-view-toggle button {
        flex: 1;
        justify-content: center;
        min-height: 44px;
        padding: 0 10px;
        font-size: 0.92rem;
    }

    .drive-gallery-grid {
        gap: 12px;
        padding-top: 14px;
    }

    .drive-gallery-item {
        border-radius: 7px;
    }

    .gallery-lightbox-info {
        min-width: 0;
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .contact-side-panel {
        padding: 26px 20px;
    }

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

    .contact-highlight-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .faq-item summary {
        min-height: 62px;
        padding: 18px 16px;
        font-size: 1rem;
    }

    .faq-item p {
        padding: 0 16px 18px;
    }

    .mobile-whatsapp-fab {
        right: 12px;
        bottom: calc(18px + env(safe-area-inset-bottom, 0px));
        width: 44px;
        height: 44px;
    }

    .mobile-whatsapp-fab i {
        font-size: 1.38rem;
    }
}

@media (max-width: 767px) {
    header .h-20 {
        flex-direction: row-reverse;
    }
}

@media (min-width: 640px) {
    .drive-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .drive-gallery-grid.is-compact {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {

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

    .drive-gallery-grid.is-compact {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

/* Blog Styles */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(227, 27, 35, 0.2);
    box-shadow: 0 20px 40px rgba(17, 17, 17, 0.08);
}

.blog-card-image-wrap {
    overflow: hidden;
}

.blog-card-image {
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.05);
}

/* Blog Post Typography */
.blog-post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2A2A2A;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content h2 {
    font-family: 'Heebo', sans-serif;
    font-weight: 900;
    font-size: 1.75rem;
    color: #111111;
    margin-top: 2.25rem;
    margin-bottom: 1rem;
    border-right: 4px solid #E31B23;
    padding-right: 12px;
}

.blog-post-content h3 {
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: #111111;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 1.5rem;
    padding-right: 1.5rem;
}

.blog-post-content ul {
    list-style-type: disc;
}

.blog-post-content ol {
    list-style-type: decimal;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
}

.blog-post-content blockquote {
    border-right: 4px solid #E31B23;
    padding: 1rem 1.5rem;
    margin: 1.75rem 0;
    background-color: #F9F9F9;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #2A2A2A;
}

/* CRM Submissions Dashboard Custom Styles */
.status-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23475569%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: left 0.65rem center;
    background-size: 0.65em auto;
    padding-left: 1.6rem;
    padding-right: 0.75rem;
    transition: all 0.2s ease;
}

.status-select:focus {
    box-shadow: 0 0 0 3px rgba(227, 27, 35, 0.15);
}