/* ============================================
   MASTER.CSS - Shared across all pages
   Includes: Header, Footer, Navigation, Base Layout
   ============================================ */

/* ========== BOOTSTRAP ICONS (All icons from original bundle) ========== */
@font-face {
    font-display: swap;
    font-family: bootstrap-icons;
    src: url("./fonts/bootstrap-icons-subset.woff2") format("woff2")
}

.bi::before, [class*=" bi-"]::before, [class^=bi-]::before {
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

/* Bootstrap Variables & Base */
:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-border-color: #dee2e6;
    --bs-border-radius: 0.375rem;
    --bs-border-radius-pill: 50rem;
    --bs-box-shadow-sm: 0 .125rem .25rem rgba(0,0,0,.075);
    --bs-box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    --bs-box-shadow-lg: 0 1rem 3rem rgba(0,0,0,.175);
    --gutter-x: 1.5rem;
    --gutter-y: 0
}

*, ::after, ::before {
    box-sizing: border-box
}

/* Container & Grid */
.container {
    width: 100%;
    padding-right: calc(var(--gutter-x) * .5);
    padding-left: calc(var(--gutter-x) * .5);
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1140px
    }
}

@media (min-width:1400px) {
    .container {
        max-width: 1320px
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--gutter-y));
    margin-right: calc(-.5 * var(--gutter-x));
    margin-left: calc(-.5 * var(--gutter-x))
}

    .row > * {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        padding-right: calc(var(--gutter-x) * .5);
        padding-left: calc(var(--gutter-x) * .5);
        margin-top: var(--gutter-y)
    }

.g-2 {
    --gutter-x: .5rem;
    --gutter-y: .5rem
}

.g-4 {
    --gutter-x: 1.5rem;
    --gutter-y: 1.5rem
}

.g-5 {
    --gutter-x: 3rem;
    --gutter-y: 3rem
}

.gy-4 {
    --gutter-y: 1.5rem
}

.gy-5 {
    --gutter-y: 3rem
}

.col-6 {
    flex: 0 0 auto;
    width: 50%
}

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

@media (min-width:768px) {
    .col-md {
        flex: 1 0 0%
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto
    }
}

@media (min-width:992px) {
    .col-lg-1, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-8, .col-lg-10 {
        flex: 0 0 auto
    }

    .col-lg-1 {
        width: 8.333333%
    }

    .col-lg-3 {
        width: 25%
    }

    .col-lg-4 {
        width: 33.333333%
    }

    .col-lg-5 {
        width: 41.666667%
    }

    .col-lg-6 {
        width: 50%
    }

    .col-lg-8 {
        width: 66.666667%
    }

    .col-lg-10 {
        width: 83.333333%
    }

    .order-lg-last {
        order: 9999
    }
}

@media (min-width:1200px) {
    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.666667%
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.333333%
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.333333%
    }
}

/* Display Utilities */
.d-none {
    display: none !important
}

.d-block {
    display: block !important
}

.d-flex {
    display: flex !important
}

.d-inline-block {
    display: inline-block !important
}

.d-inline-flex {
    display: inline-flex !important
}

@media (min-width:768px) {
    .d-md-flex {
        display: flex !important
    }

    .d-md-none {
        display: none !important
    }

    .d-md-block {
        display: block !important
    }
}

@media (min-width:992px) {
    .d-lg-block {
        display: block !important
    }

    .d-lg-none {
        display: none !important
    }

    .d-lg-flex {
        display: flex !important
    }
}

/* Flex Utilities */
.flex-column {
    flex-direction: column !important
}

.flex-fill {
    flex: 1 1 auto !important
}

.flex-wrap {
    flex-wrap: wrap !important
}

.align-items-center {
    align-items: center !important
}

.align-items-xl-center {
    align-items: center !important
}

.align-middle {
    vertical-align: middle !important
}

.justify-content-between {
    justify-content: space-between !important
}

.justify-content-center {
    justify-content: center !important
}

.justify-content-md-end {
    justify-content: flex-end !important
}

.ms-auto {
    margin-left: auto !important
}

.mt-auto {
    margin-top: auto !important
}

@media (min-width:768px) {
    .ms-md-auto {
        margin-left: auto !important
    }

    .justify-content-md-end {
        justify-content: flex-end !important
    }
}

/* Position Utilities */
.position-relative {
    position: relative !important
}

.position-absolute {
    position: absolute !important
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020
}

.top-0 {
    top: 0 !important
}

.end-0 {
    right: 0 !important
}

.me-n2 {
    margin-right: -.5rem !important
}

.mt-n2 {
    margin-top: -.5rem !important
}

