:root {
    --color-1: #ffffff;
    --color-1-1: #E6E9EF;
    --color-1-2: #C1C9D7;
    --color-1-3: #838d9e;
    --color-1-a: #ffffff3f;

    --color-2-a: #1f252f;
    --color-2: #15181f;
    --color-2-1: #1F252F;
    --color-2-1-a: #181d24ee;
    --color-2-2: #28313f;
    --color-2-2-a: #4047528f;
    --color-2-3: #2d3c49;
    --color-2-4: #485c69;
    --color-2-5-a: rgba(31, 37, 47, 0.411);
    --color-2-5-ab: rgba(31, 37, 47, 0.685);
    --color-2-5: rgba(31, 37, 47, 1);
    --color-3: #F04C4C;
    --color-3-1: #db2828;
    --color-3-a: #ff6b6b98;
    --color-3-a: rgba(177, 56, 56, 0.322);
    --color-4: #00B2CA;
    --color-4-1: #026f7e;
    --color-5: #0FAE97;

    --header-height: 4.375rem;
    --form-spacing: 20px;
    --animation-duration: 300ms;
    --calendar-width: 15.625rem;
    --calendar-spacing: 0.5rem;

    --multiform-bar-width: 180px;
    --nav-height: 70px;
    --hero-height-lg: 600px;
    --hero-height-md: 400px;

    --max-width-xl: 1500px;
    --max-width-lg: 1200px;
    --max-width-md: 900px;
    --max-width-sm: 600px;

    --space-100: 100px;
    --space-80: 80px;
    --space-64: 64px;
    --space-50: 50px;
    --space-40: 40px;
    --space-30: 30px;
    --space-24: 24px;
    --space-16: 16px;
    --space-10: 10px;
    --space-5: 5px;

    --txt-56: 56px;
    --txt-40: 40px;
    --txt-32: 32px;
    --txt-28: 28px;
    --txt-20: 20px;
    --txt-18: 18px;
    --txt-16: 16px;
    --txt-14: 14px;

    --brad-4: 4px;
    --brad-6: 6px;
    --brad-8: 8px;
    --brad-12: 12px;
    --brad-20: 20px;
    --brad-99: 99px;

    --shadow-md: 0 0 12px;
    --shadow-lg: 0 0 22px;
}

@font-face {
    font-family: roboto;
    font-display: swap;
    src: url('../fonts/Roboto-VariableFont_wdth,wght.ttf');
}

* {
    scrollbar-color: var(--color-2-4) var(--color-2);
    scrollbar-width: thin;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    height: 100%;
    width: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    z-index: -1;
    overflow-x: hidden;
    user-select: none;
}

/* ===================================
Section & Utility Classes (Mobile First)
=================================== */

.section-padding {
    padding: var(--space-80) 0;
}

.marg-y-40 {
    margin-top: var(--space-40);
}

/* Scroll Down Arrow */
.scroll-down-arrow {
    position: absolute;
    bottom: var(--space-16);
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--color-1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--animation-duration) ease;
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-down-arrow svg {
    width: 20px;
    height: 20px;
}

.scroll-down-arrow:hover,
.scroll-down-arrow:focus {
    background-color: var(--color-3);
    border-color: var(--color-3);
    transform: translateX(-50%) scale(1.1);
    animation: none;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: var(--space-16);
    right: var(--space-16);
    width: 44px;
    height: 44px;
    background-color: var(--color-3);
    border: none;
    color: var(--color-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--animation-duration) ease;
    z-index: 20;
    box-shadow: var(--shadow-md) rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus {
    background-color: var(--color-3-1);
    transform: translateY(-3px);
}

.back-to-top svg {
    transform: scale(1.3);
    width: 24px;
    height: 24px;
}

.op-03 {
    opacity: 0.2;
}

.pb-5 {
    bottom: -19px !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.center-text {
    text-align: center;
}

/* Container */
.container_max-w {
    position: relative;
    max-width: var(--max-width-lg);
    margin: 0 auto;
    padding: 2px var(--space-10);
    z-index: 1;
    overflow: hidden;
}

.container_max-w span {
    max-width: 700px;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-1);
    margin-bottom: var(--space-16);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: var(--txt-16);
    color: var(--color-1-2);
    margin-bottom: var(--space-24);
}

/* Image Helpers */
.image-fit-background {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-2-5) 0%, var(--color-2-5-a) 100%);
    z-index: 0;
}

/* ===================================
Larger Screens
=================================== */

@media (min-width: 480px) {

    .section-padding {
        padding: var(--space-80) 0;
    }

    .scroll-down-arrow {
        bottom: var(--space-24);
        width: 48px;
        height: 48px;
    }

    .scroll-down-arrow svg {
        width: 24px;
        height: 24px;
    }
}

@media (min-width: 768px) {
    .container_max-w {
        padding: 2px var(--space-24);
    }

    .section-title {
        font-size: var(--txt-40);
    }

    .section-subtitle {
        font-size: var(--txt-18);
        margin-bottom: var(--space-50);
    }

    .section-padding {
        padding: var(--space-80) 0;
    }

    .back-to-top {
        bottom: var(--space-30);
        right: var(--space-30);
    }
}

/* ===================================
Buttons
=================================== */

.btn {
    display: inline-block;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    transition: all var(--animation-duration) ease;
    text-align: center;
    cursor: pointer;
}

.btn-circular-sml {
    gap: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 8px;
    height: 26px;
    border-radius: 25px;
    background-color: var(--color-1-1);
    color: var(--color-2);
}

.btn-default {
    padding: 8px 22px;
    background-color: var(--color-1-1);
    color: var(--color-2);
}

.btn-circular-sml:hover,
.btn-circular-sml:focus,
.btn-default:hover,
.btn-default:focus {
    background-color: var(--color-1);
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--color-3);
    color: var(--color-1);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--color-1) !important;
    transform: translateY(-2px) !important;
    color: var(--color-2);
}

.btn-secondary {
    background-color: var(--color-4);
    color: var(--color-1);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--color-1);
    color: var(--color-2);
    transform: translateY(-2px);
}

.btn-tertiary {
    background-color: var(--color-5);
    color: var(--color-1);
}

.btn-tertiary:hover,
.btn-tertiary:focus {
    background-color: var(--color-1) !important;
    transform: translateY(-2px) !important;
    color: var(--color-2);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-submit {
    width: 100%;
}

.submit:hover,
.submit:focus {
    background-color: var(--color-1) !important;
    transform: translateY(-2px) !important;
    color: var(--color-2);
}

footer {
    background: var(--color-2);
    border-top: 1px solid var(--color-2-3);
    padding: 60px 20px 20px;
}

footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

footer .row-1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

footer .col {
    flex: 1;
    min-width: 100%;
    padding: 10px;
}

footer .col h3 {
    font-size: 20px;
    /* 1.3rem */
    line-height: 28px;
    /* 1.75rem */
    font-weight: 700;
    color: var(--color-1-2);
    margin-bottom: 10px;
}

footer .col ul {
    list-style: none;
    padding: 0;
}

footer .col li {
    margin-bottom: 5px;
}

footer .col a {
    font-size: 15px;
    /* 0.98rem */
    text-decoration: none;
    color: var(--color-1-3);
}

footer .col a:hover {
    color: var(--color-3);
}

footer .row-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    text-align: center;
}

footer .contact-item {
    display: flex;
    align-items: center;
    margin: 0;
}

footer .contact-item .icon {
    display: flex;
    margin-right: 2px;
    /* 0.125rem */
    font-size: 19px;
    /* 1.2em */
    width: 24px;
    color: var(--color-1-3);
    cursor: default;
}

.icon-color-1 {
    fill: var(--color-1-2);
}

footer .footer-link {
    text-decoration: none;
    color: var(--color-1-3);
    font-size: 14px;
    /* 0.9em */
    cursor: default;
}

footer .row-3 {
    margin-top: 44px;
    text-align: center;
    border-top: 1px solid var(--color-2-3);
    color: var(--color-1-3);
    font-size: 14px;
    /* 0.88em */
}

footer .row-3 p {
    padding-top: 8px;
}

@media (min-width: 769px) {
    footer .col {
        min-width: 200px;
    }

    footer .row-2 {
        flex-direction: row;
        justify-content: center;
        flex-wrap: nowrap;
        margin-top: 20px;
        white-space: nowrap;
    }

    footer .row-3 {
        text-align: left;
    }

    footer .contact-item {
        margin: 0 15px;
    }
}

/* ===================================
Header Section
=================================== */

.navbar {
    background: var(--color-2-1-a);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--color-2);
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
    width: 100%;
}

.navbar:hover {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
}

