/* =========================================================
   MAU FEEDS - COMMON WEBSITE CSS
   Bootstrap is used as the base framework.
   This file contains only the common/custom design system.
   ========================================================= */


/* =========================================================
   1. DESIGN TOKENS
   ========================================================= */

:root {
    /* ---------- Brand Colors ---------- */
    --mau-green: #00552f;
    --mau-green-dark: #003f24;
    --mau-green-light: #0b6840;
    --mau-gold: #d6a21b;
    --mau-gold-light: #e8bf45;
    /* ---------- Neutral Colors ---------- */
    --mau-white: #ffffff;
    --mau-black: #111111;
    --mau-text: #252525;
    --mau-text-light: #666666;
    --mau-bg: #ffffff;
    --mau-bg-light: #f8f7f2;
    --mau-bg-cream: #fbf8ee;
    --mau-border: #e4e4df;
    --mau-border-light: #eeeeea;
    /* ---------- Typography ---------- */
    /*--font-body: Arial, Helvetica, sans-serif;
    --font-heading: Georgia, "Times New Roman", serif;
    */

    /*--font-body: "Inter", sans-serif;
    --font-heading: "Lora", serif;
    */
    /* --font-body: "DM Sans", sans-serif;
    --font-heading: "Cormorant Garamond", serif;*/

    --font-body: "Inter", sans-serif;
    --font-heading: "Sora", sans-serif;


    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.375rem;
    --fs-xl: 1.75rem;
    --fs-2xl: 2.25rem;
    --fs-3xl: 3rem;
    /* ---------- Common Dimensions ---------- */
    --header-top-height: 30px;
    --header-main-height: 100px;
    --section-padding-y: 70px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.25s ease;
}


/* =========================================================
   2. GLOBAL
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--mau-text);
    background-color: var(--mau-bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

    a:hover {
        color: inherit;
    }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}


/* =========================================================
   3. TYPOGRAPHY - COMMON
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--mau-green);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-top: 0;
}

.text-brand {
    color: var(--mau-green) !important;
}

.text-gold {
    color: var(--mau-gold) !important;
}


/* =========================================================
   4. COMMON SECTION
   ========================================================= */

.mau-section {
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
}

.mau-section-light {
    background-color: var(--mau-bg-light);
}

.mau-section-cream {
    background-color: var(--mau-bg-cream);
}

.mau-section-green {
    background-color: var(--mau-green);
    color: var(--mau-white);
}


/* =========================================================
   5. COMMON SECTION HEADER
   ========================================================= */

.mau-section-header {
    margin-bottom: 40px;
}

    .mau-section-header.center {
        text-align: center;
    }

.mau-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--mau-gold);
    font-size: var(--fs-sm);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

    .mau-eyebrow::after {
        content: "";
        width: 28px;
        height: 2px;
        background-color: var(--mau-gold);
    }

.mau-section-title {
    margin-bottom: 12px;
    color: var(--mau-green);
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 700;
    line-height: 1.2;
}

.mau-section-description {
    max-width: 700px;
    margin-bottom: 0;
    color: var(--mau-text-light);
}


/* =========================================================
   6. TOP BAR
   ========================================================= */

.mau-topbar {
    min-height: var(--header-top-height);
    padding: 5px 0;
    background-color: var(--mau-green-dark);
    color: var(--mau-white);
    font-size: var(--fs-xs);
}

.mau-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 20px;
}

.mau-topbar-left {
    white-space: nowrap;
}

