*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --prime: #E67817;
    --accent: #F6F6F6;
    --text: #858585;
    --dark-text: #3c3c3c;
    --heading: #0C0D0C;
    --muted: #687272;
    --muted-soft: #909090;
    --border: #DDE1E0;
    --soft-orange: #FFA26A;
    --gallery-heading: #d4833d;
    --header-surface-bg: rgba(67, 45, 33, 0.9);
    --header-height: 64px;
    --base-font-size: 14px;
    --font-display: "Unna", serif;
    --font-body: "Elms Sans", "Plus Jakarta Sans", system-ui, sans-serif;
    --font-ui: "Plus Jakarta Sans", "Elms Sans", system-ui, sans-serif;
    --container-max: 1440px;
    scroll-behavior: smooth;
}

@media (min-width: 1024px) {
    :root {
        --header-height: 62px;
    }
}

html {
    -webkit-text-size-adjust: 100%;
    font-size: var(--base-font-size);
    line-height: 1.5;
}

body {
    min-height: 100vh;
    font-family: var(--font-body);
    font-size: var(--base-font-size);
    color: var(--text);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    background: none;
    border: none;
}

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

ul,
ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.text-prime {
    color: var(--prime);
}

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

.mb-1 {
    margin-bottom: 0.5rem;
}

.h2 {
    font-family: var(--font-display);
    font-size: 21px;
    color: var(--heading);
    font-weight: 400;
    margin-bottom: 0.9rem;
}

p {
    font-family: var(--font-body);
    color: var(--muted);
    font-weight: 600;
    font-size: 13px;
    line-height: 1.6;
}

.container {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: clamp(1rem, calc(1rem + 8vw), 10rem);
    width: 100%;
}

section > .container {
    padding-block: clamp(2rem, calc(1.5rem + 2.5vw), 3rem);
}

@media (max-width: 476px) {
    .container {
        padding-inline: 2rem;
    }

    section > .container {
        padding-block: 1.5rem;
    }
}

section {
    scroll-margin-top: 80px;
}

.row {
    display: grid;
    gap: clamp(2rem, calc(1.5rem + 2.5vw), 3rem);
}

@media (width > 992px) {
    .row {
        grid-template-columns: 1fr 1fr;
    }

    .row:not(.reverse) {
        direction: rtl;
    }

    .row:not(.reverse) > * {
        direction: ltr;
    }
}