.brand {
    display: flex;
    align-items: center;
    width: 280px;
    height: 100%;
    pointer-events: none;
}

/* Brand colors */

.fill-color-2 {
    fill: var(--color-2);
}

.fill-color-3 {
    fill: var(--color-3);
}

.fill-color-1 {
    fill: var(--color-1);
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    margin-left: auto;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--color-1-2);
    margin: 3px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: var(--brad-6);
}

.mobile-toggle.active .hamburger:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    background: var(--color-2-1-a);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    list-style: none;
    padding: 0 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: max-height 0.4s ease, padding 0.4s ease;
    opacity: 0;
    overflow-y: hidden;
}

.nav-menu.active {
    max-height: calc(100vh - 70px);
    padding: 24px 16px;
    opacity: 1;
    visibility: visible;
}

.nav-item {
    width: 100%;
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 6px 20px;
    justify-content: space-between;
    color: var(--color-1-2);
    text-decoration: none;
    border: none;
    font-weight: 500;
    font-size: 16px;
    background-color: var(--color-2-1-a);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.nav-link:hover {
    background: var(--color-2-3);
    color: var(--color-3);
}

.nav-link:hover svg {
    fill: var(--color-3);
}

.tab-act {
    color: var(--color-4) !important;
}

.tab-act svg {
    fill: var(--color-4) !important;
}

.nav-link.tab-act svg {
    fill: var(--color-4) !important;
}

/* Dropdown Icon */
.level-1-drop-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.nav-item.active>.nav-link .level-1-drop-icon {
    transform: rotate(180deg);
}

/* Site basic icons */
.actions svg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    fill: var(--color-2-2);
}

.nav-menu svg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    fill: var(--color-1);
}

.contact-item svg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    fill: var(--color-1-3);
}

.contact-item a {
    stroke: var(--color-1-3);
}

.contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26px !important;
    height: 26px !important;
    fill: none !important;
}

.contact-link svg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--color-3);
}

.contact-link {
    color: var(--color-1);
}

/* Level-1 Dropdown */

.level-1-drop-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    list-style: none;
    border: 1px solid transparent;
    box-shadow: 0 0 12px transparent;
    margin-top: 0;
    margin-left: 8px;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
    z-index: 2000;
}

.nav-item.active .level-1-drop-menu {
    max-height: 500px;
    padding: 0;
}

.level-1-drop-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 12px;
    padding: 6px var(--space-30);
    border: 1px solid transparent;
    color: var(--color-1-2);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.level-1-drop-link.level-2-drop-trigger {
    color: var(--color-1-2);
}

.level-1-drop-link:hover {
    background: var(--color-2-3);
    color: var(--color-3);
}

.level-1-drop-link:hover svg {
    fill: var(--color-3);
}

/* Call / whatsapp / contact */

.desktop-actions {
    position: fixed;
    top: calc(var(--nav-height) + 4px);
    right: 0;
    padding: 6px;
    gap: 4px;
    background: var(--color-2-1);
    border-top-left-radius: var(--brad-20);
    border-bottom-left-radius: var(--brad-20);

    border: 1px solid var(--color-2-3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.desktop-actions i {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    ;
    height: 100%;
    color: var(--color-2-3);
}

/* Mobile actions: intouch */

a {
    text-decoration: none;
}

.mobile-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2px;
    background: var(--color-1-1);
    border-top: 1px solid var(--color-2-2);
    display: none;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
}

.mobile-actions i {
    display: flex;
    font-size: 18px;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    color: var(--color-2-3);
}

.mobile-actions i:hover {
    color: var(--color-4);
}

@media (min-width: 768px) {
    Z .desktop-actions {
        display: flex;

    }

}

/* Tablet and Desktop - Progressive Enhancement */
@media (min-width: 896px) {
    .nav-container {
        padding: 0 32px;
    }

    /* Hide mobile toggle on desktop */
    .mobile-toggle {
        display: none;
    }

    /* Desktop nav menu layout */
    .nav-menu {
        position: static;
        width: auto;
        max-height: none;
        background: transparent;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        padding: 0;
        box-shadow: none;
        overflow-y: visible;
        opacity: 1;
        overflow-y: visible;
    }

    .nav-item {
        width: auto;
    }

    .nav-link {
        width: auto;
        padding: 8px 12px;
        justify-content: flex-start;
        font-size: 15px;
        font-weight: 500;
        color: var(--color-1);
    }

    .nav-link:hover {
        background: var(--color-2-3);
        color: var(--color-3);
        transform: translateY(-1px);
    }

    .nav-button {
        margin-top: 0;
        justify-content: flex-start;
    }

    .nav-button:hover {
        transform: translateY(-1px);
    }

    .level-1-drop-menu .tab-active {
        background: var(--color-4);
        color: var(--color-1) !important;
    }

    /* Desktop.level-1-drop positioning */
    .level-1-drop-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: auto;
        min-width: 180px;
        background: var(--color-1);
        border: 1px solid var(--color-2);
        box-shadow: 0 4px 12px var(--color-2);
        margin-top: 18px;
        margin-left: 12px;
        opacity: 0;
        overflow: visible;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    }

    .nav-item.active .level-1-drop-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        max-height: none;
    }

    .level-1-drop-link {
        margin-left: 0;
        padding: 8px 22px;
        border-bottom: 1px solid var(--color-1-2);
        color: var(--color-2-2);
    }

    .level-1-drop-link:hover {
        background: var(--color-1-1);
        color: var(--color-3);
    }

}

/* Media Queries */

@media (min-width: 1024px) {
    .nav-container {
        max-width: 1400px;
        padding: 0 48px;
        height: 80px;
    }

    .desktop-actions {
        top: calc(var(--nav-height) + var(--space-30));
    }

    .brand {
        width: 320px;
    }

    .nav-menu {
        gap: 19px;
    }

    .nav-link {
        padding: 10px 14px;
        font-size: 18px;
        color: var(--color-1);
    }

    .nav-button {
        padding: 7px 32px;
        border-radius: var(--brad-6);
    }
}

/* Social Icons Section */

.social-icons-tray {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px;
    width: 130px;
    margin: 0 auto;
    border-radius: 30px;
    gap: var(--space-5);
    background: var(--color-1-3);
    border: 1px solid var(--color-2-1);
}

.social-icon {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: calc(100% / 4);
    border-radius: 50%;
    aspect-ratio: 1/1;
    border: 1px solid var(--color-2-3);
    overflow: hidden;
}

.social-icon svg {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    fill: var(--color-2-1);
    border-radius: 50%;
    aspect-ratio: 1/1;
    transition: fill 300ms ease;
}

.social-icon svg:hover {
    fill: var(--color-1);
}

.hero-height-lg {
    height: var(--hero-height-lg);
}

.areas-section {
    background-color: var(--color-2-1);
}

.areas-section.section-padding {
    padding: 80px 20px;
}

.areas {
    background-color: var(--color-2);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
}

.areas-header {
    position: relative;
    text-align: center;
    margin-bottom: 46px;
    padding: 22px 12px;
    overflow: hidden;
    border-radius: var(--br-8);
}

.areas-header h2 {
    font-size: 35px;
    font-weight: 800;
    color: var(--color-1);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.areas-header p {
    font-size: 16px;
    color: var(--color-1-3);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.6;
}

.areas-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
    background: linear-gradient(135deg, var(--color-2-5) 0%, var(--color-2-5-a) 100%);
    z-index: -1;
}

.contact-us-btn {
    background: var(--color-3);
    color: white;
    border: none;
    padding: 8px 32px;
    border-radius: var(--br-8);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-us-btn:hover {
    transform: translateY(-1px);
}

.contact-us-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--color-3), transparent);
    transition: left 0.5s;
}

.contact-us-btn:hover::before {
    left: 100%;
}

/* Mobile-first: Start with 1 column */
.area-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
}

.area-card {
    background: var(--color-2-1);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-3), var(--color-3));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.area-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--color-3);
}

.area-card:hover::before {
    transform: scaleX(1);
}

.area-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    gap: 16px;
}

.area-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-1-2);
    letter-spacing: -0.01em;
}

.icon-wrapper {
    width: 44px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-3), var(--color-3-1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.area-card:hover .icon-wrapper {
    transform: rotate(5deg) scale(1.1);
}

.icon-wrapper svg {
    width: 28px;
    height: 28px;
    fill: white;
    stroke: white;
    stroke-width: 2;
}

.districts-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(1, 1fr);
}

.district-link {
    display: block;
    padding: 8px 13px;
    background: var(--color-2);
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-1-3);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid var(--color-2-2);
    position: relative;
    overflow: hidden;
}

.district-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s;
}

.district-link:hover {
    transform: translateY(-2px);
    background: var(--color-3-a);
    color: white;
}