.mau-topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mau-topbar-contact {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

    .mau-topbar-contact i {
        color: var(--mau-gold);
    }


/* =========================================================
   7. MAIN HEADER / NAVBAR
========================================================= */

.mau-header {
    position: relative;
    z-index: 1000;
    background-color: var(--mau-white);
}

.mau-main-nav {
    min-height: var(--header-main-height);
    background-color: var(--mau-white);
    border-bottom: 1px solid var(--mau-border-light);
}

.mau-header-inner {
    min-height: var(--header-main-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.mau-logo {
    flex: 0 0 auto;
    width: 125px;
}

    .mau-logo img {
        width: 100%;
        height: auto;
    }


/* ---------- Desktop Navigation ---------- */

.mau-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-left: auto;
}

.mau-nav-link {
    position: relative;
    padding: 10px 0 !important;
    color: var(--mau-black) !important;
    font-size: var(--fs-sm);
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
}

    .mau-nav-link:hover {
        color: var(--mau-green) !important;
    }

    .mau-nav-link.active {
        color: var(--mau-green) !important;
    }

        .mau-nav-link.active::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 1px;
            width: 28px;
            height: 2px;
            margin: auto;
            background-color: var(--mau-gold);
        }


/* =========================================================
   8. NAVBAR ENQUIRY BUTTON
========================================================= */

.mau-nav-cta {
    flex: 0 0 auto;
    margin-left: 10px;
    white-space: nowrap;
}


/* =========================================================
   8A. MOBILE NAVIGATION TOGGLE
========================================================= */

.mau-mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--mau-border);
    border-radius: var(--radius-sm);
    background-color: var(--mau-white);
    color: var(--mau-green);
    font-size: 1.5rem;
    line-height: 1;
}

    .mau-mobile-toggle:hover {
        border-color: var(--mau-green);
        background-color: var(--mau-green);
        color: var(--mau-white);
    }


/* =========================================================
   8B. MOBILE OFFCANVAS
========================================================= */

.mau-mobile-offcanvas {
    width: 320px;
}

    .mau-mobile-offcanvas .offcanvas-header {
        padding: 20px;
        border-bottom: 1px solid var(--mau-border);
    }

.mau-mobile-logo {
    width: 110px;
    height: auto;
}

.mau-mobile-offcanvas .offcanvas-body {
    padding: 25px 20px;
}

.mau-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

    .mau-mobile-nav > a:not(.mau-btn) {
        display: block;
        padding: 13px 0;
        border-bottom: 1px solid var(--mau-border-light);
        color: var(--mau-text);
        font-size: var(--fs-base);
        font-weight: 600;
        transition: var(--transition);
    }

        .mau-mobile-nav > a:not(.mau-btn):hover {
            padding-left: 5px;
            color: var(--mau-green);
        }

    .mau-mobile-nav > a.mau-btn {
        margin-top: 25px;
        width: 100%;
    }

/* =========================================================
   9. COMMON BUTTONS
   ========================================================= */

.mau-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: var(--fs-sm);
    font-weight: 600;
    line-height: 1.2;
    transition: var(--transition);
}

    .mau-btn i {
        font-size: 0.9em;
        transition: transform 0.25s ease;
    }

    .mau-btn:hover i {
        transform: translateX(3px);
    }

.mau-btn-primary {
    background-color: var(--mau-green);
    border-color: var(--mau-green);
    color: var(--mau-white);
}

    .mau-btn-primary:hover {
        background-color: var(--mau-green-dark);
        border-color: var(--mau-green-dark);
        color: var(--mau-white);
    }

.mau-btn-outline {
    background-color: transparent;
    border-color: var(--mau-green);
    color: var(--mau-green);
}

    .mau-btn-outline:hover {
        background-color: var(--mau-green);
        color: var(--mau-white);
    }

.mau-btn-gold {
    background-color: var(--mau-gold);
    border-color: var(--mau-gold);
    color: var(--mau-white);
}

    .mau-btn-gold:hover {
        background-color: var(--mau-gold-light);
        border-color: var(--mau-gold-light);
        color: var(--mau-white);
    }

/* =========================================================
   10. COMMON PAGE HERO
   ========================================================= */

.mau-page-hero {
    /*position: relative;
    overflow: hidden;
    min-height: 310px;
    background-color: var(--mau-bg-cream);*/
    position: relative;
    overflow: hidden;
    min-height: 310px;
    background-color: var(--mau-bg-cream);
    background-image: var(--mau-page-hero-image);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}

/* ---------- Hero Content ---------- */

.mau-page-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 310px;
}

.mau-page-hero-text {
    position: relative;
    z-index: 2;
    width: 55%;
    padding: 40px 0;
}