.content-center-y {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.btn-outline {
    display: inline-block;
    color: var(--prime);
    border: 1px solid var(--prime);
    padding: 7px 15px 9px;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
    background: var(--prime);
    color: #fff;
    text-decoration: none;
}

.btn-orange {
    background: var(--prime);
    padding: 15px 28px;
    border-radius: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #fff;
    border: none;
}

.btn-orange:hover {
    opacity: 0.92;
    text-decoration: none;
    color: #fff;
}

body.has-banner {
    padding-top: 0;
}

body.has-banner .site-main {
    padding-top: 0;
}

/* Scroll animations — matched to Kumar Realty animate-this */
@media (prefers-reduced-motion: no-preference) {
    .animate-this:not(.swipe):not(.rtl):not(.lft):not(.up):not(.down) {
        transform: translateY(50px);
    }

    .animate-this.animated:not(.swipe):not(.rtl):not(.lft):not(.up):not(.down) {
        animation: fade-in 1s ease-out forwards;
        animation-delay: calc(var(--stagger-index, 0) * 0.12s + 0.1s);
    }

    .animate-this.rtl {
        opacity: 0;
        transform: translateX(50px);
    }

    .animate-this.animated.rtl {
        animation: fade-in-right 1s ease-out forwards;
        animation-delay: calc(var(--stagger-index, 0) * 0.12s + 0.1s);
    }

    .animate-this.lft {
        opacity: 0;
        transform: translateX(-20px);
    }

    .animate-this.animated.lft {
        animation: fade-in-left 1s ease-out forwards;
        animation-delay: calc(var(--stagger-index, 0) * 0.12s + 0.1s);
    }

    .animate-this.up {
        opacity: 0;
        transform: translateY(50%);
    }

    .animate-this.animated.up {
        animation: fade-in-up 1s ease-out forwards;
        animation-delay: calc(var(--stagger-index, 0) * 0.12s + 0.1s);
    }

    .animate-this.down {
        opacity: 0;
        transform: translateY(-50%);
    }

    .animate-this.animated.down {
        animation: fade-in-down 1s ease-out forwards;
        animation-delay: calc(var(--stagger-index, 0) * 0.12s + 0.1s);
    }

    .animate-this.swipe {
        transform: none;
        opacity: 0;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .animate-this.swipe.animated {
        animation: text-slice-animation 5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        animation-fill-mode: forwards;
    }

    @keyframes text-slice-animation {
        0% {
            clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
            opacity: 1;
        }

        100% {
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            opacity: 1;
        }
    }

    @keyframes fade-in {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fade-in-right {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fade-in-left {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fade-in-up {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fade-in-down {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* ---- Header ---- */
/* Frontend header (megamenu + search) */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0px;
    --header-height: 64px;
    --header-surface-bg: rgba(67, 45, 33, 0.9);
    background: var(--header-surface-bg);
    transition: transform 0.35s ease-in-out, background 0.3s ease-in-out;

    @media (min-width: 1024px) {
        --header-height: 62px;
    }

    &.header-hidden {
        transform: translateY(-100%);
    }

    .container {
        max-width: 1084px;
        margin: 0 auto;
        padding: 0 20px;
        width: 100%;
        position: relative;
        z-index: 2;

        @media (min-width: 1024px) {
            padding: 0 46px;
        }
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: var(--header-height);

        a {
            text-decoration: none;
        }

        .logo {
            width: auto;
            max-height: 48px;
            display: block;
        }
    }

    /* Desktop navigation and actions */
    .desktop-nav {
        display: none;

        @media (min-width: 1024px) {
            display: block;
            margin-left: 60px;
            margin-right: auto;

            ul {
                display: flex;
                align-items: center;
                gap: 30px;
                list-style: none;
                margin: 0 !important;
                padding: 0 !important;

                li {
                    margin: 0 !important;
                    padding: 0 !important;

                    a,
                    button {
                        font-family: 'Elms Sans', 'Plus Jakarta Sans', sans-serif;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 12px;
                        line-height: 19px;
                        letter-spacing: 0.05em;
                        color: #FFFFFF;
                        text-transform: uppercase;
                        transition: color 0.3s;
                        background: none;
                        border: 0;
                        padding: 0;
                        margin: 0;
                        cursor: pointer;

                        &:hover,
                        &.active {
                            color: #E67817;
                        }

                        .arrow-down {
                            font-size: 10px;
                            margin-left: 4px;
                            display: inline-block;
                            transition: transform 0.3s, color 0.3s;
                            color: #FFFFFF !important;
                        }

                        &.active .arrow-down {
                            transform: rotate(180deg);
                            color: #E67817 !important;
                        }
                    }
                }
            }
        }
    }

    .desktop-actions {
        display: none;

        @media (min-width: 1024px) {
            display: flex;
            align-items: center;
            gap: 30px;

            a {
                font-family: 'Elms Sans', 'Plus Jakarta Sans', sans-serif;
                font-style: normal;
                font-weight: 400;
                font-size: 12px;
                line-height: 19px;
                color: #FFFFFF;
                text-transform: uppercase;
                display: flex;
                align-items: center;
                gap: 8px;
                transition: color 0.3s;

                img, .icon {
                    width: 13px;
                    height: 13px;
                    object-fit: contain;
                    transition: filter 0.3s;
                }

                &.active,
                &:hover {
                    color: #E67817;
                }

                &.active img,
                &.active .icon,
                &:hover img,
                &:hover .icon {
                    filter: brightness(0) saturate(100%) invert(52%) sepia(86%) saturate(1176%) hue-rotate(360deg) brightness(96%) contrast(92%);
                }
            }
        }
    }

    /* Mobile nav toggle wrapper */
    .mobile-nav-wrapper {
        display: flex;
        align-items: center;
        gap: 10px;

        @media (min-width: 1024px) {
            display: none !important;
        }
    }

    .mobile-search-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        transition: opacity 0.3s;

        &.active {
            opacity: 0.7;
        }

        img {
            width: 20px;
            height: 20px;
            object-fit: contain;
        }
    }

    .nav-toggle {
        height: 36px;
        width: 36px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 6px;
        align-items: center;
        cursor: pointer;
        border: none;
        background: transparent;

        span {
            height: 2px;
            width: 24px;
            background: #fff;
            border-radius: 2px;
            transition: all .3s ease-in-out;
        }

        &.open span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        &.open span:nth-child(2) {
            opacity: 0;
        }

        &.open span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
    }

    /* Mobile Menu Drawer */
    .mobilemenu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 500px;
        height: 100vh;
        background: #fff;
        padding: 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        transition: right 0.4s ease-in-out;
        z-index: 10000;
        overflow-y: auto;

        &.active {
            right: 0;
        }
    }

    .mobile-nav-links {
        list-style: none;
        padding: 0;
        margin: 0 0 24px 0;
        width: 100%;

        > li > a,
        .mobile-megamenu-trigger {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 14px 0;
            font-family: 'Elms Sans', 'Plus Jakarta Sans', sans-serif;
            font-size: 15px;
            font-weight: 400;
            line-height: 19px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: #333 !important;
            text-decoration: none;
            background: none;
            border: none;
            cursor: pointer;
            transition: color 0.3s;

            &:hover,
            &.active {
                color: #E67817 !important;
            }

            .arrow-down {
                font-size: 10px;
                transition: transform 0.3s;
            }
        }

        .mobile-megamenu-item.open .mobile-megamenu-trigger .arrow-down {
            transform: rotate(180deg);
        }
    }

    .mobile-megamenu-panel {
        display: none;
        padding: 8px 0 12px;
    }

    .mobile-megamenu-item.open .mobile-megamenu-panel {
        display: block;
    }

    .mobile-megamenu-section {
        margin-bottom: 22px;

        h4 {
            font-family: 'Unna', serif;
            font-size: 20px;
            font-weight: 500;
            color: #333;
            margin: 0 0 12px 0;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.12);
        }
    }

    .mobile-megamenu-items {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 12px;
    }

    .mobile-proj-item a {
        display: flex;
        flex-direction: column;
        text-decoration: none;
    }

    .mobile-proj-title {
        font-family: 'Elms Sans', 'Plus Jakarta Sans', sans-serif;
        font-size: 15px;
        line-height: 20px;
        color: #333;
        transition: color 0.3s;
    }

    .mobile-proj-subtitle {
        font-family: 'Elms Sans', 'Plus Jakarta Sans', sans-serif;
        font-size: 13px;
        line-height: 18px;
        color: #858585;
    }

    .mobile-proj-item a:hover .mobile-proj-title {
        color: #E67817;
    }

    .mobile-view-all {
        font-family: 'Elms Sans', 'Plus Jakarta Sans', sans-serif;
        font-size: 14px;
        line-height: 18px;
        color: #E67817;
        text-decoration: none;

        &:hover {
            text-decoration: underline;
        }
    }

    .mobile-nav-actions {
        display: none;
    }

    .nav-drawer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 5px;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
        flex-shrink: 0;

        span {
            font-size: 22px;
            font-weight: 500;
            color: #333;
            margin: 0;
        }
    }

    .mobile-enquire-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: 'Elms Sans', 'Plus Jakarta Sans', sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 19px;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: #333;
        text-decoration: none;
        transition: color 0.3s;

        img, .icon {
            width: 16px;
            height: 16px;
            object-fit: contain;
            filter: brightness(0);
        }

        &:hover {
            color: #E67817;
        }
    }

    .close-nav {
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
        line-height: 1;
        color: #333;
    }

    .nav-search-box {
        margin-bottom: 15px;

        input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
    }

    /* MEGAMENU & SEARCH OVERLAY */
    .megamenu-overlay,
    .search-overlay {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: auto;
        max-height: calc(100vh - var(--header-height) - 10px);
        background: var(--header-surface-bg);
        z-index: 1;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        overflow: hidden;
        transform: translateY(-100%);
        transform-origin: top center;
        transition:
            transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.35s ease,
            visibility 0.45s ease;

        &.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
            overflow-y: auto;
        }
    }

    .megamenu-container,
    .search-container {
        max-width: 1440px;
        margin: 0 auto;
        padding: 39px 46px;
        box-sizing: border-box;

        @media (max-width: 1023px) {
            padding: 28px 20px;
        }
    }

    .megamenu-header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 28px;
    }

    .megamenu-header-title {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 9px;
    }

    .megamenu-title {
        font-family: 'Unna', serif;
        font-weight: 400;
        font-size: 25px;
        color: #FFFFFF;
    }

    .megamenu-subtitle {
        font-family: 'Elms Sans', 'Plus Jakarta Sans', sans-serif;
        font-weight: 500;
        font-size: 14px;
        color: #aaa;
    }

    .megamenu-close {
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 29.37px;
        height: 29.37px;
        border: 1px solid #EDEDED;
        border-radius: 40px;
        background: transparent;
        cursor: pointer;
        transition: border-color 0.3s;

        &:hover {
            border-color: #E67817;
        }
    }

    .megamenu-close-icon {
        position: relative;
        width: 12px;
        height: 12px;
        display: flex;
        align-items: center;
        justify-content: center;

        &::before,
        &::after {
            content: '';
            position: absolute;
            width: 14px;
            height: 1.5px;
            background-color: #ffffff;
        }

        &::before {
            transform: rotate(45deg);
        }

        &::after {
            transform: rotate(-45deg);
        }
    }

    .megamenu-divider {
        width: 100%;
        opacity: 0.4;
        border-bottom: 1px solid rgba(255, 255, 255, 0.49);
        margin-bottom: 20px;
    }

    .megamenu-overlay {
        min-height: 300px;

        > .megamenu-container {
            padding-bottom: 0;
        }
    }

    /* Match header .container width (logo → search) */
    .megamenu-body {
        max-width: 1084px;
        margin: 0 auto;
        padding: 0 20px 60px;
        width: 100%;
        box-sizing: border-box;

        @media (min-width: 1024px) {
            padding: 0 46px 60px;
        }
    }

    .megamenu-simple-list {
        display: flex;
        flex-direction: column;
        width: 100%;
        border-top: none;
    }

    .megamenu-simple-link {
        display: block;
        width: 100%;
        padding: 1.1rem 0;
        border-top: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.35);
        color: #fff;
        text-decoration: none;
        font-family: 'Unna', serif;
        font-size: 1.35rem;
        font-weight: 400;
        line-height: 1.3;
        transition: color 0.25s ease;
    }

    .megamenu-simple-link:hover {
        color: #E67817;
    }

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

    .megamenu-col {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .megamenu-col-title {
        font-family: 'Unna', serif;
        font-style: normal;
        font-weight: 500;
        font-size: 22px;
        line-height: 26px;
        color: #FFFFFF;
        margin: 0 0 15px 0;
    }

    .megamenu-col-divider {
        width: 100%;
        opacity: 0.4;
        border-bottom: 1px solid rgba(255, 255, 255, 0.49);
        margin-bottom: 25px;
    }

    .megamenu-col-items {
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-bottom: 18px;
    }

    .megamenu-proj-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;

        a {
            text-decoration: none;
            display: flex;
            flex-direction: column;
        }
    }

    .megamenu-proj-title {
        font-family: 'Elms Sans', 'Plus Jakarta Sans', sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 21px;
        color: #FFFFFF;
        transition: color 0.3s;

        &:hover {
            color: #E67817;
        }
    }

    .megamenu-proj-subtitle {
        font-family: 'Elms Sans', 'Plus Jakarta Sans', sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 18px;
        color: #858585;
    }

    .view-all-link {
        font-family: 'Elms Sans', 'Plus Jakarta Sans', sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 21px;
        color: #FFFFFF;
        text-decoration: none;
        transition: color 0.3s;
        margin-top: 10px;

        &:hover {
            color: #E67817;
        }
    }

    /* Search Overlay */
    .search-header {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 32px;

        @media (max-width: 1023px) {
            margin-bottom: 24px;
        }
    }

    .search-content {
        max-width: 720px;
        width: 100%;
        margin-inline: auto;
    }

    .search-form {
        display: flex;
        align-items: center;
        gap: 16px;
        width: 100%;
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.45);
        margin-bottom: 48px;

        @media (max-width: 1023px) {
            margin-bottom: 36px;
        }

        input {
            flex: 1;
            width: 100%;
            min-width: 0;
            background: transparent;
            border: none;
            padding: 0;
            color: #FFFFFF;
            font-family: 'Elms Sans', 'Plus Jakarta Sans', sans-serif;
            font-style: normal;
            font-weight: 400;
            font-size: 18px;
            line-height: 24px;
            outline: none;
            -webkit-appearance: none;
            appearance: none;

            @media (min-width: 1024px) {
                font-size: 22px;
                line-height: 28px;
            }

            &::placeholder {
                color: rgba(255, 255, 255, 0.55);
            }

            &::-webkit-search-decoration,
            &::-webkit-search-cancel-button,
            &::-webkit-search-results-button,
            &::-webkit-search-results-decoration {
                -webkit-appearance: none;
                appearance: none;
                display: none;
            }
        }
    }

    .search-submit-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        flex-shrink: 0;

        img {
            width: 22px;
            height: 22px;
            object-fit: contain;
        }
    }

    .search-quick-links-label {
        font-family: 'Elms Sans', 'Plus Jakarta Sans', sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 18px;
        color: rgba(255, 255, 255, 0.55);
        margin: 0 0 18px 0;
    }

    .search-quick-links-list {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px 32px;

        @media (max-width: 1023px) {
            gap: 12px 20px;
        }

        a {
            font-family: 'Elms Sans', 'Plus Jakarta Sans', sans-serif;
            font-style: normal;
            font-weight: 400;
            font-size: 15px;
            line-height: 20px;
            color: #FFFFFF;
            text-decoration: none;
            transition: color 0.3s;

            &:hover {
                color: #E67817;
            }
        }
    }

    .search-overlay .search-results {
        margin-top: 8px;
        max-height: 320px;
        overflow-y: auto;
        width: 100%;
        background: transparent;
    }

    .search-overlay .search-results-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .search-overlay .search-result-link {
        display: block;
        font-family: 'Elms Sans', 'Plus Jakarta Sans', sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 21px;
        color: #FFFFFF;
        text-decoration: none;
        transition: color 0.3s;

        &:hover {
            color: #E67817;
        }
    }

    .search-overlay .search-overlay-status {
        padding: 10px 0;
        color: rgba(255, 255, 255, 0.55);
        font-family: 'Elms Sans', 'Plus Jakarta Sans', sans-serif;
        font-size: 14px;
        line-height: 18px;
        background: transparent;
        border-radius: 0;
        text-align: left;
    }
}