.z-1 {
    z-index: 1 !important
}

/* Spacing Utilities */
.mt-2 {
    margin-top: .5rem !important
}

.mt-3 {
    margin-top: 1rem !important
}

.mt-4 {
    margin-top: 1.5rem !important
}

.mt-5 {
    margin-top: 3rem !important
}

@media (min-width:768px) {
    .mt-md-0 {
        margin-top: 0 !important
    }
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-1 {
    margin-bottom: .25rem !important
}

.mb-2 {
    margin-bottom: .5rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

@media (min-width:992px) {
    .mb-lg-0 {
        margin-bottom: 0 !important
    }
}

.me-2 {
    margin-right: .5rem !important
}

.me-4 {
    margin-right: 1.5rem !important
}

.mx-2 {
    margin-right: .5rem !important;
    margin-left: .5rem !important
}

.p-3 {
    padding: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.pb-4 {
    padding-bottom: 1.5rem !important
}

.pb-5 {
    padding-bottom: 3rem !important
}

.pt-3 {
    padding-top: 1rem !important
}

.pt-4 {
    padding-top: 1.5rem !important
}

.pt-5 {
    padding-top: 3rem !important
}

.px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important
}

.py-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
}

@media (min-width:992px) {
    .p-lg-5 {
        padding: 3rem !important
    }
}

/* Text Utilities */
.overflow-auto {
    overflow: auto !important
}

.w-100 {
    width: 100% !important
}

.h-100 {
    height: 100% !important
}

.text-center {
    text-align: center !important
}

.text-decoration-none {
    text-decoration: none !important
}

.text-white {
    color: #fff !important
}

.text-white-50 {
    color: rgb(255 255 255 / .5) !important
}

.text-warning {
    color: var(--bs-warning) !important
}

.text-secondary {
    color: var(--bs-secondary) !important
}

@media (min-width:768px) {
    .text-md-start {
        text-align: left !important
    }
}

.small, small {
    font-size: .875em
}

.lead {
    font-size: 1.25rem;
    font-weight: 300
}

.display-5 {
    font-size: calc(1.425rem + 2.1vw);
    font-weight: 300;
    line-height: 1.2
}

.lh-lg {
    line-height: 2 !important
}

.h5 {
    font-size: 1.25rem;
    font-weight: 500
}

.h6 {
    font-size: 1rem;
    font-weight: 500
}

.border-top {
    border-top: 1px solid var(--bs-border-color) !important
}

.border-secondary {
    border-color: var(--bs-secondary) !important
}



.shadow-sm {
    box-shadow: var(--bs-box-shadow-sm) !important
}

.shadow-lg {
    box-shadow: var(--bs-box-shadow-lg) !important
}

/* Navbar Styles */
.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: .5rem;
    padding-bottom: .5rem
}

    .navbar > .container {
        display: flex;
        flex-wrap: inherit;
        align-items: center;
        justify-content: space-between
    }

.navbar-brand {
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    text-decoration: none;
    white-space: nowrap
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

    .navbar-nav .nav-link {
        padding-right: 0;
        padding-left: 0
    }

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: #fff0;
    border: 1px solid #fff0;
    border-radius: .25rem;
    cursor: pointer
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%
}

@media (min-width:992px) {
    .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

        .navbar-expand-lg .navbar-nav {
            flex-direction: row
        }

            .navbar-expand-lg .navbar-nav .nav-link {
                padding-right: .5rem;
                padding-left: .5rem
            }

        .navbar-expand-lg .navbar-collapse {
            display: flex !important;
            flex-basis: auto
        }

        .navbar-expand-lg .navbar-toggler {
            display: none
        }

    .collapse:not(.show) {
        display: none
    }
}

/* Dropdown Styles */
.dropdown {
    position: relative
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid #fff0;
    border-bottom: 0;
    border-left: .3em solid #fff0
}

.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: .5rem 0;
    margin: 0;
    font-size: 1rem;
    color: var(--bs-body-color);
    background-color: #fff;
    border: 1px solid rgb(0 0 0 / .15);
    border-radius: .375rem;
    box-shadow: var(--bs-box-shadow);
    list-style: none
}

    .dropdown-menu.show {
        display: block
    }

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1rem;
    clear: both;
    font-weight: 400;
    color: var(--bs-body-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: #fff0;
    border: 0
}

    .dropdown-item:hover {
        color: #1e2125;
        background-color: #f8f9fa
    }

/* Button Styles */
.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: #fff0;
    border: 1px solid #fff0;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .375rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

    .btn:hover {
        color: var(--bs-body-color)
    }