/* ---------- Hero Eyebrow ---------- */

.mau-page-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--mau-text);
    font-size: var(--fs-xs);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

    .mau-page-hero-eyebrow::after {
        content: "";
        display: inline-block;
        width: 28px;
        height: 2px;
        background-color: var(--mau-gold);
    }

/* ---------- Hero Title ---------- */

.mau-page-hero-title {
    max-width: 650px;
    margin-bottom: 15px;
    color: var(--mau-green);
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: 700;
    line-height: 1.12;
}

/* ---------- Hero Description ---------- */

.mau-page-hero-description {
    max-width: 560px;
    margin-bottom: 0;
    color: var(--mau-text);
}

/* ---------- Hero Image ---------- */

.mau-page-hero-image {
    position: absolute;
    z-index: 0;
    top: 0;
    left: calc((100% - 100vw) / 2);
    width: 100vw;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* =========================================================
   11. BREADCRUMB
   ========================================================= */

.mau-breadcrumb {
    margin-top: 18px;
}

    .mau-breadcrumb .breadcrumb {
        margin-bottom: 0;
        font-size: var(--fs-sm);
    }

    .mau-breadcrumb .breadcrumb-item {
        color: var(--mau-text-light);
    }

        .mau-breadcrumb .breadcrumb-item.active {
            color: var(--mau-text);
        }

        .mau-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
            color: var(--mau-green);
        }

/* =========================================================
   12. COMMON ICON
   ========================================================= */

.mau-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--mau-green);
}

.mau-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background-color: var(--mau-green);
    color: var(--mau-white);
    font-size: 1.4rem;
}

.mau-icon-circle-light {
    background-color: #edf3e9;
    color: var(--mau-green);
}

.mau-icon-circle-gold {
    background-color: var(--mau-gold);
    color: var(--mau-white);
}


/* =========================================================
   13. COMMON FEATURE ITEM
   ========================================================= */

.mau-feature-item {
    text-align: center;
    padding: 10px 20px;
}

.mau-feature-icon {
    margin-bottom: 12px;
    color: var(--mau-green);
    font-size: 2rem;
}

.mau-feature-title {
    margin-bottom: 5px;
    color: var(--mau-text);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 700;
    line-height: 1.3;
}

.mau-feature-text {
    margin-bottom: 0;
    color: var(--mau-text-light);
    font-size: var(--fs-xs);
    line-height: 1.5;
}


/* =========================================================
   14. FEATURE STRIP
   ========================================================= */

.mau-feature-strip {
    position: relative;
    z-index: 5;
    background-color: var(--mau-white);
    box-shadow: var(--shadow-sm);
}

    .mau-feature-strip .mau-feature-item {
        min-height: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .mau-feature-strip .row > div:not(:last-child) {
        border-right: 1px solid var(--mau-border);
    }


/* =========================================================
   15. FEATURE CARDS
   ========================================================= */

.mau-feature-card {
    height: 100%;
    padding: 28px 20px;
    border: 1px solid var(--mau-border);
    border-radius: var(--radius-md);
    background-color: var(--mau-white);
    text-align: center;
    transition: var(--transition);
}

    .mau-feature-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .mau-feature-card .mau-icon-circle {
        margin-bottom: 18px;
    }

.mau-feature-card-title {
    margin-bottom: 8px;
    color: var(--mau-text);
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: 700;
}

.mau-feature-card-text {
    margin-bottom: 0;
    color: var(--mau-text-light);
    font-size: var(--fs-sm);
}


/* =========================================================
   16. COMMON CONTENT CARD
   ========================================================= */

.mau-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--mau-border-light);
    border-radius: var(--radius-md);
    background-color: var(--mau-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

    .mau-card:hover {
        box-shadow: var(--shadow-md);
    }

.mau-card-body {
    padding: 25px;
}


/* =========================================================
   17. IMAGE CARD
   ========================================================= */

.mau-image-card {
    overflow: hidden;
    border-radius: var(--radius-md);
}

    .mau-image-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .mau-image-card:hover img {
        transform: scale(1.03);
    }


/* =========================================================
   18. PRODUCT CARD
   ========================================================= */

.mau-product-card {
    height: 100%;
    padding: 20px;
    border: 1px solid var(--mau-border-light);
    border-radius: var(--radius-md);
    background-color: var(--mau-white);
    text-align: center;
    transition: var(--transition);
}

    .mau-product-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

.mau-product-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

    .mau-product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.mau-product-title {
    margin-bottom: 7px;
    color: var(--mau-text);
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: 700;
}

.mau-product-description {
    margin-bottom: 15px;
    color: var(--mau-text-light);
    font-size: var(--fs-sm);
}


/* =========================================================
   19. PRODUCT DETAIL CARD
   ========================================================= */

.mau-product-detail-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border: 1px solid var(--mau-border);
    border-radius: var(--radius-md);
    background-color: var(--mau-white);
    transition: var(--transition);
}

    .mau-product-detail-card:hover {
        box-shadow: var(--shadow-md);
    }

