/*====================================================
GOOGLE FONT
====================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*====================================================
RESET
====================================================*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8fafc;
    color: #2D313C;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}


/*====================================================
SHARED UTILITIES
   (used by listing.blade.php and details.blade.php)
====================================================*/

.section-space {
    padding: 60px 0;
}

.container {
    max-width: 1180px;
}


/*====================================================
HEADER
====================================================*/

.main-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.logo img {
    height: 61px;
}


/*====================================================
MENU
====================================================*/

.main-menu ul {
    display: flex;
    gap: 35px;
}

.main-menu ul li {
    position: relative;
}

.main-menu ul li > a {
    color: #2D313C;
    font-weight: 600;
    font-size: 15px;
    transition: .3s;
}

.main-menu ul li > a:hover {
    color: #2E7D32;
}


/*====================================================
MOBILE MENU ICON
====================================================*/

.mobile-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}


/*====================================================*
 * FOOTER
 *====================================================*/

.footer {
    background: #2D313C;
    color: #cbd5e1;
    padding: 45px 0 18px;
}

.footer h4,
.footer h5 {
    color: #fff;
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 600;
}

.footer p {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #94a3b8;
    font-size: 13px;
}

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

.footer ul li {
    margin-bottom: 7px;
}

.footer ul li a {
    color: #94a3b8;
    font-size: 13px;
    transition: .3s;
}

.footer ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #3A3F4B;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: .3s;
}

.social-icons a:hover {
    background: #2E7D32;
}

.footer hr {
    border-color: #454B59;
    margin: 25px 0 15px;
}

.copyright {
    text-align: center;
    color: #94a3b8;
    font-size: 12px;
}


/*=========================
MOBILE MENU
=========================*/

.mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: .35s;
    overflow-y: auto;
    box-shadow: 10px 0 40px rgba(0, 0, 0, .15);
}

.mobile-menu.active {
    left: 0;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    z-index: 9998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-header img {
    height: 42px;
}

.close-menu {
    border: 0;
    background: none;
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu ul {
    padding: 20px;
}

.mobile-menu ul li {
    margin-bottom: 8px;
}

.mobile-menu ul li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    color: #2D313C;
    border-radius: 10px;
    font-weight: 500;
}

.mobile-menu ul li > a:hover {
    background: #f5f7fb;
}


/*====================================================
RESPONSIVE
====================================================*/

@media (max-width: 991px) {

    .main-menu {
        display: none;
    }

    .mobile-toggle {
        display: block;
        color: #2D313C;
    }

    .header-inner {
        height: 75px;
    }

    .logo img {
        height: 42px;
    }

}

@media (max-width: 767px) {

    .footer {
        padding: 60px 0 20px;
    }

    .footer .col-lg-3 {
        margin-bottom: 35px;
    }

}
