/* Google Fonts loaded via <link> in HTML for non-blocking render */

/********** Template CSS **********/
:root {
    --primary: #B8956A;
    --secondary: #D4A574;
    --light: #F7F2E9;
    /* Warm Sand */
    --light-alt: #EFE7DC;
    /* Deeper Sand for section separation */
    --dark: #141312;
    /* Charcoal */
    --accent: #4B5B4A;
    /* Muted Forest */
    --muted: #7D746B;
    --border: rgba(20, 19, 18, 0.08);
    --shadow-soft: 0 20px 60px rgba(20, 19, 18, 0.08);
    --shadow-card: 0 12px 30px rgba(20, 19, 18, 0.08);

    --serif: 'Playfair Display', serif;
    --sans: 'Outfit', sans-serif;

    --section-py: 140px;
}

html {
    scroll-behavior: smooth;
}

/* Luxury Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border: 3px solid var(--light);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark);
}

body {
    font-family: var(--sans);
    color: var(--dark);
    line-height: 1.8;
    background-color: var(--light);
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

h1,
.display-1,
.display-2 {
    font-family: var(--serif);
    font-size: clamp(3.1rem, 7.5vw, 5.1rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 2.2rem;
}

h2,
.display-3,
.display-4 {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 4.2vw, 2.9rem);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 1.8rem;
}

h3,
.display-5 {
    font-family: var(--serif);
    font-size: clamp(1.45rem, 2.2vw, 1.9rem);
    font-weight: 500;
    margin-bottom: 1.25rem;
}

h4,
.display-6 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

h5,
h6 {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.02em;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

p,
.lead {
    color: var(--muted);
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 1.4rem;
}

.italic {
    font-style: italic;
    font-family: var(--serif);
}

.section-pad {
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
}

.section-pad-sm {
    padding-top: calc(var(--section-py) * 0.65);
    padding-bottom: calc(var(--section-py) * 0.65);
}

.section-slab {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-title {
    max-width: 720px;
}

.copy-max {
    max-width: 620px;
}

.hero-proof {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.hero-actions {
    margin-top: 0.5rem;
}

.eyebrow,
.text-uppercase.fw-bold {
    font-family: var(--sans);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary);
}


.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

a {
    transition: 0.4s ease-out;
    color: var(--primary);
}

/* Accessible body-text links: 4.5:1 contrast on white */
a:not(.btn):not(.nav-link):not(.navbar-brand):not(.dropdown-item):not(.btn-link):not(.animal-item):not(.whatsapp-float):not(.back-to-top) {
    color: #8D6D44;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

a:hover {
    color: var(--dark);
}

.py-5 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
}

.section-divider {
    border-top: 1px solid var(--border);
    width: 72px;
    margin: 3.5rem auto;
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 991.98px) {
    .parallax-bg {
        background-attachment: scroll;
        /* Mobile fallback */
    }
}