.mau-product-detail-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .mau-product-detail-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.mau-product-detail-content {
    flex: 1;
}

.mau-product-detail-title {
    margin-bottom: 10px;
    color: var(--mau-green);
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
}

.mau-product-detail-description {
    margin-bottom: 15px;
    color: var(--mau-text-light);
    font-size: var(--fs-sm);
}

.mau-product-points {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

    .mau-product-points li {
        position: relative;
        margin-bottom: 7px;
        padding-left: 24px;
        color: var(--mau-text);
        font-size: var(--fs-sm);
    }

        .mau-product-points li::before {
            content: "\f26a";
            position: absolute;
            left: 0;
            top: 1px;
            color: var(--mau-green);
            font-family: bootstrap-icons;
            font-size: 0.9rem;
        }


/* =========================================================
   20. COMMON INFO ITEM
   ========================================================= */

.mau-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}

.mau-info-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #edf3e9;
    color: var(--mau-green);
    font-size: 1rem;
}

.mau-info-content {
    flex: 1;
}

.mau-info-title {
    margin-bottom: 2px;
    color: var(--mau-text);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 700;
}

.mau-info-text {
    margin-bottom: 0;
    color: var(--mau-text-light);
    font-size: var(--fs-sm);
}


/* =========================================================
   21. COMMON CTA BANNER
   ========================================================= */

.mau-cta {
    padding: 30px 35px;
    border-radius: var(--radius-lg);
    background-color: var(--mau-green);
    color: var(--mau-white);
}

.mau-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.mau-cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mau-cta-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--mau-gold);
    border-radius: 50%;
    color: var(--mau-gold);
    font-size: 1.5rem;
}

.mau-cta-title {
    margin-bottom: 5px;
    color: var(--mau-white);
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
}

.mau-cta-text {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--fs-sm);
}


/* =========================================================
   22. COMMON FORM
   ========================================================= */

.mau-form-label {
    margin-bottom: 6px;
    color: var(--mau-text);
    font-size: var(--fs-sm);
    font-weight: 600;
}

.mau-form .form-control,
.mau-form .form-select {
    min-height: 44px;
    border-color: var(--mau-border);
    border-radius: var(--radius-sm);
    color: var(--mau-text);
    font-size: var(--fs-sm);
    box-shadow: none;
}

.mau-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.mau-form .form-control:focus,
.mau-form .form-select:focus {
    border-color: var(--mau-green);
    box-shadow: 0 0 0 0.15rem rgba(0, 85, 47, 0.10);
}

.mau-form .form-control::placeholder {
    color: #999999;
}


/* =========================================================
   23. PRIVACY / SMALL NOTE
   ========================================================= */

.mau-form-note {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    color: var(--mau-text-light);
    font-size: var(--fs-xs);
}

    .mau-form-note i {
        color: var(--mau-green);
    }


/* =========================================================
   24. COMMON LIST
   ========================================================= */

.mau-check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .mau-check-list li {
        position: relative;
        margin-bottom: 10px;
        padding-left: 27px;
        color: var(--mau-text);
        font-size: var(--fs-sm);
    }

        .mau-check-list li::before {
            content: "\f26a";
            position: absolute;
            left: 0;
            top: 1px;
            color: var(--mau-green);
            font-family: bootstrap-icons;
        }