.district-link:hover::before {
    left: 100%;
}

.district-link span {
    position: relative;
    z-index: 1;
}

.area-card {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
}

.area-card:nth-child(1) {
    animation-delay: 0.1s;
}

.area-card:nth-child(2) {
    animation-delay: 0.2s;
}

.area-card:nth-child(3) {
    animation-delay: 0.3s;
}

.area-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 600px) {
    .districts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet: 2 cards per row */
@media (min-width: 808px) {

    .areas {
        padding: 48px 32px;
    }

    .areas-section.section-padding {
        padding: 80px 20px;
    }

    .areas-header h2 {
        font-size: 48px;
    }

    .areas-header p {
        font-size: 19px;
    }

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

    .area-card {
        padding: 32px;
    }

    .districts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .district-link {
        padding: 8px 14px;
        font-size: 14px;
    }
}

/* Desktop: 4 cards per row */
@media (min-width: 1200px) {

    .area-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

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

/* ===================================
Why Choose Us Section (Mobile-first)
=================================== */

.why-choose-section {
    background-color: var(--color-2-1);
}

.features-grid {
    display: grid;
    gap: 1.5rem;
    /* mobile spacing first */
    margin-top: 48px;
    grid-template-columns: 1fr;
    /* single column for mobile */
    max-width: 1400px;
    margin-inline: auto;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
}

.feature-icon svg {
    width: 56px;
    height: 56px;
    fill: none;
    stroke: var(--color-4);
    margin: 0 auto 16px;
    transform: scale(1.3);
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-1);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 16px;
    color: var(--color-1-3);
    line-height: 1.6;
}

.why-center {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
}

/* --- Responsive Upwards --- */

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1400px) {
    .features-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 40px;
    }
}

/* ===================================
Quote Form Section
=================================== */

/* Message modal */

.message-modal {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-2-5-a);
    transition: opacity var(--animation-duration) ease;
    z-index: 20;
}

.message-modal .message-content {
    position: relative;
    padding: 20px;
    background: var(--color-1);
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    border-radius: 14px;

}

.message-modal .success {
    color: var(--color-5);
}

.message-modal .failure {
    color: var(--color-3);
}


/* Form */

#contact-form {
    padding: 0 var(--space-16);
}

.contact-section {
    position: relative;
    background-color: var(--color-2-1);
}

.contact-section h2 {
    margin-top: var(--header-height);
}

.contact-section .container_max-w {
    overflow: visible;
}

.contact-intro {
    margin: 0 auto;
    max-width: var(--max-width-md);
    text-align: center;
    padding-bottom: var(--space-10);
}

.contact-text {
    font-size: var(--txt-18);
    color: var(--color-1-3);
    margin-bottom: var(--space-30);
    line-height: 1.7;
}

.contact-info {
    display: flex;
    gap: var(--space-30);
    margin-bottom: var(--space-30);
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-10);
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: var(--color-3);
}

.contact-link {
    font-weight: 600;
    text-decoration: none;
    transition: color var(--animation-duration) ease;
}

.contact-link:hover,
.contact-link:focus {
    color: var(--color-3);
}

.form-error {
    border: 1px solid var(--color-3) !important;
}

/* ===================================
CTA Section (Mobile-first)
=================================== */

.cta-section {
    background: linear-gradient(135deg, var(--color-2-5) 0%, var(--color-2-1) 100%);
}

.cta-content {
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.cta-title {
    font-size: var(--txt-28);
    /* smaller default for mobile */
    font-weight: 800;
    color: var(--color-1);
    margin-bottom: var(--space-24);
    letter-spacing: -0.02em;
}

.cta-row {
    position: relative;
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: var(--space-10);
    gap: 12px;
    margin-top: 0;
    margin-bottom: 20px;
}

.cta-row .cta-title {
    margin-bottom: 0;
    color: var(--color-1-1);
    font-size: var(--txt-28);
}

.cta-text {
    font-size: var(--txt-18);
    /* smaller base for mobile */
    color: var(--color-1-2);
    margin-bottom: var(--space-30);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    flex-direction: row;
    /* stacked on mobile */
    gap: var(--space-16);
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Responsive Upwards --- */

@media (min-width: 768px) {
    .cta-title {
        font-size: var(--txt-40);
    }

    .cta-text {
        font-size: var(--txt-20);
    }

    .cta-actions {
        flex-direction: row;
        /* side-by-side from tablet up */
    }

    .cta-row {
        margin-top: -42px !important;
    }

}

@media (min-width: 1024px) {
    .cta-title {
        font-size: var(--txt-40);
        /* stays the same but defined for clarity */
    }
}

/* ===================================
Gallery / Lightbox
=================================== */

/* Gallery Grid */

.media-gallery {
    width: 100%;
    background-color: var(--color-2-1);
    padding: var(--space-64) var(--space-10);
    box-sizing: border-box;
}

.gallery-header {
    color: var(--color-1-1);
    margin: 0 0 var(--space-64) 0;
    text-align: center;
}

.gallery-title {
    font-size: 36px;
    color: var(--color-1);
    padding-bottom: var(--space-16);
    text-align: center;
}

.gallery-subtitle {
    font-size: 18px;
    color: var(--color-1-3);
    margin: 0 0 var(--space-64) 0;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* very small devices default */
    gap: var(--space-16);
}

.gallery-item {
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    aspect-ratio: 2 / 3;
    /* consistent box ratio */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--brad-8);
    filter: opacity(0.8);
    border: 2px solid var(--color-1-2);
    transition: border 300ms ease, filter 300ms ease;
}


.gallery-item img:hover {
    border: 2px solid var(--color-3);
    filter: opacity(1);
}

/* Zoom Icon */
.zoom-icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 54px;
    height: 54px;
    fill: var(--color-1-2);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transform: scale(0.8);
    transition: opacity 250ms ease, fill 250ms ease, transform 250ms ease;
}

.zoom-icon::before {
    content: "🔍";
    font-size: 18px;
    color: white;
    line-height: 0;
}

/* Hover effects */

.gallery-item:hover .zoom-icon {
    fill: var(--color-3);
    transform: scale(1);
}

/* Small phones (iPhone portrait ~360px+) */
@media (min-width: 360px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablets */
@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

/* Large desktop / widescreen */
@media (min-width: 1440px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}


/* Video icon overlay */
.video-icon {
    position: absolute;
    bottom: 12px;
    right: 14px;
    font-size: 32px;
    color: white;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}

.lb-fade {
    opacity: 0;
    transition: opacity 150ms ease;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--color-2-1);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    transition: opacity 360ms ease;
    opacity: 1;
}

.lightbox-content {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
}

.lightbox img,
.lightbox video,
.lightbox iframe {
    display: none;
    object-fit: contain;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 48px;
    cursor: pointer;
    color: white;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 48px;
    cursor: pointer;
    color: var(--color-1);
    padding: 20px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ===================================
FAQ Section
=================================== */

/* ----- Base (Mobile) ----- */
.faq-hero-section {
    position: relative;
    background-color: var(--color-2);
    display: flex;
    justify-content: center;
}

.faq-hero {
    position: relative;
    text-align: center;
    padding: var(--space-64) var(--space-30);
}

.faq-card-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.faq-card-overlay {
    position: absolute;
    inset: 0;
    opacity: 1;
    background: linear-gradient(135deg, var(--color-2-5) 0%, var(--color-2-5-a) 100%);
}

.faq-hero-title {
    position: relative;
    font-size: var(--txt-28);
    font-weight: 800;
    color: var(--color-1);
    margin-bottom: var(--space-24);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.faq-hero-subtitle {
    position: relative;
    font-size: var(--txt-16);
    color: var(--color-1-2);
    line-height: 1.6;
}

/* ----- Intro & Categories ----- */
.faq-intro-section {
    background-color: var(--color-2-1);
}

.faq-categories {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11.2px;
    padding: var(--space-24);
    background: var(--color-2);
    margin-bottom: 30px;
    border: 1px solid var(--color-2-2);
    border-radius: var(--brad-8);
    box-shadow: var(--shadow-md) var(--color-2);
}

.active-target {
    background: var(--color-3) !important;
    color: var(--color-1);
}

/* ----- FAQ Container ----- */
.faq-app {
    position: relative;
    border-radius: var(--br-8);
    overflow: hidden;
    background: var(--color-2);
    border: 1px solid var(--color-2-3);
    box-shadow: 0 0 12px var(--color-2);
}

.faq-container {
    padding: 0;
}

.faq-item {
    border-bottom: 1px solid var(--color-2-3);
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease forwards;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--txt-16);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--color-2-3);
}