.reveal-mask {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-mask.visible {
    opacity: 1;
    transform: translateY(0);
}

.organic-divider {
    width: 100%;
    height: 60px;
    margin: -30px 0;
    position: relative;
    z-index: 5;
    fill: var(--light);
}

.organic-divider-alt {
    fill: var(--light-alt);
}

.bg-light-alt {
    background-color: var(--light-alt) !important;
}

@media (max-width: 991.98px) {
    .py-5 {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .section-pad {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .section-pad-sm {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

/*** Media Handling (Decoupling Images from Layout) ***/
.media-container {
    position: relative;
    overflow: hidden;
    background-color: rgba(20, 19, 18, 0.04);
    width: 100%;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.media-container:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
}

.media-container:hover .img-cover {
    transform: scale(1.05);
}

/* Atmospheric Overlay: Normalizes image quality and adds luxury feel */
.media-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(20, 19, 18, 0.08) 100%);
    pointer-events: none;
    z-index: 1;
}

picture {
    display: block;
}

picture>img {
    width: 100%;
    height: auto;
    display: block;
}

/* Common Aspect Ratios */
.ar-1-1 {
    aspect-ratio: 1 / 1;
}

.ar-4-5 {
    aspect-ratio: 4 / 5;
}

.ar-16-9 {
    aspect-ratio: 16 / 9;
}

.ar-3-2 {
    aspect-ratio: 3 / 2;
}

.ar-2-3 {
    aspect-ratio: 2 / 3;
}


.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 120px;
    right: 45px;
    background-color: var(--accent);
    /* Premium Muted Green */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: var(--dark);
    color: var(--primary);
    transform: scale(1.1);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(75, 91, 74, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(75, 91, 74, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(75, 91, 74, 0);
    }
}

.whatsapp-float {
    animation: pulse-whatsapp 2s infinite;
}

/* Accessibility: screen-reader-only text (Bootstrap 5 .visually-hidden fallback) */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: var(--sans);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.78rem;
    padding: 18px 40px;
    border-radius: 2px;
    transition: 0.4s ease-out;
}

.btn-primary {
    background-color: var(--dark) !important;
    border: none !important;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: var(--primary) !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(20, 19, 18, 0.12);
}

.btn-outline-primary {
    color: var(--dark);
    border: 1px solid var(--border);
    background: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--dark);
    color: #fff;
    border-color: var(--dark);
}

.btn-square {
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.btn-sm-square {
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.btn-lg-social {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: 0.4s ease-out;
}

.btn-lg-social:hover {
    transform: translateY(-5px);
}


.top-notice-banner {
    background-color: var(--dark);
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 2px solid var(--primary);
}

.status-badge {
    display: inline-block;
    padding: 2px 12px;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 0;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-right: 12px;
    vertical-align: middle;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
    box-shadow: var(--shadow-soft);
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .navbar-brand {
    display: flex !important;
    align-items: center !important;
    padding: 0;
}

.navbar .navbar-brand picture {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    background: transparent;
    border: none;
    box-shadow: none;
    box-sizing: border-box;
    flex: 0 0 auto;
}

.navbar .navbar-brand .navbar-logo {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 68px !important;
    height: 68px !important;
    padding: 8px !important;
    background: rgba(20, 19, 18, 0.04);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    box-sizing: border-box;
    flex: 0 0 auto;
}

.navbar .navbar-brand .navbar-logo>img,
.navbar .navbar-brand .navbar-logo img {
    height: auto !important;
    width: auto !important;
    max-height: 52px !important;
    max-width: 52px !important;
    object-fit: contain;
    transition: 0.4s ease;
}

.navbar .navbar-brand h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
    margin: 0 !important;
    line-height: 1 !important;
    letter-spacing: 0.05em !important;
    font-family: var(--serif) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
}

.navbar .navbar-nav .nav-link {
    font-family: var(--sans);
    margin-right: 35px;
    padding: 35px 0;
    color: var(--dark);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    outline: none;
    transition: 0.3s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
    font-size: 10px;
}

/*** Trust Strip ***/
.trust-strip {
    background-color: var(--light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 25px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.trust-item i {
    color: var(--primary);
    font-size: 1.1rem;
    opacity: 0.8;
}

.trust-item span {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--dark);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .trust-strip .row>div {
        margin-bottom: 15px;
    }

    .trust-strip .row>div:last-child {
        margin-bottom: 0;
    }
}

.header-bg {
    background: linear-gradient(120deg, rgba(18, 17, 16, 0.95) 0%, rgba(18, 17, 16, 0.6) 45%, rgba(18, 17, 16, 0.2) 100%), url(../img/mubuyu-hero-wildlife.jpg) center center no-repeat;
    background-size: cover;
    padding: 200px 0 160px 0;
}


.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

/*** Experience Timeline ***/
.experience-timeline {
    position: relative;
    padding: 60px 0;
}

.timeline-step {
    position: relative;
    padding-left: 60px;
    margin-bottom: 80px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 20px;
    bottom: -50px;
    width: 1px;
    background-color: var(--border);
}

.timeline-step:last-child::before {
    display: none;
}

.step-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 1;
    transition: transform 0.3s ease;
}

.timeline-step:hover .step-number {
    transform: scale(1.1);
    background-color: var(--dark);
}

.step-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.timeline-step h3 {
    margin-bottom: 12px;
}

.header-carousel .owl-carousel-item {
    position: relative;
}

.header-carousel .owl-carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(18, 18, 18, 0.5) 0%, transparent 40%),
        linear-gradient(to right, rgba(18, 18, 18, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.carousel-caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: auto;
    text-align: left;
    z-index: 10;
    padding: 0;
}

.carousel-caption .eyebrow {
    font-size: 0.7rem;
    border-left: 2px solid var(--primary);
    padding-left: 15px;
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 40px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 2.5rem;
    bottom: 2.5rem;
    border: 1px solid var(--primary);
    opacity: 0.6;
}

.img-border img {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    width: calc(100% - 2.5rem);
    height: calc(100% - 2.5rem);
    object-fit: cover;
    box-shadow: var(--shadow-card);
}


/*** Facts & Visiting Hours ***/
.facts {
    background: linear-gradient(rgba(18, 18, 18, 0.75), rgba(18, 18, 18, 0.75)), url(../img/mubuyu-lodge-twilight.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.visiting-hours {
    background: linear-gradient(rgba(18, 18, 18, 0.75), rgba(18, 18, 18, 0.75)), url(../img/mubuyu-deck-stringlights-2.jpg) center center no-repeat;
    background-size: cover;
}

.visiting-hours .list-group-item {
    display: flex;
    justify-content: space-between;
    color: var(--light);
    background: rgba(18, 18, 18, .2);
    border-color: rgba(184, 149, 106, .3);
}

.visiting-hours .table {
    color: var(--light);
    background: rgba(18, 18, 18, .2);
}

.visiting-hours .table td {
    padding: .5rem 1rem;
    border-color: rgba(184, 149, 106, .3);
}

.visiting-hours .table tr:last-child td {
    border: none;
}


/*** Animal ***/
.animal-item {
    position: relative;
    display: block;
    overflow: hidden;
}

.animal-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: 0.6s ease;
}

.animal-item .animal-text {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 60px 40px;
    background: linear-gradient(to top, rgba(18, 18, 18, 0.95), transparent);
    z-index: 1;
    transition: 0.5s;
}

.animal-item:hover img {
    transform: scale(1.05);
}

.animal-item .animal-text h5 {
    color: #fff !important;
    font-size: 1.5rem;
    margin: 0;
}



/*** Membership ***/
.membership-item {
    padding: 45px 30px;
    color: #FFFFFF;
    background: rgba(18, 18, 18, 0.85);
}

.membership-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.membership-item .display-1 {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, var(--light) 0%, rgba(242, 237, 228, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, var(--light) 0%, rgba(242, 237, 228, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light-alt);
    transform: scale(.9);
    transition: .5s;
    padding: 40px;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--accent);
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(18, 18, 18, 0.96), rgba(18, 18, 18, 0.96)), url(../img/mubuyu-deck-stringlights-2.jpg) center center no-repeat;
    background-size: cover;
    padding-top: 120px;
    padding-bottom: 60px;
    color: rgba(255, 255, 255, 0.7);
}

.footer h5 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 1.3rem;
    font-family: var(--serif);
}

.footer .btn.btn-social {
    margin-right: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.6);
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: #fff;
    padding-left: 8px;
}

.footer .copyright {
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}


/* Service Images */
.service-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 0;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.5s ease-out;
}

.service-img:hover {
    filter: grayscale(0%);
    opacity: 1;
}