/* =========================================================
   25. COMMON STATISTICS
   ========================================================= */

.mau-stats {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
    background-color: var(--mau-green);
    color: var(--mau-white);
}

.mau-stat {
    text-align: center;
    padding: 10px 20px;
}

.mau-stat-icon {
    margin-bottom: 7px;
    color: var(--mau-gold);
    font-size: 1.8rem;
}

.mau-stat-number {
    margin-bottom: 2px;
    color: var(--mau-white);
    font-size: var(--fs-xl);
    font-weight: 700;
    line-height: 1.1;
}

.mau-stat-label {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--fs-sm);
}


/* =========================================================
   26. GALLERY IMAGE
   ========================================================= */

.mau-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

    .mau-gallery-item img {
        width: 100%;
        height: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .mau-gallery-item:hover img {
        transform: scale(1.04);
    }


/* =========================================================
   27. GALLERY FILTER
   ========================================================= */

.mau-gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

    .mau-gallery-filter button {
        min-height: 38px;
        padding: 7px 20px;
        border: 1px solid var(--mau-border);
        border-radius: 30px;
        background-color: var(--mau-white);
        color: var(--mau-text);
        font-size: var(--fs-sm);
        font-weight: 600;
        transition: var(--transition);
    }

        .mau-gallery-filter button:hover,
        .mau-gallery-filter button.active {
            border-color: var(--mau-green);
            background-color: var(--mau-green);
            color: var(--mau-white);
        }


/* =========================================================
   28. MISSION / VISION COMMON CARD
   ========================================================= */

.mau-content-card {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border: 1px solid var(--mau-border);
    border-radius: var(--radius-md);
    background-color: var(--mau-white);
}

.mau-content-card-icon {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--mau-green);
    color: var(--mau-white);
    font-size: 1.7rem;
}

.mau-content-card-title {
    margin-bottom: 7px;
    color: var(--mau-green);
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
}

.mau-content-card-text {
    margin-bottom: 0;
    color: var(--mau-text-light);
    font-size: var(--fs-sm);
}


/* =========================================================
   29. FOOTER
   ========================================================= */

.mau-footer {
    background-color: var(--mau-green-dark);
    color: var(--mau-white);
}

.mau-footer-main {
    padding: 55px 0 35px;
}

.mau-footer-logo {
    width: 125px;
    margin-bottom: 15px;
}

.mau-footer-description {
    max-width: 250px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--fs-sm);
}

.mau-footer-title {
    margin-bottom: 18px;
    color: var(--mau-gold);
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: 700;
}

.mau-footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .mau-footer-links li {
        margin-bottom: 8px;
    }

    .mau-footer-links a {
        color: rgba(255, 255, 255, 0.85);
        font-size: var(--fs-sm);
        transition: var(--transition);
    }

        .mau-footer-links a:hover {
            padding-left: 4px;
            color: var(--mau-gold);
        }

.mau-footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--fs-sm);
}

    .mau-footer-contact i {
        flex: 0 0 18px;
        color: var(--mau-gold);
    }

.mau-footer-social {
    display: flex;
    gap: 10px;
}

    .mau-footer-social a {
        width: 38px;
        height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 50%;
        color: var(--mau-white);
        transition: var(--transition);
    }

        .mau-footer-social a:hover {
            border-color: var(--mau-gold);
            background-color: var(--mau-gold);
            color: var(--mau-white);
        }


/* =========================================================
   30. FOOTER NEWSLETTER
   ========================================================= */

.mau-newsletter {
    display: flex;
}

    .mau-newsletter .form-control {
        min-height: 42px;
        border: 0;
        border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    }

    .mau-newsletter .btn {
        min-width: 48px;
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    }


/* =========================================================
   31. FOOTER BOTTOM
   ========================================================= */

.mau-footer-bottom {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.mau-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.mau-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--fs-xs);
}

.mau-footer-bottom .heart {
    color: #e63946;
}