.btn-primary {
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary)
}

    .btn-primary:hover {
        background-color: #0b5ed7;
        border-color: #0a58ca;
        color: #fff
    }

.btn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa;
    background-color: #fff0
}

    .btn-outline-light:hover {
        color: #000;
        background-color: #f8f9fa
    }

.btn-link {
    font-weight: 400;
    color: var(--bs-primary);
    text-decoration: underline;
    border: none;
    background: 0 0
}

.btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .25rem
}

.btn-lg {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    border-radius: .5rem
}

.btn-block {
    display: block;
    width: 100%
}

.rounded-pill {
    border-radius: var(--bs-border-radius-pill) !important
}

/* Card Styles */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgb(0 0 0 / .125);
    border-radius: .375rem
}

.card-body {
    flex: 1 1 auto;
    padding: 1rem
}

.card-title {
    margin-bottom: .5rem
}

.card-text:last-child {
    margin-bottom: 0
}

/* Form Styles */
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .375rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    appearance: none
}

    .form-control:focus {
        color: var(--bs-body-color);
        background-color: #fff;
        border-color: #86b7fe;
        outline: 0;
        box-shadow: 0 0 0 .25rem rgb(13 110 253 / .25)
    }

    .form-control:disabled {
        background-color: #e9ecef;
        opacity: 1
    }

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%
}

    .input-group > .form-control {
        position: relative;
        flex: 1 1 auto;
        width: 1%;
        min-width: 0
    }

    .input-group > .btn {
        border-radius: 0 .375rem .375rem 0
    }

    .input-group > .form-control {
        border-radius: .375rem 0 0 .375rem
    }

/* List & Offcanvas */
.list-unstyled {
    padding-left: 0;
    list-style: none
}

.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 1045;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    transition: transform .3s ease-in-out
}

.offcanvas-start {
    top: 0;
    left: 0;
    width: 400px;
    border-right: 1px solid rgb(0 0 0 / .2);
    transform: translateX(-100%)
}

.offcanvas.show {
    transform: none
}

.offcanvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000
}

    .offcanvas-backdrop.show {
        opacity: .5
    }

/* Nav & Pills */
.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
    color: var(--bs-primary);
    text-decoration: none;
    transition: color .15s ease-in-out
}

    .nav-link:hover {
        color: #0a58ca
    }

.nav-pills .nav-link {
    border-radius: .375rem
}

    .nav-pills .nav-link.active {
        color: #fff;
        background-color: var(--bs-primary)
    }

/* ========== MODERN HEADER STYLES ========== */
.modern-header {
    font-family: Inter, Poppins, sans-serif;
    box-shadow: 0 4px 20px -2px rgb(128 0 32 / .15);
    background: #fff
}