.faq-question h3 {
    font-size: var(--txt-16);
    font-weight: 500;
    color: var(--color-1-3);
    margin: 0;
    flex: 1;
    padding-right: var(--space-16);
    transition: color 0.3s ease;
}

.faq-question:hover h3 {
    color: var(--color-1);
}

.faq-item.active-target {
    background: var(--color-2-2) !important;
}

.faq-item.active-target .faq-question h3 {
    color: var(--color-3);
}

.faq-icon {
    font-size: var(--txt-20);
    font-weight: bold;
    color: var(--color-1-3);
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active-target .faq-icon {
    color: var(--color-3);
    transform: rotate(45deg);
}

.faq-answer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--color-1-2);
}

.faq-item.active-target .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: var(--txt-16);
    margin: 0;
    color: var(--color-2-3);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--color-4);
    line-height: 1.7;
}

.faq-answer a:hover {
    color: var(--color-3);
    line-height: 1.7;
}

/* ----- Contact Section ----- */
.faq-contact-section {
    text-align: center;
    padding: var(--space-30) var(--space-24);
    background: var(--color-2);
    box-shadow: var(--shadow-md) rgba(0, 0, 0, 0.1);
}

.faq-contact-section h2 {
    font-size: var(--txt-28);
    color: var(--color-1-1);
    margin-bottom: var(--space-16);
    font-weight: 700;
}

.faq-contact-section p {
    font-size: var(--txt-16);
    color: var(--color-1-3);
    margin-bottom: var(--space-24);
    font-weight: 500;
}

/* Mobile: single-column grid */
.faq-contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-16);
    margin-top: var(--space-30);
}

.faq-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-24);
    gap: var(--space-10);
    background: var(--color-2-1);
    border-radius: var(--brad-8);
    border: 1px solid var(--color-2-2);
    box-shadow: var(--shadow-md) var(--color-2);
    transition: all 320ms ease;
    cursor: pointer;
}

.faq-contact-item:hover {
    border: 1px solid var(--color-3);
    transform: translateY(-2px);
}

.faq-contact-item h3 {
    display: flex;
    align-items: center;
    gap: var(--space-10);
    font-size: var(--txt-20);
    color: var(--color-1-1);
    font-weight: 600;
}

.faq-contact-item h3 svg {
    width: 26px;
    height: 26px;
    fill: var(--color-3);
}

.faq-contact-item p {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-1-3);
    font-size: var(--txt-14);
    margin: 0;
}

/* ----- Animations ----- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
Progressive Enhancements
=================================== */

/* Tablets and up */
@media (min-width: 520px) {
    .faq-categories {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Medium devices (tablets) */
@media (min-width: 768px) {
    .faq-hero-title {
        font-size: var(--space-50);
    }

    .faq-hero-subtitle {
        font-size: var(--txt-20);
    }

    .faq-contact-section {
        padding: var(--space-64) var(--space-30);
    }
}

/* Large devices (desktops) */
@media (min-width: 992px) {
    .faq-contact-info {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--space-30);
    }

    .faq-contact-item {
        flex-direction: row;
    }
}

/* ===================================
       Hero Section (Mobile-first)
   =================================== */

.hero-lg-section {
    position: relative;
    height: var(--hero-height-lg);
    /* base mobile height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-md-section {
    position: relative;
    height: var(--hero-height-md);
    padding-top: 50px;
    /* base mobile height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-2-5) 0%, var(--color-2-5-a) 100%);
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 900px;
    padding: 12px var(--space-24) 0 var(--space-24);
}

.hero-title {
    font-size: var(--txt-32);
    /* smaller for mobile */
    font-weight: 800;
    color: var(--color-1);
    margin-bottom: var(--space-24);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: var(--txt-18);
    color: var(--color-1-2);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-lg-section .dropdown {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-lg-section .dropdown-toggle {
  cursor: pointer;
}

.hero-lg-section .dropdown-menu {
  display: none;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  gap: 1px;
  white-space: nowrap;
  top: calc(100% + 6px);
  background: var(--color-2-3);
  border: 1px solid var(--color-2-3);
  border-radius: var(--brad-8);
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
  overflow: hidden;
  z-index: 1000;
}

.hero-lg-section .dropdown-menu .dropdown-item {
  display: block;   
  width: 100%;               
  padding: 8px 16px;  
  background: var(--color-2-1);      
  color: var(--color-1-1);
  text-decoration: none;
  text-align: left;
}

.hero-lg-section .dropdown-menu .dropdown-item:hover {
  background: var(--color-2-3);
}

.hero-lg-section .dropdown.show .dropdown-menu {
  display: flex;              /* block instead of flex */
}


/* --- Responsive Upwards --- */

@media (min-width: 768px) {
    .hero-lg-section {
        height: 500px;
    }

    .hero-title {
        font-size: var(--txt-40);
    }

    .hero-subtitle {
        font-size: var(--txt-20);
    }

    .hero-actions {
        flex-direction: row;
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .hero-lg-section {
        height: var(--hero-height-lg);
        /* full desktop height */
    }

    .hero-title {
        font-size: var(--txt-56);
    }
}

/* ===================================
Introduction Section
=================================== */

.intro-section {
    background: var(--color-2-1);
    padding-right: var(--space-24);
    padding-left: var(--space-24);
}

.intro-content {
    max-width: var(--max-width-md);
    margin: 0 auto;
    text-align: center;
}

.dorman-badge {
    width: 200px;
    height: 200px;
    margin-top: -80px;
}

.intro-text {
    position: relative;
    display: inline;
    font-size: var(--txt-18);
    color: var(--color-1-2);
    text-align: left;
}

.intro-text .text-link {
    position: relative;
    color: var(--color-4);
    text-align: left;
}

.intro-text .text-link:hover {
    color: var(--color-3);
}

/* Legal pages */

.legal-section {
    padding: var(--space-24);
    background: var(--color-2-1);
}

.legal-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 100%;
    height: var(--hero-height-md);
    background: var(--color-2-1);
}

.legal-hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.legal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-2-5) 0%, var(--color-2-5-a) 100%);
}

.legal-hero .title-wrapper {
    width: max-content;
    margin: auto;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.legal-hero .icon {
    width: 70px;
    height: 70px;
    padding-right: 10px;
    position: relative;
    display: flex;
    color: var(--color-1);
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    font-size: var(--txt-40);
}

.legal-hero h1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: auto;
    color: var(--color-1);
    font-weight: 600;
    font-size: var(--txt-40);
}

.legal-policy {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: var(--space-50);
    width: calc(100% - 40px);
    max-width: var(--max-width-lg);
    margin: var(--space-30) auto;
    color: var(--color-1-3);
    background: var(--color-2-1);
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.4)
}

.legal-policy h2 {
    font-size: 25px;
    color: var(--color-1-2);
}

.legal-policy .mb-10 {
    margin-bottom: var(--space-10);
}

.legal-policy .mb-30 {
    margin-bottom: var(--space-30);
}

.legal-policy h3 {
    font-size: var(--txt-26);
    color: var(--color-1-2);
}

.legal-policy a {
    color: var(--color-1-2);
}

.legal-policy ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
}

.legal-content {
    width: 100%;
    height: 100%;
    max-width: var(--max-width-md);
}

.legal-content h2 {
    margin-bottom: var(--space-30);
    text-align: center;
}

/* Media queries */

@media (max-width: 768px) {
    .legal-hero h1 {
        font-size: var(--txt-28);
    }
}

.map-section {
    background-color: var(--color-2);
}

/* Hamburger button */
.forms-section-heading {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--color-2-1);
    border-bottom: 1px solid var(--color-2-3);
    padding: var(--space-30) 0 var(--space-10) 0;
    box-sizing: border-box;
}

.forms-hamburger {
    display: block;
    position: absolute;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 100;
}

.forms-hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: var(--space-5) 0;
    transition: all 0.3s ease;
}

.forms-hamburger.active-tab span:nth-child(1) {
    transform: rotate(45deg) translate(0.3125rem, 0.375rem);
}

.forms-hamburger.active-tab span:nth-child(2) {
    opacity: 0;
}

.forms-hamburger.active-tab span:nth-child(3) {
    transform: rotate(-45deg) translate(0.3125rem, -0.375rem);
}

.contact-hero-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    flex: 1;
    min-height: 384px;
    height: 66vh;

    overflow: hidden;
}

.contact-hero-wrapper img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    overflow: hidden;
    z-index: 1;
}

/* contact form */

.contact-hero-wrapper form {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin: auto;
    justify-content: center;
    min-width: 360px;
    max-width: 720px;
    height: auto;
    padding: var(--space-10) var(--space-30) var(--space-30);
    border-radius: var(--brad-8);
    z-index: 3;
}