/* ---- Footer + enquire modal ---- */
/* Footer, enquire modal, WhatsApp */

footer {
    padding-block: 3rem 0.7rem;
    background: #ECECED;
    margin-top: 0;
}

footer .logo {
    display: block;
    margin-inline: auto;
    width: 144px;
}

footer .footer-colulmn {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

footer .siteinfo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

footer .socialmedia {
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
}

footer .socialmedia img {
    height: 24px;
    width: 24px;
    object-fit: contain;
    border-radius: 50%;
}

footer hr {
    margin-block: 1.5rem;
    border: 0;
    height: 1px;
    background: #c6c6c6;
}

footer .quicklinks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

footer .quicklinks a {
    color: #687272;
    font-size: 13px;
    font-family: var(--font-body);
    font-weight: 500;
    transition: all 0.3s;
}

footer .quicklinks a:hover {
    color: var(--prime);
    transform: translateX(4px);
    text-decoration: none;
}

footer .copyright {
    font-size: 13px;
    color: #687272;
    font-weight: 500;
}

@media (min-width: 992px) {
    footer .quicklinkswrapper {
        min-width: min(350px, 100%);
    }
}

@media (max-width: 992px) {
    footer .footer-colulmn {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    footer {
        padding-block: 1.5rem 0.7rem;
    }

    footer hr {
        margin-block: 0.7rem;
    }

    footer .footer-colulmn {
        flex-direction: column;
        gap: 15px;
    }

    footer .quicklinks {
        gap: 1rem;
    }

    footer .quicklinks a {
        font-size: 14px;
    }

    footer .copyright {
        font-size: 14px;
    }
}

/* WhatsApp */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 1000;
}

@media (max-width: 768px) {
    body:has(#whiteNav) .whatsapp-icon {
        bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    }
}

.whatsapp-icon a {
    width: 45px;
    height: 45px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon img {
    width: 28px;
    height: 28px;
}

/* Enquire modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 10050;
    padding: 16px;
}

.modal-content {
    background: white;
    padding: 24px 20px 18px;
    width: 100%;
    max-width: 440px;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.modal-content h2 {
    font-family: var(--font-display);
    color: var(--heading);
    font-size: 26px;
    margin: 0 36px 12px 0;
    line-height: 1.2;
}

.modal .close {
    position: absolute;
    right: 0;
    top: 0;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 0 12px 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #555;
    background: #f2f2f2;
    transition: background 0.2s ease, color 0.2s ease;
}

.modal .close:hover {
    background: #e6e6e6;
    color: #111;
}

.modal .close svg {
    display: block;
}

.modal input:not([type="submit"]),
.modal textarea {
    margin: 0;
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ddd;
    outline: none !important;
    background-color: #fff;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--heading);
}

.modal input::placeholder,
.modal textarea::placeholder {
    color: #8a8a8a;
}

.modal textarea {
    height: 78px;
    resize: vertical;
}

.modal input[type="submit"] {
    width: 100%;
    border: 0;
    background: var(--prime);
    color: #fff;
    padding: 13px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16rem;
    cursor: pointer;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.modal input[type="submit"]:hover {
    opacity: 0.9;
}

.enquire-form {
    display: grid;
    gap: 6px;
}

.enquire-field {
    text-align: left;
}

.enquire-field__error {
    display: none;
    margin: 4px 2px 0;
    color: #b42318;
    font-size: 12px;
    line-height: 1.3;
}

.enquire-field.has-error .enquire-field__error:not(:empty) {
    display: block;
}

.enquire-field.has-error input,
.enquire-field.has-error textarea {
    border-color: #f0a8a0;
    background: #fff8f7;
}

.enquire-form__banner {
    color: #b42318;
    margin-top: 8px;
    font-size: 13px;
}