.top-bar {
    background: linear-gradient(135deg, #800020 0, #5c0018 50%, #800020 100%);
    color: #fff;
    font-size: .875rem
}

    .top-bar .contact-link {
        display: flex;
        align-items: center;
        color: rgb(255 255 255 / .9);
        text-decoration: none;
        transition: all .3s ease;
        font-weight: 500
    }

        .top-bar .contact-link:hover {
            color: #fff;
            transform: translateY(-1px)
        }

        .top-bar .contact-link i {
            margin-right: .5rem
        }

    .top-bar .action-link {
        display: flex;
        align-items: center;
        color: rgb(255 255 255 / .8);
        text-decoration: none;
        font-size: .875rem;
        font-weight: 500;
        transition: all .3s ease;
        padding: .375rem .75rem;
        border-radius: .375rem;
        border: 1px solid rgb(255 255 255 / .2)
    }

        .top-bar .action-link i {
            margin-right: .375rem
        }

        .top-bar .action-link:hover {
            color: #fff;
            background: rgb(255 255 255 / .1);
            border-color: rgb(255 255 255 / .3)
        }

    .top-bar .cta-button {
        background: linear-gradient(135deg, #fbbf24 0, #f59e0b 100%);
        color: #92400e;
        font-weight: 600;
        font-size: .75rem;
        padding: .5rem 1rem;
        border-radius: .375rem;
        text-decoration: none;
        transition: all .3s ease;
        box-shadow: 0 2px 4px rgb(251 191 36 / .3);
        text-transform: uppercase;
        letter-spacing: .025em;
        margin-left: 10px
    }

        .top-bar .cta-button:hover {
            background: linear-gradient(135deg, #f59e0b 0, #d97706 100%);
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgb(251 191 36 / .4)
        }

.main-header {
    background: #fff;
    border-bottom: 1px solid rgb(128 0 32 / .1)
}

.logo-link:hover {
    transform: scale(1.05);
    display: inline-block
}

.logo {
    height: 3rem;
    width: auto;
    object-fit: contain
}

.navbar-nav .nav-link {
    color: #374151;
    font-weight: 600;
    font-size: .875rem;
    padding-top: .75rem;
    padding-bottom: .75rem;
    transition: color .3s ease
}

    .navbar-nav .nav-link:focus, .navbar-nav .nav-link:hover {
        color: #800020
    }

    .navbar-nav .nav-link.featured {
        color: #800020
    }

.new-badge {
    background: linear-gradient(135deg, #fbbf24 0, #f59e0b 100%);
    color: #92400e;
    font-size: .625rem;
    font-weight: 700;
    padding: .125rem .375rem;
    border-radius: .25rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-left: .5rem;
    animation: pulse 2s infinite;
    vertical-align: middle
}

@keyframes pulse {
    0%, 100% {
        opacity: 1
    }

    50% {
        opacity: .8
    }
}

.navbar-nav .dropdown-menu {
    border-radius: .75rem;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 10px 10px -5px rgb(0 0 0 / .04);
    border: 1px solid rgb(128 0 32 / .1);
    padding: 1rem;
    margin-top: .25rem
}

.navbar-nav .dropdown-item {
    padding: .5rem .75rem;
    color: #374151;
    border-radius: .5rem;
    transition: all .3s ease;
    font-size: .875rem;
    margin-bottom: .25rem
}

    .navbar-nav .dropdown-item:focus, .navbar-nav .dropdown-item:hover {
        background: rgb(128 0 32 / .05);
        color: #800020;
        transform: translateX(4px)
    }

    .navbar-nav .dropdown-item.featured {
        background: rgb(251 191 36 / .1);
        border: 1px solid rgb(251 191 36 / .2)
    }

        .navbar-nav .dropdown-item.featured:focus, .navbar-nav .dropdown-item.featured:hover {
            background: rgb(251 191 36 / .15)
        }

.dropdown-title {
    font-weight: 600;
    font-size: .875rem;
    color: #800020;
    margin-bottom: .5rem;
    text-transform: uppercase;
    letter-spacing: .025em;
    padding: .5rem .75rem
}

.navbar-nav .dropdown-divider {
    border-top: 1px solid rgb(128 0 32 / .1);
    margin: .75rem 0
}

.offcanvas-header {
    border-bottom: 1px solid rgb(128 0 32 / .1);
    background: rgb(128 0 32 / .02)
}

.offcanvas-body .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid rgb(128 0 32 / .1);
    font-size: 1rem
}

.offcanvas-body .dropdown-menu {
    box-shadow: none;
    border: none;
    padding: .5rem 0 .5rem 1rem;
    background-color: rgb(128 0 32 / .02)
}

.offcanvas-body .dropdown-item {
    padding: .75rem 1rem;
    font-size: .875rem
}

.mobile-contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgb(128 0 32 / .1)
}

.mobile-contact-link {
    display: flex;
    align-items: center;
    padding: .75rem 0;
    color: #6b7280;
    text-decoration: none;
    font-size: .875rem;
    transition: color .3s ease
}

    .mobile-contact-link:hover {
        color: #800020
    }

    .mobile-contact-link i {
        margin-right: .5rem
    }

#mobileMenuOffcanvas {
    width: 280px
}

/* Dropdown Submenu Styles */
@media (min-width: 992px) {
    .dropdown-submenu {
        position: relative
    }

        .dropdown-submenu .dropdown-menu {
            top: 0;
            left: 100%;
            margin-left: 0.1rem;
            display: none
        }

        .dropdown-submenu:hover .dropdown-menu {
            display: block
        }
}

@media (max-width: 991px) {
    .dropdown-menu {
        display: none;
        position: static !important;
        float: none;
        width: 80%
    }

        .dropdown-menu.show {
            display: block
        }

    .dropdown-submenu .dropdown-menu {
        position: static !important;
        margin: 5px 0 5px 15px;
        border: none;
        box-shadow: none;
        width: 80%
    }

    .dropdown-item {
        padding: 10px 15px
    }
}

/* ========== FOOTER STYLES ========== */
footer.site-footer {
    font-family: Inter, Poppins, sans-serif;
    background: linear-gradient(135deg, #343a40 0, #800020 50%, #343a40 100%);
    color: #fff;
    position: relative;
    overflow: hidden
}

    footer.site-footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle at 15% 25%, rgb(255 255 255 / .05) 2px, transparent 0), radial-gradient(circle at 85% 75%, rgb(255 255 255 / .05) 2px, transparent 0);
        background-size: 50px 50px;
        opacity: .5;
        pointer-events: none
    }

    footer.site-footer h6 {
        font-family: Montserrat, sans-serif;
        text-transform: uppercase;
        letter-spacing: .05em;
        color: #f8f9fa;
        margin-bottom: 1rem
    }

    footer.site-footer a {
        transition: color .3s ease, transform .3s ease;
        color: #adb5bd;
        text-decoration: none
    }

        footer.site-footer a:hover {
            color: #fbbf24;
            transform: translateY(-1px)
        }

    footer.site-footer .bi {
        transition: transform .3s ease
    }

    footer.site-footer a:hover .bi {
        transform: scale(1.1)
    }

    footer.site-footer .social-icons a {
        width: 2.5rem;
        height: 2.5rem;
        background-color: rgb(255 255 255 / .05);
        border: 1px solid rgb(255 255 255 / .1);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center
    }

        footer.site-footer .social-icons a:hover {
            background-color: rgb(255 255 255 / .15);
            border-color: rgb(255 255 255 / .25);
            transform: translateY(-2px) scale(1.05)
        }

        footer.site-footer .social-icons a[href*="facebook.com"]:hover {
            background-color: #1877f2 !important;
            border-color: #1877f2 !important
        }

        footer.site-footer .social-icons a[href*="linkedin.com"]:hover {
            background-color: #0077b5 !important;
            border-color: #0077b5 !important
        }

    footer.site-footer .award-item {
        border: 1px solid rgb(255 255 255 / .1);
        background-color: rgb(255 255 255 / .03);
        border-radius: .5rem;
        padding: .75rem;
        text-align: center;
        transition: all .3s ease
    }

        footer.site-footer .award-item:hover {
            background-color: rgb(255 255 255 / .08);
            border-color: rgb(255 255 255 / .2);
            transform: translateY(-2px) scale(1.02)
        }

        footer.site-footer .award-item .bi {
            font-size: 1.5rem;
            color: #fbbf24;
            margin-bottom: .25rem;
            display: block
        }

        footer.site-footer .award-item span {
            font-size: .75rem;
            color: #adb5bd
        }

    footer.site-footer .case-study-info {
        background-color: rgb(255 255 255 / .03);
        border: 1px solid rgb(255 255 255 / .1);
        border-radius: .5rem;
        padding: 1rem
    }

        footer.site-footer .case-study-info .bi {
            color: #fbbf24;
            margin-right: .5rem
        }

        footer.site-footer .case-study-info .text-sm {
            font-size: .875rem
        }

        footer.site-footer .case-study-info .text-xs {
            font-size: .75rem;
            color: #adb5bd
        }

    footer.site-footer .scroll-to-top {
        width: 3rem;
        height: 3rem;
        background-color: rgb(255 255 255 / .1);
        border: 1px solid rgb(255 255 255 / .15);
        box-shadow: 0 2px 10px rgb(0 0 0 / .2);
        border-radius: 50%;
        transition: all .3s ease
    }

        footer.site-footer .scroll-to-top:hover {
            background-color: rgb(255 255 255 / .25);
            border-color: rgb(255 255 255 / .35);
            box-shadow: 0 4px 15px rgb(0 0 0 / .3);
            transform: scale(1.1) translateY(-2px)
        }

        footer.site-footer .scroll-to-top .bi {
            font-size: 1.25rem
        }

    footer.site-footer .copyright-bar {
        border-top: 1px solid rgb(255 255 255 / .15);
        padding-top: 2rem;
        margin-top: 3rem
    }

        footer.site-footer .copyright-bar .text-sm {
            color: #adb5bd
        }

        footer.site-footer .copyright-bar .text-xs {
            color: #6c757d
        }

    footer.site-footer .whitelake-logo {
        height: 1.5rem;
        margin-right: .75rem;
        filter: brightness(0) invert(1) opacity(.7)
    }

.bi-cart3::before {
    content: "\f244"
}

.bi-award-fill::before {
    content: "\f153"
}


.bi-arrow-up::before {
    content: "\f148"
}

.bi-google::before {
    content: "\f3f0"
}

.bi-microsoft::before {
    content: "\f65d"
}

.bi-amazon::before {
    content: "\f68d"
}

.bi-meta::before {
    content: "\f6a1"
}

.bi-whatsapp::before {
    content: "\f618"
}

.bi-telephone-fill::before {
    content: "\f5b4"
}

.bi-envelope-fill::before {
    content: "\f32c"
}


.bi-patch-check-fill::before {
    content: "\f4b5"
}

.bi-shield-lock-fill::before {
    content: "\f537"
}

.bi-lock-fill::before {
    content: "\f47a"
}