.contact-row {
    position: relative;
    display: inline-block;
    flex-direction: column;
    width: 100%;
    height: auto;
    box-sizing: border-box;
}

.contact-row .field-label-2 {
    position: relative;
    display: flex;
    color: var(--color-1-3);
    font-size: var(--txt-14);
    justify-content: flex-start;
    width: calc(50% - var(--space-24) / 2);
    height: auto;
    margin: var(--space-16) 0 var(--space-5);
    float: left;
    box-sizing: border-box;
}

.contact-row .form-item-2 {
    position: relative;
    margin: 0;
    padding-left: 6px;
    display: flex;
    justify-content: space-between;
    width: calc(50% - var(--form-spacing) / 2);
    height: 26px;
    color: var(--color-1-2);
    float: left;
    background: var(--color-2-2-a);
    outline: none;
    border: none;
    border-radius: var(--brad-4);
    box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
}

.contact-row .field-label-1 {
    position: relative;
    display: flex;
    color: var(--color-1-3);
    font-size: var(--txt-14);
    justify-content: flex-start;
    width: 100%;
    height: auto;
    margin: var(--space-16) 0 var(--space-5);
    float: left;
    box-sizing: border-box;
}

.contact-row .form-item-1 {
    position: relative;
    margin: 0;
    padding-left: var(--space-5);
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 26px;
    float: left;
    color: var(--color-1-2);
    background: var(--color-2-2-a);
    outline: none;
    border: none;
    border-radius: var(--brad-4);
    box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
}

.contact-row .field-label-2:nth-of-type(1),
.contact-row .form-item-2:nth-of-type(1) {
    margin-right: var(--form-spacing);
}

.contact-row button {
    background: var(--color-3);
    color: var(--color-1);
    font-weight: 500;
    font-size: var(--brad-16);
    outline: none;
    border: none;
    margin: var(--space-24) var(--space-5) 0;
    padding: var(--space-5) var(--space-24);
    border-radius: var(--brad-99);
    cursor: pointer;
}

.contact-row textarea {
    min-height: 60px;
}

.form-row button:hover {
    background: var(--color-3-1);
}

.contact-hero-wrapper form i {
    padding-left: var(--space-5);
    color: var(--color-3);
}

#contact-wrap {
    margin: 0 0 0 0;
}

#contact-article {
    margin: 0 0 0 0;

}

/* quote forms section */

.forms-section {
    position: relative;
    display: flex;
    flex: 1;
    overflow: hidden;
    z-index: 2;
}

.forms-section #forms-toggle {
    display: block;
    top: var(--space-50);
    left: var(--space-16);
    z-index: 9;
}

.forms-section #forms-toggle * {
    background: var(--color-1-3);
}

/* quote form sidebar */

.sidebar {
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: var(--multiform-bar-width);
    transform: translateX(-100%);
    transition: transform var(--animation-duration) ease;
    padding: var(--space-80) 0 var(--space-24) 0;
    background: var(--color-2-1);
    border-right: 1px solid var(--color-2-3);
    z-index: 8;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    width: 100%;
}

.sidebar li {
    padding: var(--space-10) var(--space-16);
    cursor: pointer;
    font-size: var(--txt-14);
    color: var(--color-1-3);

}

.sidebar li:hover {
    color: var(--color-3);
    background: var(--color-1-2);
}

.display-forms-sidebar {
    transform: translateX(0);
}

.forms-select-title {
    padding: var(--space-30) var(--space-16) var(--space-24);
    font-weight: 700;
    color: var(--color-1-2);
    border-bottom: 1px solid var(--color-2-3);
    margin-bottom: 0px;
}

.active-form-tab {
    color: var(--color-1) !important;
    background: var(--color-3);
}

/* Single Focused Quote Form Wrapper */

.single-quote-content {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    flex: 1;
    padding: var(--space-30) 0 0 0;
    transition: margin-left var(--animation-duration) ease;
    margin: 0;
}

/* multi quote form wrapper */

.forms-content {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: calc(100% - 100px);
    flex: 1;
    padding: var(--space-30) 0;
    transition: margin-left var(--animation-duration) ease;
    margin: 0;
}

.form-content {
    position: relative;
}

.quote-form {
    display: none;
    flex-wrap: wrap;
    position: relative;
    justify-content: center;
    height: auto;
    width: 100%;
    padding: var(--space-10) var(--space-10) var(--space-30);
    box-shadow: 0 0 0 var(--color-2-1-a);
    border-radius: var(--brad-8);
}

.quote-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    fill: var(--color-1-1);
    aspect-ratio: 1/1;
}

.single-quote-content .quote-form {
    display: flex;
}

.single-quote-content .cta-actions {
    padding-bottom: var(--space-50);
}

.quote-forms div {
    font-size: var(--txt-14);
    color: var(--color-1-3)
}

.quote-step {
    display: none;
}

.forms-section .display-form {
    display: flex;
}

.forms-section .view-form {
    opacity: 1;
    transition: opacity calc(var(--animation-duration) * 2) ease;
}

.article-wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    margin: var(--space-30) 0 var(--space-10) 0;
}

.article-wrap .article-title {
    font-size: var(--txt-20);
    width: 100%;
    margin-bottom: var(--space-24);
    color: var(--color-1);
}

.single-quote-content:hover .article-title {
    color: var(--color-4);
}

.article-wrap .article-info {
    position: relative;
    display: inline-block;
    font-size: 1rem;
    line-height: 0px;
    width: 100%;
    color: var(--color-1-3);
    margin: var(--space-10) 0;
}

/* Forms section */
.quote-faq-link {
    position: relative;
    display: flex;
    justify-content: center;
    color: var(--color-1-2);
    padding: var(--space-30) var(--space-24);
}

.quote-faq-link a {
    font-weight: 500;
    color: var(--color-4);
    transition: color 240ms ease;
}

.quote-faq-link a:hover {
    color: var(--color-3);
}

.quote-faq-wrapper {
    padding: 2px;
}

.contact-row {
    position: relative;
}

.single-quote-content form,
.forms-content form {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    margin: auto;
    justify-content: center;
    height: auto;
    padding: var(--space-10) var(--space-30) var(--space-30);
    border: 1px solid var(--color-2-4);
    border-radius: var(--brad-8);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--space-24);
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 1rem;
}

/* Groups stack label above input */
.form-group {
    display: flex;
    flex-direction: column;
    flex: 1 1 100%;
    min-width: 100%;

}

/* Label look */
.form-group label {
    position: relative;
    display: inline-block;
    font-size: var(--txt-14);
    color: var(--color-1-3);
    margin-bottom: 4px;
    text-align: left;
}

/* Inputs & selects */
.form-group .date-launcher,
.form-group input,
.form-group select {
    background: var(--color-2-2);
    border: none;
    border-radius: var(--brad-4);
    box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
    color: var(--color-1-2);
    height: 28px;
    padding: 4px 8px;
    box-sizing: border-box;
    overflow: hidden;
}

.form-group .date-launcher {
    text-align: left;
    cursor: pointer;
}

/* Control layout per row type */
.form-row.one-col .form-group {
    flex: 1 1 100%;
}

.form-row.two-col .form-group {
    flex: 1 1 calc(50% - var(--form-spacing));
    min-width: calc(50% - var(--form-spacing));
}

.form-row.three-col .form-group {
    flex: 1 1 calc(33.333% - var(--form-spacing));
    min-width: calc(33.333% - var(--form-spacing));
}

.form-note {
    font-size: var(--txt-14);
    color: var(--color-4);
}

/* browser autofill styling fix */

input:-webkit-autofill {
    -webkit-box-shadow:
        0 0 0 1000px var(--color-2-2) inset,
        1px 1px 2px rgba(255, 255, 255, 0.2) inset;
    -webkit-text-fill-color: var(--color-1-2) !important;
    border-radius: var(--brad-4);
    overflow: hidden;
    color: var(--color-1-2) !important;
}

/* Mobile: stack everything */
@media (max-width: 600px) {

    .form-row.two-col .form-group,
    .form-row.three-col .form-group {
        flex: 1 1 100%;
        min-width: 100%;
    }

}

/* Buttons */
.form-row button {
    background: var(--color-3);
    color: var(--color-1);
    font-weight: 600;
    font-size: var(--txt-16);
    outline: none;
    border: none;
    margin-top: var(--space-16);
    padding: var(--space-5) var(--space-24);
    border-radius: var(--brad-99);
    cursor: pointer;
    flex: 1;
    transition: background, color, 260ms ease;
}

.form-row button:hover {
    color: var(--color-2);
    background: var(--color-1);
}

.form-row button:focus {
    color: var(--color-2);
    background: var(--color-1-3);
}