/* =========================================================
   32. COMMON GOLD DIVIDER
   ========================================================= */

.mau-divider {
    width: 42px;
    height: 2px;
    margin: 10px auto 0;
    background-color: var(--mau-gold);
}

/* =========================================================
   33. RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    :root {
        --section-padding-y: 55px;
    }

    /* ---------- Top Bar ---------- */

    .mau-topbar-inner {
        min-height: 20px;
    }

    .mau-topbar-right {
        gap: 15px;
    }


    /* ---------- Header ---------- */

    .mau-main-nav {
        min-height: 85px;
    }

    .mau-header-inner {
        min-height: 85px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .mau-logo {
        width: 105px;
        flex-shrink: 0;
    }

    /* Desktop navigation hidden on tablet/mobile */

    .mau-nav-links,
    .mau-nav-cta {
        display: none;
    }

    /* Mobile menu button */

    .mau-mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        width: 42px;
        height: 42px;
        padding: 0;
        border: 1px solid var(--mau-border);
        border-radius: 6px;
        background-color: var(--mau-white);
        color: var(--mau-green-dark);
        font-size: 1.5rem;
        line-height: 1;
        cursor: pointer;
    }

        .mau-mobile-toggle:hover {
            background-color: var(--mau-green-light);
            border-color: var(--mau-green);
        }


    /* ---------- Mobile Offcanvas ---------- */

    .mau-mobile-offcanvas {
        width: min(320px, 85vw);
        background-color: var(--mau-white);
    }

        .mau-mobile-offcanvas .offcanvas-header {
            padding: 18px 20px;
            border-bottom: 1px solid var(--mau-border);
        }

    .mau-mobile-logo {
        width: 105px;
        height: auto;
    }

    .mau-mobile-offcanvas .offcanvas-body {
        padding: 20px;
    }

    .mau-mobile-nav {
        display: flex;
        flex-direction: column;
    }

        .mau-mobile-nav > a:not(.mau-btn) {
            display: block;
            padding: 13px 0;
            color: var(--mau-text-dark);
            font-size: var(--fs-sm);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px solid var(--mau-border);
        }

            .mau-mobile-nav > a:not(.mau-btn):hover {
                color: var(--mau-green);
            }

        .mau-mobile-nav > a.mau-btn {
            margin-top: 20px;
            width: 100%;
            justify-content: center;
        }


    /* ---------- Page Hero ---------- */

    .mau-page-hero {
        min-height: 280px;
    }

    .mau-page-hero-content {
        min-height: 280px;
    }

    .mau-page-hero-title {
        font-size: 2.4rem;
    }

    .mau-page-hero-text {
        width: 55%;
    }

    .mau-page-hero-image {
        width: 58%;
    }


    /* ---------- Feature Strip ---------- */

    .mau-feature-strip .row > div:nth-child(2) {
        border-right: 0;
    }


    /* ---------- CTA ---------- */

    .mau-cta {
        padding: 25px;
    }


    /* ---------- Footer ---------- */

    .mau-footer-main {
        padding-top: 45px;
    }
}