form textarea {
    width: 100%;
    height: 3em;
    min-height: 100px;
    padding: 0.5em;
    box-sizing: border-box;
    resize: vertical;
    background: var(--color-2-2);
    border: none;
    border-radius: var(--brad-4);
    box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
    color: var(--color-1-2);
    padding: 4px 8px;
    box-sizing: border-box;

}

/* calendar section */

.date-picker {
    position: fixed;
    inset: 0;
    margin: auto;
    width: fit-content;
    height: fit-content;
    background: var(--color-2-1);
    border: 1px solid var(--color-2-4);
    border-radius: var(--brad-8);
    padding: var(--txt-16);
    box-shadow: var(--shadow-md) rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 1000;
    width: 300px;
    transform: scale(0.9);
    font-family: system-ui, -apple-system, sans-serif;
}

.date-picker.active {
    display: block;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-16);
    border-bottom: 1px solid var(--color-3);
    padding: 0 var(--space-10);
}

#current-month {
    font-weight: 600;
    font-size: var(--txt-18);
    color: var(--color-1);
}

.calendar-header button {
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-10) var(--space-16);
    border-radius: var(--brad-4);
    color: var(--color-1);
    font-size: var(--txt-16);
}

.calendar-header button:hover {
    background: var(--color-1-3);
    color: var(--color-3-1);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--space-5);
}

.calendar-weekday {
    text-align: center;
    font-weight: 600;
    font-size: var(--txt-14);
    padding: var(--space-10) 0;
    color: var(--color-1-2);
    border-bottom: 1px solid var(--color-1-3);
    text-transform: uppercase;
}

.calendar-day {
    aspect-ratio: 1;
    padding: 0;
    text-align: center;
    cursor: pointer;
    border: none;
    background: var(--color-2-2);
    border-radius: var(--brad-4);
    font-size: var(--txt-14);
    color: var(--color-1-2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-day:hover:not(.disabled) {
    background: var(--color-1-3);
    color: var(--color-3);
}

.calendar-day.today {
    font-weight: 600;
}

.calendar-day.today::after {
    content: '';
    position: absolute;
    bottom: var(--space-5);
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: var(--brad-99);
    background: var(--primary-color);
}

.calendar-day.selected {
    background: var(--primary-color);
    color: var(--color-1);
    font-weight: 600;
}

.calendar-day.selected:hover {
    background: var(--primary-color);
    color: var(--color-1);
}

.calendar-day.disabled {
    color: var(--disabled-color);
    cursor: default;
    background: none;
}

label {
    display: block;
    margin-bottom: var(--space-10);
    font-weight: 500;
    color: var(--text-color);
}

.button {
    width: 50px;
    height: 20px;
    background: var(--color-4);
}

@media (min-width: 769px) {
    .sidebar {
        transform: translateX(0);
    }

    .forms-content {
        margin-left: var(--multiform-bar-width);
    }

    .quote-form {
        box-shadow: 0 0 10px var(--color-2-1-a);
        padding: var(--space-24) var(--space-40) var(--space-30);
    }

    .forms-section #forms-toggle {
        display: none;
    }

    .form-row {
        gap: var(--space-30);
    }

    .quote-faq-link {
        padding: var(--space-16) var(--space-40) 0;
    }

}

/* About quote-selector option */
.social-quote-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-24);
    width: 100%;
}

.social-quote-wrapper select {
    width: auto;
}

.social-quote-wrapper .social-icons-tray {
    margin: 0 0 auto;
    background: var(--color-1-3);
}

.about-quote-selector {
    background: transparent;
    ;
}

#quote-form-type {
    background: var(--color-2-1);
    width: 100%;
    padding: var(--space-5);
    color: var(--color-1-1)
}


/* ===================================
        Local Area Business Section
   =================================== */

.local-business-section {
    margin: 0 auto;
    padding: var(--space-80) var(--space-24);
    background-color: var(--color-2);
}

.business-card {
    padding: var(--space-24);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--color-1);
    border-left: 4px solid var(--color-2-1);
}

/* Headings */
.local-business-section h2 {
    position: relative;
    display: flex;
    justify-content: center;
    font-size: 2rem;
    padding: 0 20px;
    width: 100%;
    max-width: var(--max-width-md);
    margin: 0 auto var(--space-24) auto;
    color: var(--color-1);
    text-align: center;
    border-bottom: 2px solid var(--color-2-1);
    padding-bottom: var(--space-40);
}

.local-business-section h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--color-1-1);
    position: relative;
}

.local-business-section h3::before {
    content: "★";
    /* small star icon before subheading */
    color: var(--color-4);
    margin-right: 8px;
    font-size: 1.2rem;
    vertical-align: middle;
}

/* Paragraphs */
.local-business-section p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--color-1-3);
}

/* Emphasize keywords */
.local-business-section strong {
    color: var(--color-4);
    font-weight: 600;
}

.local-business-section a {
    color: var(--color-4);
    font-weight: 600;
}

.local-business-section a:hover {
    color: var(--color-3);
    font-weight: 600;
}

/* Lists with icons */
.local-business-section ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 20px;
}

.local-business-section li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--color-1-3);
}

.local-business-section li::before {
    content: "✔";
    /* checkmark icon */
    position: absolute;
    left: 0;
    color: var(--color-4);
    font-weight: bold;
}

/* Separators for sections */
.local-business-section section+section {
    border-top: 1px solid #eee;
    margin-top: 30px;
    padding-top: 20px;
}

/* ===================================
        Local Area Bio Section
   =================================== */


.local-bio-section {
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--color-2-1);
}

.bio-card {
    padding: var(--space-24);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--color-1);
    max-width: var(--max-width-lg);

    border-left: 4px solid var(--color-2-1);
}

/* Headings */
.bio-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background: linear-gradient(to right, var(--color-2-5) 0%, var(--color-2-5-a) 35%, var(--color-2-5-a) 65%, var(--color-2-5) 100%);
}

.local-bio-section .bio-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    width: 100%;
    margin: 0 auto var(--space-10) auto;
    color: var(--color-1);
    text-align: center;
    border-bottom: 2px solid var(--color-2-1);
    padding: var(--space-40) var(--space-24);
}

.local-bio-section h2 {
    position: relative;
    display: flex;
    justify-content: center;
    font-size: 2rem;
    padding: 0 20px;
    width: 100%;
    color: var(--color-1);
    text-align: center;
    border-bottom: 2px solid var(--color-2-1);
    padding-bottom: var(--space-40);
}

.local-bio-section h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--color-1-1);
    position: relative;
}

.local-bio-section h3::before {
    content: "★";
    /* small star icon before subheading */
    color: var(--color-3);
    margin-right: 8px;
    font-size: 1.2rem;
    vertical-align: middle;
}

/* Paragraphs */
.local-bio-section p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--color-1-2);
    z-index: 1;
}

/* Emphasize keywords */
.local-bio-section strong {
    color: var(--color-3);
    font-weight: 600;
}

.local-bio-section a {
    color: var(--color-3);
    font-weight: 600;
}

.local-bio-section a:hover {
    color: var(--color-4);
    font-weight: 600;
}

/* Lists with icons */
.local-bio-section ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 20px;
}

.local-bio-section li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--color-1-2);
}

.local-bio-section li::before {
    content: "✔";
    /* checkmark icon */
    position: absolute;
    left: 0;
    color: var(--color-3);
    font-weight: bold;
}

/* Separators for sections */
.local-bio-section section+section {
    border-top: 1px solid #eee;
    margin-top: 30px;
    padding-top: 20px;
}

/*  */
/* Responsive adjustments */
@media (max-width: 768px) {
    .local-business-section {
        padding: 30px 15px;
        border-left: 3px solid var(--color-4);
    }

    .local-bio-section {
        padding: 30px 15px;
        border-left: 3px solid var(--color-3);
    }

    .bio-card {
        padding: var(--space-24);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--color-1);
        border-left: 4px solid var(--color-2-1);
    }

    .local-bio-section h2 {
        font-size: 1.75rem;
    }

    .local-bio-section h3 {
        font-size: 1.25rem;
    }

    .local-bio-section p,
    .local-bio-section li {
        font-size: 0.95rem;
    }

    .local-bio-section h3::before {
        font-size: 1rem;
    }
}


/* ===================================
      Reviews Section (Mobile-first)
   =================================== */

.reviews-section {
    background-color: var(--color-2);
}

#reviews-heading {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: var(--space-10);
}

.reviews-google-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-1);
    width: 30px;
    height: 30px;
    margin-right: var(--space-10);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* base: single column */
    gap: var(--space-24);
    margin-top: var(--space-50);
}

.reviews-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--color-2-1);
    border: 1px solid var(--color-2-2);
    border-radius: var(--brad-8);
    padding: var(--space-24);
    /* mobile base padding */
    transition: all var(--animation-duration) ease;
}

.reviews-card:hover,
.reviews-card:focus-within {
    transform: translateY(-5px);
    border-color: var(--color-3);
    box-shadow: var(--shadow-md) rgba(0, 0, 0, 0.3);
}

.reviews-rating {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: var(--color-3);
    font-size: var(--txt-20);
    margin-bottom: var(--space-16);
}

.reviews-rating svg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin-right: var(--space-10);
    fill: var(--color-4);
}

.reviews-text {
    font-size: var(--txt-16);
    color: var(--color-1-2);
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 0;
}

.reviews-author {
    font-size: var(--txt-14);
    color: var(--color-1-3);
    font-weight: 600;
    margin-top: var(--space-24);
}

.leave-a-review {
    color: var(--color-3);
    text-decoration: none;
    font-size: 18px;
    transition: all 220ms ease;
}

.leave-a-review:hover,
.leave-a-review:focus {
    color: var(--color-4);
    transform: translateY(-2px) !important;
}

/* --- Responsive Upwards --- */

@media (min-width: 600px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-30);
    }

    .reviews-card {
        padding: var(--space-30);
    }
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-30);
    }
}

/* ===================================
Services Section
=================================== */
.card-background {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    top: 0;
    left: 0;
    z-index: -1;
}

.services-section {
    position: relative;
    background-color: var(--color-2);
    display: flex;
    justify-content: center;
    padding: var(--space-64) var(--space-10);
}

.service-max-width {
    padding: var(--space-16) 0;
    max-width: var(--max-width-md);
}

/* Base = mobile (single column) */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-24);
    width: 100%;
    margin-top: var(--space-50);
}

#services-heading {
    color: var(--color-1);
}

.service-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 20px;
    background: var(--color-2);
    position: relative;
    box-shadow: var(--shadow-md) rgba(0, 0, 0, 0.5);
    border: 1px solid var(--color-2-3);
    transition: all 0.4s ease;
}

/* Hover effects */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-3), var(--color-3));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 3;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--color-3);
}

.service-card-top {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.service-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transition: transform 0.4s ease;
    z-index: -2;
}

.service-top-overlay {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #fff;
    text-align: center;
    z-index: -1;
}

.service-card:hover .service-bg-image {
    transform: scale(1.1);
}

.service-card-bottom {
    padding: var(--space-24);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-title {
    font-size: var(--txt-20);
    font-weight: 700;
    color: var(--color-1);
    margin-bottom: var(--space-16);
}

.service-description {
    font-size: var(--txt-16);
    color: var(--color-1-3);
    line-height: 1.7;
    margin-bottom: var(--space-30);
}

.service-link {
    position: absolute;
    bottom: var(--space-30);
    color: var(--color-3);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--animation-duration) ease;
}

.service-link:hover,
.service-link:focus {
    color: var(--color-4);
}

.service-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
}

.service-icon svg {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 43px;
    fill: var(--color-3);
    opacity: 0.8;
}

/* Entrance animation */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
Responsive Upwards
=================================== */

/* Tablets and up (2 columns) */
@media (min-width: 768px) {
    .services-section {
        padding: var(--space-64) var(--space-24);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-30);
    }
}

/* Desktops (4 columns) */
@media (min-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===================================
Services Section
=================================== */

.van-spec-section {
    position: relative;
    background-color: var(--color-2);
    display: flex;
    justify-content: center;
    padding: var(--space-64) var(--space-10);
}

.van-spec-max-width {
    padding: var(--space-16) 0;
    max-width: var(--max-width-md);
}

/* Base = mobile (single column) */
.van-spec-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-24);
    width: 100%;
    margin-top: var(--space-50);
}

#van-spec-heading {
    color: var(--color-1);
}

.van-spec-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 20px;
    background: var(--color-2);
    position: relative;
    box-shadow: var(--shadow-lg) rgba(0, 0, 0, 0.5);
    border: 1px solid var(--color-2-3);
    transition: all 0.4s ease;
}

/* Hover effects */
.van-spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-3), var(--color-3));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 3;
}

.van-spec-card:hover::before {
    transform: scaleX(1);
}

.van-spec-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--color-3);
}

.van-spec-card-top {
    position: relative;
    width: 100%;
    height: 180px;
    padding: var(--space-24) 0;
    overflow: hidden;
}

.van-spec-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.6);
    transition: transform 0.4s ease;
    z-index: 1;
}

.van-spec-top-overlay {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #fff;
    text-align: center;
    z-index: -1;
}

.van-spec-card:hover .van-spec-bg-image {
    transform: scale(1.1);
}

.van-spec-card-bottom {
    padding: var(--space-24);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--color-2-1);
}

.van-spec-title {
    font-size: var(--txt-20);
    font-weight: 700;
    color: var(--color-1);
    margin-bottom: var(--space-16);
}

.van-spec-description {
    font-size: var(--txt-16);
    color: var(--color-1-3);
    line-height: 1.7;
    margin-bottom: var(--space-30);
}

.van-spec-link {
    position: absolute;
    bottom: var(--space-30);
    color: var(--color-3);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--animation-duration) ease;
}

.van-spec-link:hover,
.van-spec-link:focus {
    color: var(--color-4);
}

.van-spec-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    color: var(--color-3);
    margin-bottom: 8px;
}

.van-spec-icon i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 43px;
}

/* Entrance animation */
.van-spec-card {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
}

.van-spec-card:nth-child(1) {
    animation-delay: 0.1s;
}

.van-spec-card:nth-child(2) {
    animation-delay: 0.2s;
}

.van-spec-card:nth-child(3) {
    animation-delay: 0.3s;
}

.van-spec-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Blog Sections */

.book-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* blog section */
.blog-section {
    margin: 0 auto;
    padding: 1.5rem 1rem;
    /* mobile */
    background: var(--color-2);
}

.controls {
    margin-bottom: 2rem;
}

.search-box {
    position: relative;
    margin-bottom: 1.5rem;
    flex: 1;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-1-3);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 1px solid var(--color-2-3);
    border-radius: var(--brad-12);
    font-size: 1rem;
    transition: all 0.2s;
    background: var(--color-2-1);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.search-input {
    color: var(--color-1-3);
}

.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-2-3);
    background: var(--color-2-1);
    border-radius: var(--brad-12);
    color: var(--color-1-2);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.category-btn:hover {
    color: var(--color-1);
    background: var(--color-2-2);
}

.category-btn.active {
    background: var(--color-4);
    color: var(--color-1);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem 2rem;
}

.spinner {
    width: 3rem;
    height: 3rem;
    border: 4px solid var(--gray-200);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.blog-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.2rem;
    border: 1px solid var(--color-2-3);
    border-radius: var(--brad-12);
    background: var(--color-2-1);
    transition: box-shadow 0.2s;
    cursor: pointer;
}

.blog-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.blog-card-image {
    width: 100%;
    height: 12rem;
    background: var(--gray-100);
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.blog-card-badge {
    padding: 4px 18px;
    background: var(--color-4);
    color: var(--color-1);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    white-space: nowrap;
}

.blog-card-read-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--color-1-3);
    font-size: 0.875rem;
}

.blog-card-read-time svg {
    width: 1rem;
    height: 1rem;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-1);
    margin: 0.85rem 0 0.75rem 0;
    line-height: 1.4;
    overflow: hidden;
}

.blog-card:hover .blog-card-title {
    color: var(--color-4);
}

.blog-card-excerpt {
    color: var(--color-1-3);
    margin-bottom: 1rem;
    flex: 1;
    font-size: 0.95rem;
    display: -webkit-box;
    overflow: hidden;
    line-height: 1.5;
}

.blog-card-footer {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;

    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    border-top: 1px solid var(--color-2-3);
    padding-top: 12px;
    color: var(--color-1-3);
}

.blog-card-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 4px;
    margin: -4px 4px -12px 0;
    overflow: hidden;
    border: 2px solid var(--color-2-4);
}

.blog-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-right: 0.3rem;
}

.blog-card-author {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 4px;
}

.blog-card-author-name {
    font-weight: 500;
    color: var(--color-1-3);
    font-size: 0.95rem;
}

.blog-card-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--color-1-3);
    font-size: 0.875rem;
    white-space: nowrap;
}

.blog-card-date svg {
    width: 1rem;
    height: 1rem;
}

.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--gray-500);
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .category-filters {
        justify-content: flex-start;
        gap: 0.5rem;
    }
}