/* =========================================================
   34. RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    :root {
        --section-padding-y: 45px;
        --fs-xl: 1.5rem;
        --fs-2xl: 1.9rem;
    }


    /* ---------- Top Bar ---------- */

    .mau-topbar {
        padding: 7px 0;
    }

    .mau-topbar-inner {
        flex-direction: column;
        gap: 3px;
    }

    .mau-topbar-left {
        text-align: center;
    }

    .mau-topbar-right {
        justify-content: center;
        gap: 12px;
    }


    /* ---------- Header ---------- */

    .mau-main-nav {
        min-height: 75px;
    }

    .mau-header-inner {
        min-height: 75px;
    }

    .mau-logo {
        width: 95px;
    }

    .mau-mobile-toggle {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }


    /* ---------- Mobile Offcanvas ---------- */

    .mau-mobile-offcanvas {
        width: min(320px, 85vw);
    }

        .mau-mobile-offcanvas .offcanvas-header {
            padding: 18px 20px;
        }

    .mau-mobile-logo {
        width: 100px;
    }

    .mau-mobile-offcanvas .offcanvas-body {
        padding: 20px;
    }

    .mau-mobile-nav > a:not(.mau-btn) {
        padding: 12px 0;
    }

    .mau-mobile-nav > a.mau-btn {
        margin-top: 20px;
    }


    /* ---------- Page Hero ---------- */

    .mau-page-hero {
        min-height: auto;
    }

        .mau-page-hero::after {
            display: none;
        }

    .mau-page-hero-content {
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .mau-page-hero-text {
        width: 100%;
        padding: 40px 0 30px;
    }

    .mau-page-hero-title {
        font-size: 2rem;
    }

    .mau-page-hero-description {
        font-size: var(--fs-sm);
    }

    .mau-page-hero-image {
        position: relative;
        width: 100%;
        height: 260px;
        order: 2;
    }


    /* ---------- Section Header ---------- */

    .mau-section-header {
        margin-bottom: 30px;
    }

    .mau-section-title {
        font-size: var(--fs-2xl);
    }


    /* ---------- Feature Strip ---------- */

    .mau-feature-strip {
        box-shadow: none;
    }

        .mau-feature-strip .mau-feature-item {
            min-height: 90px;
        }

        .mau-feature-strip .row > div:not(:last-child) {
            border-right: 0;
            border-bottom: 1px solid var(--mau-border);
        }


    /* ---------- Feature Card ---------- */

    .mau-feature-card {
        padding: 25px 18px;
    }


    /* ---------- Product ---------- */

    .mau-product-image {
        height: 200px;
    }

    .mau-product-detail-image {
        height: 220px;
    }


    /* ---------- Content Card ---------- */

    .mau-content-card {
        align-items: flex-start;
        padding: 20px;
    }

    .mau-content-card-icon {
        flex-basis: 58px;
        width: 58px;
        height: 58px;
        font-size: 1.4rem;
    }


    /* ---------- CTA ---------- */

    .mau-cta {
        padding: 25px 20px;
    }

    .mau-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .mau-cta-content {
        align-items: flex-start;
    }

    .mau-cta-icon {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
    }


    /* ---------- Gallery ---------- */

    .mau-gallery-filter {
        gap: 8px;
    }

        .mau-gallery-filter button {
            padding: 6px 14px;
            font-size: var(--fs-xs);
        }


    /* ---------- Footer ---------- */

    .mau-footer-main {
        padding: 40px 0 25px;
    }

    .mau-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}


/* =========================================================
   35. RESPONSIVE - SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    /* ---------- Top Bar ---------- */

    .mau-topbar-left {
        font-size: 11px;
    }

    .mau-topbar-right {
        gap: 10px;
        font-size: 11px;
    }

    .mau-topbar-contact {
        gap: 4px;
    }


    /* ---------- Header ---------- */

    .mau-main-nav {
        min-height: 70px;
    }

    .mau-header-inner {
        min-height: 70px;
    }

    .mau-logo {
        width: 90px;
    }

    .mau-mobile-toggle {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }


    /* ---------- Mobile Offcanvas ---------- */

    .mau-mobile-offcanvas {
        width: 290px;
    }

    .mau-mobile-logo {
        width: 95px;
    }


    /* ---------- Page Hero ---------- */

    .mau-page-hero-title {
        font-size: 1.85rem;
    }

    .mau-page-hero-image {
        height: 220px;
    }


    /* ---------- Section Header ---------- */

    .mau-section-title {
        font-size: 1.8rem;
    }


    /* ---------- Feature ---------- */

    .mau-feature-item {
        padding: 10px;
    }


    /* ---------- Product ---------- */

    .mau-product-card {
        padding: 15px;
    }

    .mau-product-image {
        height: 190px;
    }

    .mau-product-detail-image {
        height: 200px;
    }


    /* ---------- CTA ---------- */

    .mau-cta-content {
        gap: 12px;
    }

    .mau-cta-title {
        font-size: 1.35rem;
    }


    /* ---------- Footer ---------- */

    .mau-footer-social {
        margin-bottom: 10px;
    }
}