@media (min-width: 1024px) {
    .header-title h1 {
        font-size: 2.25rem;
    }

    .header-subtitle {
        font-size: 1.125rem;
        margin-left: 3rem;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
        gap: 2rem;
    }

    .blog-section {
        padding: 3rem 1rem;
    }
}

/* blog-page */

.full-blog-section {
    background: var(--color-2);
    padding: 0 0;
    /* mobile */
}

/* main content */
.full-post-content {
    border-radius: 0;
    border: 1px solid var(--color-2-3);
    background: var(--color-2-1);
    padding: var(--space-64) var(--space-24);
    /* mobile */
}

.full-post-content .blog-breadcrumb {
    height: 30px;
    color: var(--color-2-4);
    margin-bottom: var(--space-16);

}

.full-post-content .blog-breadcrumb a {
    height: 30px;
    color: var(--color-2-4);

}

.full-post-content .blog-breadcrumb a:hover {
    height: 30px;
    color: var(--color-1-2);
    margin-bottom: 24px;
}

.full-post-content .blog-breadcrumb span {
    height: 30px;
    color: var(--color-1-3);
}

.full-post-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.full-post-badge {
    padding: 4px 18px;
    background: var(--color-4);
    color: var(--color-1);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    border: 1px solid var(--color-2-4);
}

.full-post-read-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--color-2-4);
    font-size: 0.875rem;
}

.full-post-read-time svg {
    width: 1rem;
    height: 1rem;
}

.full-post-title {
    font-size: 1.875rem;
    /* mobile */
    font-weight: 700;
    color: var(--color-1);
    margin-bottom: 1.5rem;
}

.full-post-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-2-4);
    margin-bottom: var(--space-50);
}

.full-post-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--gray-200);
    border: 2px solid var(--color-2-4);
}

.full-post-author-info {
    flex: 1;
}

.full-post-author-name {
    font-weight: 600;
    color: var(--color-1-3);
    font-size: 1rem;
}

.full-post-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--color-2-4);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.full-post-date svg {
    width: 1rem;
    height: 1rem;
}

.full-post-body {
    line-height: 1.8;
    font-size: 1.0625rem;
}

.full-post-body h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-1-3);
    margin: 2rem 0 1rem 0;
}

.full-post-body h3 {
    font-size: 1.3125rem;
    font-weight: 700;
    color: var(--color-1-1);
    margin: 1.5rem 0 0.75rem 0;
}

.full-post-body section p,
.full-post-body section li {
    margin-bottom: 1rem;
    color: var(--color-1-3);

}

.full-post-body .footnote {
    color: var(--color-1);
    padding-top: 2rem;
    border-top: 1px solid var(--color-2-4);

}

.full-post-body ul {
    margin: 1rem 0 1rem 2rem;
    list-style-type: disc;

}

.full-post-body li {
    margin-bottom: 0.5rem;
}

.full-post-body ol {
    margin: 1rem 0 1rem 2rem;
    list-style-type: decimal;
}

.full-post-body strong {
    font-weight: 600;
    color: var(--gray-900);
}

@media (min-width: 768px) {
    .full-blog-section {
        padding: var(--space-30);
        /* mobile */
    }

    .full-post-content {
        border-radius: var(--brad-12);
        padding: 48px 32px;
        /* desktop padding */
    }

    .full-post-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1200px) {
    .full-blog-section {
        padding: var(--space-100) var(--space-30);
        /* mobile */
    }

}

/* ======================================
        Mini other services section
   ====================================== */

.other-services-section {
    padding: 20px 0 0;
    background: var(--color-2);
    margin-top: var(--space-40);
    border-top: 1px solid var(--color-2-3);
}

.other-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-16);
}

.other-services-heading {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: var(--space-16) 0 var(--space-30);
}

.other-services-heading svg {
    width: 34px;
    height: 34px;
    fill: var(--color-4);
}

.other-services-heading h2 {
    font-size: var(--txt-20);
    color: var(--color-1);
}

@media (min-width: 768px) {
    .other-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-24);
    }
}

.other-item {
    display: flex;
    align-items: flex-start;
    background: var(--color-2-2);
    border-radius: var(--brad-8);
    border: 1px solid var(--color-2-3);
    overflow: hidden;
    transition: background 260ms ease;
}

.other-item:hover {
    background: var(--color-4)
}

.other-icon {
    background: var(--color-2-3);
    flex-shrink: 0;
    width: 60px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.other-icon svg {
    fill: var(--color-4);
    width: 50%;
    height: 60%;
}

.other-text {
    padding: var(--space-10) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-weight: 600;
    text-decoration: none;
    color: #222;
}

.other-text h3 {
    font-size: var(--txt-16);
    color: var(--color-1);
}

.other-item:hover h3 {
    color: var(--color-1)
}

/* ===================================
           Cookie Manager app
   =================================== */

/* --- Banner Layout --- */
.cookie-banner {
    position: fixed;
    display: none;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--max-width-md);
    background: var(--color-2-1);
    color: var(--color-1-1);
    padding: 20px;
    border-radius: 14px;
    border: 1px solid var(--color-2-3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
    z-index: 9999;
}

.cookie-banner.show {
    display: block;
}

#cookie-blocker {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

#cookie-blocker.show {
    display: block;
}

.cookie-banner .cookie-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.cookie-banner .cookie-inner h3 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-banner .cookie-inner p {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-1-3);
}

.cookie-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.cookie-banner .cookie-heading svg {
    display: flex;
    width: 40px;
    height: 40px;
    fill: var(--color-3);
}

.cookie-banner .cookie-buttons {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.cookie-banner .cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-banner .cookie-btn:hover {
    background: var(--color-1);
    color: var(--color-2);
}

.cookie-banner .settings-btn {
    background: var(--color-5);
    color: #fff;
}

.cookie-banner .accept-btn {
    background: var(--color-4);
    color: white;
}


/* --- Settings Panel --- */
.cookie-settings {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.cookie-settings.show {
    display: flex;
}

.cookie-settings .settings-inner {
    background: #fff;
    color: #000;
    padding: 25px;
    width: clamp(260px, 90%, 450px);
    border-radius: 14px;
}

.cookie-settings .setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    font-size: 0.95rem;
}

/* --- Toggle Switch --- */
.cookie-settings .switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.cookie-settings .switch input {
    opacity: 0;
}

.cookie-settings .slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-3);
    border-radius: 34px;
    transition: .3s;
    cursor: pointer;
}

.cookie-settings .slider:before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: var(--color-1);
    border-radius: 50%;
    transition: .3s;
}

.cookie-settings input:checked+.slider {
    background: var(--color-4);
}

.cookie-settings input:checked+.slider:before {
    transform: translateX(22px);
}

.cookie-settings .switch.disabled {
    pointer-events: none;
}

.cookie-settings .settings-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 15px;
}

/* ===================================
    Utility Classes (Colors, SVG, etc)
   =================================== */

/* Colors */
.bg-1-1 {
    background: var(--color-1-1);
}

.bg-1-2 {
    background: var(--color-1-2);
}

.bg-1-3 {
    background: var(--color-1-3);
}

.bg-2 {
    background: var(--color-2);
}

.bg-2-1 {
    background: var(--color-2-1);
}

.bg-2 {
    background: var(--color-2);
}

.bg-2-1 {
    background: var(--color-2-1);
}

.bg-3 {
    background: var(--color-3);
}

.bg-3-a {
    background: var(--color-3-a);
}

.bg-4 {
    background: var(--color-4);
}

.bg-5 {
    background: var(--color-5);
}

.col-1 {
    color: var(--color-1);
}

.col-1-2 {
    color: var(--color-2-4);
}

.col-1-3 {
    color: var(--color-1-3);
}

.col-2-4 {
    color: var(--color-2-4);
}

.col-3 {
    color: var(--color-3);
}

.col-4 {
    color: var(--color-4);
}

.col-5 {
    color: var(--color-5);
}

/* SVG */

.fill-1 {
    fill: var(--color-1);
}

.fill-3 {
    fill: var(--color-3);
}

.fill-4 {
    fill: var(--color-4);
}

.opac-04 {
    opacity: 0.4
}

.min-marg-top-30 {
    margin-top: -30px;
}

/* Active Colors */

.tab-act {
    background: transparent;
    color: var(--color-4) !important;
}

/* ===================================
Responsive Upwards
=================================== */

/* Tablets and up (2 columns) */
@media (min-width: 768px) {
    .level-1-drop-menu .tab-act {
        background: var(--color-4) !important;
        color: var(--color-1) !important;
    }

    .van-spec-section {
        padding: var(--space-64) var(--space-24);
    }

    .van-spec-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-30);
    }
}

/* Desktops (4 columns) */
@media (min-width: 1100px) {
    .van-spec-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}