@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat.ttf') format('truetype');
}

/* Default CSS */
:root {
    --primary-color: #272b3d; 
    --primary-color-low: rgba(39, 43, 61, 0.5);
    --primary-color-dark: #1a1e2a;
    --primary-color-rgb: 39, 43, 61;

    --secondary-color: #645443; 
    --secondary-color-low: rgba(100, 84, 67, 0.5);
    --secondary-color-dark: #3a3025;
    --secondary-color-light: #a37543;

    --tertiary-color: #b09a8b;
    --tertiary-color-low: rgba(176, 154, 139, 0.5);
    --tertiary-color-dark: #7a6b5f;
    --tertiary-color-light: #d6c1af;

    --bg-color: #e3e1d5;
    --bg-color-low: #d9d7cb;
    --bg-color-dark: #c4c2b6;

    --text-dark: #343a40;
    --text-dark-low: #495057b9;
    --text-dark-dark: #212529;

    --text-light: #f8f9fa;
    --text-light-low: rgba(248, 249, 250, 0.7);
    --text-light-dark: #e1e4e6;

    --button-color: #942727; 
    --button-color-low: rgba(148, 39, 39, 0.5);
    --button-color-dark: #6c1f1f;

    --card-bg: #fcfcfc;
    --card-bg-low: #f3f2f2;
    --smoothline-color: var(--bg-color);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
}

/* reset all the default styles */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background-color: var(--bg-color);
    color: var(--text-dark);
    scroll-behavior: smooth;
}

body.nav-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: var(--text-dark);
}

i {
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background-color: transparent;
}

button:focus {
    outline: none;
}

button:active {
    outline: none;
}

button:hover {
    outline: none;
}

ul,
li {
    list-style: none;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
}
h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}
h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}
h6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

::-webkit-scrollbar-track {
    background-color: var(--bg-color);
}



body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

section {
    display: flex;
    position: relative;
    height: 100vh;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    
}


header .navbar {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

header .navbar .nav-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 4rem;
    width: 14%;
}
header .navbar .nav-logo .logo {
    width: 100%;
}

header .navbar .nav-center .logo img {
    width: 100%;
}

header .navbar .nav-social {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 3rem;
    width: 14%;
}

header .navbar .nav-social .social-link {
    margin: 0 0.3rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    background-color: var(--secondary-color);
    border-radius: 5px;
    width: 40px;
    height: 40px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

header .navbar .nav-social .social-link i {
    font-size: 1.3rem;
    color: var(--text-light);
    transition: all 0.3s ease-in-out;
}

header .navbar .nav-social .social-link:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

header .navbar .nav-social .social-link:hover i {
    color: var(--text-light);
    transform: scale(1.1);
}

header .navbar .nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
}

header .navbar .nav-menu .nav-link {
    margin: 0 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* navbar responsive */

@media (max-width: 1400px) {
    header .navbar .nav-logo {
        width: 20%;
    }
    header .navbar .nav-social {
        width: 18%;
    }

    header .navbar .nav-menu {
        width: 60%;
    }

    header .navbar .nav-menu .nav-link {
        margin: 0 0.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 1200px) {
    header .navbar .nav-logo {
        width: 18%;
    }

    header .navbar .nav-logo .logo img {
        width: 120%;
        margin-left: -10%;
    }

    header .navbar .nav-social {
        width: 15%;
        display: none;
    }

    header .navbar .nav-menu {
        width: 50%;
        margin-right: 5%;
    }

    header .navbar .nav-menu .nav-link {
        margin: 0 0.8rem;
        font-size: 1.1rem;
    }
    
}

header .navbar .burger {
    display: none;
}

header .navbar .burger .line {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

header .navbar .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--bg-color);
    padding: 2rem;
    transition: all 0.4s ease;
    z-index: 1000;
}

@media (max-width: 991px) {

    header .navbar {
        background-color: var(--card-bg);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 1rem 0;
    }
    
    header .navbar .nav-logo {
        width: 30%;
    }

    header .navbar .nav-logo .logo img {
        width: 100%;
    }

    header .navbar .nav-menu {
        display: none;
    }

    header .navbar .burger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        margin-right: 4rem;
        cursor: pointer;
        position: relative;
    }

    header .navbar .burger .line {
        width: 100%;
        height: 3px;
        background-color: var(--text-dark);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    /* Mobile Menu Styles */
    header .navbar .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 30%;
        height: calc(100vh - 60px);
        background-color: var(--card-bg);
        padding: 2rem;
        transition: all 0.4s ease;
        z-index: 1000;
    }

    header .navbar .mobile-menu.active {
        right: 0;
    }

    header .navbar .mobile-menu .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
    }

    header .navbar .mobile-menu .mobile-menu-header .logo {
        width: 200px;
    }

    header .navbar .mobile-menu .mobile-menu-header .close {
        font-size: 3rem;
        cursor: pointer;
        color: var(--text-dark);
        position: relative;
        top: -10px;
    }

    header .navbar .mobile-menu .mobile-menu-links {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    header .navbar .mobile-menu .mobile-menu-link {
        font-size: 1.2rem;
        font-weight: 500;
        color: var(--text-dark);
        transition: all 0.3s ease;
    }

    header .navbar .mobile-menu .mobile-menu-link:hover {
        color: var(--secondary-color);
        padding-left: 10px;
    }

    header .navbar .mobile-menu .mobile-menu-social {
        position: absolute;
        bottom: 2rem;
        display: flex;
        gap: 1rem;
    }

    header .navbar .mobile-menu .mobile-menu-social .social-link {
        width: 40px;
        height: 40px;
        border-radius: 5px;
        background-color: var(--secondary-color);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
    }

    header .navbar .mobile-menu .mobile-menu-social .social-link i {
        font-size: 1.2rem;
        color: var(--text-light);
    }

    header .navbar .mobile-menu .mobile-menu-social .social-link:hover {
        background-color: var(--primary-color);
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    header .navbar .nav-logo {
        width: 40%;
    }

    header .navbar .burger {
        margin-right: 2rem;
        top: -2px;
    }

    header .navbar .mobile-menu {
        width: 40%;
    }
}

@media (max-width: 480px) {
    header .navbar .nav-logo {
        width: 50%;
    }

    header .navbar .burger {
        margin-right: 1rem;
        top: -5px;
        
    }

    header .navbar .mobile-menu {
        width: 60%;
    }
}






.landing-sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 90px 5% 0;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.landing-sec .left {
    width: 50%;
    padding-right: 2rem;
    z-index: 2;
    position: relative;
    top: -80px;
}

.landing-sec .left .title {
    font-size: 6rem;
    font-weight: 600;
    color: var(--primary-color);
    width: 100%;
    letter-spacing: -1px;

    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
}

.landing-sec .desc {
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--secondary-color);
    width: 70%;
    position: relative;
    left: 10px;
}

.landing-sec .right {
    width: 55%;
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
}

.landing-sec .right .image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing-sec .right .image.mobile {
    display: none;
}

.landing-sec .right .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1500px) {
    .landing-sec .left .title {
        font-size: 5rem;
    }

    .landing-sec .desc {
        font-size: 1.3rem;
    }

    .landing-sec .right {
        width: 70%;
    }
}

@media screen and (max-width: 1150px) {
    .landing-sec {
        height: auto;
    }

    .landing-sec .left .title {
        font-size: 4rem;
    }

    .landing-sec .desc {
        font-size: 1.2rem;
    }

    .landing-sec .left {
        position: absolute;
        width: 100%;
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
        top: 10%;
        left: 0;
    }

    .landing-sec .right {
        width: 100%;
        position: relative;
        margin-top: 20%;
    }

    .landing-sec .right .image {
        display: none;
    }

    .landing-sec .right .image.mobile {
        display: flex;
    }
}

@media screen and (max-width: 991px) {
    .landing-sec .left {
        top: 13%;
    }

    .landing-sec .left .title {
        font-size: 3.5rem;
    }

    .landing-sec .desc {
        font-size: 1.1rem;
    }

    .landing-sec .right {
        margin-top: 25%;
    }
}

@media screen and (max-width: 768px) {
    .landing-sec .left {
        top: 15%;
    }

    .landing-sec .left .title {
        font-size: 3rem;
    }

    .landing-sec .desc {
        font-size: 0.9rem;
    }

    .landing-sec .right {
        margin-top: 30%;
    }
}

@media screen and (max-width: 550px) {
    .landing-sec {
        min-height: 100vh;
    }

    .landing-sec .left {
        top: 20%;
    }

    .landing-sec .left .title {
        font-size: 2.5rem;
    }

    .landing-sec .desc {
        font-size: 0.8rem;
    }

    .landing-sec .right {
        margin-top: 50%;
    }
}

@media screen and (max-width: 480px) {
    .landing-sec .left {
        top: 25%;
    }

    .landing-sec .left .title {
        font-size: 2rem;
    }

    .landing-sec .right {
        margin-top: 52%;
    }
}






.main-footer {
    background: linear-gradient(165deg, var(--primary-color) 0%, var(--secondary-color-dark) 100%);
    color: var(--text-light);
    padding: 120px 0 0;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, rgba(176, 154, 139, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 10% 90%, rgba(100, 84, 67, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.main-footer .footer-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 80px;
}

.main-footer .footer-col {
    position: relative;
}

.main-footer .footer-col h4 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 35px;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}

.main-footer .footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--tertiary-color);
    border-radius: 2px;
}

.main-footer .brand-col .footer-logo {
    width: 200px;
    margin-bottom: 35px;
}

.main-footer .brand-col .footer-logo img {
    width: 100%;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.main-footer .brand-col .footer-logo img:hover {
    transform: scale(1.05);
}

.main-footer .brand-col .footer-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light-low);
    margin-bottom: 40px;
    max-width: 90%;
}

.main-footer .brand-col .working-hours {
    margin-top: 40px;
    position: relative;
}

.main-footer .brand-col .working-hours .title {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-footer .brand-col .working-hours .title i {
    color: var(--tertiary-color);
    font-size: 1.4rem;
}

.main-footer .brand-col .working-hours .hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.main-footer .brand-col .working-hours .hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.main-footer .brand-col .working-hours .hours-item .day {
    color: var(--text-light-low);
    font-size: 1.1rem;
    font-weight: 500;
}

.main-footer .brand-col .working-hours .hours-item .time {
    color: var(--tertiary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.main-footer .brand-col .working-hours .hours-item:last-child {
    border-bottom: none;
}

.main-footer .brand-col .working-hours .hours-item:last-child .time {
    color: var(--secondary-color-light);
}

.main-footer .links-col .footer-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.main-footer .links-col .footer-links li a {
    color: var(--text-light-low);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-footer .links-col .footer-links li a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--tertiary-color);
    transition: width 0.3s ease;
}

.main-footer .links-col .footer-links li a:hover {
    color: var(--text-light);
    transform: translateX(10px);
}

.main-footer .links-col .footer-links li a:hover::before {
    width: 20px;
}

.main-footer .contact-col .contact-info {
    margin-bottom: 35px;
}

.main-footer .contact-col .contact-info p {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light-low);
    margin-bottom: 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.main-footer .contact-col .contact-info p a {
    color: var(--text-light-low);
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    display: flex;
    gap: 10px;
}

.main-footer .contact-col .contact-info p a:hover {
    color: var(--text-light);
    transform: translateX(5px);
    display: inline-block;
}

.main-footer .contact-col .contact-info p i {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tertiary-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.main-footer .contact-col .contact-info p:hover {
    color: var(--text-light);
    transform: translateX(5px);
}

.main-footer .contact-col .contact-info p:hover i {
    background: var(--tertiary-color);
    color: var(--text-light);
}

.main-footer .contact-col .footer-form {
    position: relative;
    display: flex;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    padding: 5px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.main-footer .contact-col .footer-form input {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
}

.main-footer .contact-col .footer-form input::placeholder {
    color: var(--text-light-low);
}

.main-footer .contact-col .footer-form input:focus {
    outline: none;
}

.main-footer .contact-col .footer-form button {
    padding: 12px 25px;
    border-radius: 10px;
    background: var(--tertiary-color);
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.main-footer .contact-col .footer-form button:hover {
    background: var(--secondary-color-light);
    transform: translateX(-3px);
}

/* Footer Bottom Styles */
.main-footer .footer-bottom {
    margin-top: 80px;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    position: relative;
}

.main-footer .footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.1) 50%,
        transparent 100%
    );
}

.main-footer .footer-bottom .bottom-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 30px 60px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}

.main-footer .footer-bottom .bottom-links {
    display: flex;
    gap: 30px;
}

.main-footer .footer-bottom .bottom-links a {
    color: var(--text-light-low);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.main-footer .footer-bottom .bottom-links a:hover {
    color: var(--text-light);
}

.main-footer .footer-bottom .copyright {
    text-align: center;
    color: var(--text-light-low);
    font-size: 0.95rem;
}

.main-footer .footer-bottom .bottom-socials {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.main-footer .footer-bottom .bottom-socials .social-link {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.main-footer .footer-bottom .bottom-socials .social-link i {
    font-size: 1rem;
    color: var(--text-light-low);
    transition: all 0.3s ease;
}

.main-footer .footer-bottom .bottom-socials .social-link:hover {
    background: var(--tertiary-color);
    transform: translateY(-3px);
}

.main-footer .footer-bottom .bottom-socials .social-link:hover i {
    color: var(--text-light);
}

.main-footer .footer-bottom .back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--tertiary-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 100;
}

.main-footer .footer-bottom .back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-footer .footer-bottom .back-to-top:hover {
    transform: translateY(-5px);
    background: var(--secondary-color-light);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .main-footer .footer-content {
        max-width: 1200px;
        gap: 60px;
    }

    .main-footer .brand-col .working-hours .hours-item {
        padding: 6px 0;

        .day, .time {
            font-size: 1rem;
        }
    }
}

@media (max-width: 1200px) {
    .main-footer .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
        padding: 0 40px;
    }

    .main-footer .contact-col {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .main-footer .footer-bottom .bottom-content {
        padding: 25px 40px;
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .main-footer {
        padding: 80px 0 0;
    }

    .main-footer .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 40px;
    }

    .main-footer .brand-col {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    .main-footer .brand-col .footer-logo {
        margin: 0 auto 25px;
    }

    .main-footer .brand-col .footer-desc {
        margin: 0 auto 30px;
    }

    .main-footer .brand-col .working-hours {
        max-width: 400px;
        margin: 30px auto 0;
    }

    .main-footer .brand-col .working-hours .title {
        justify-content: center;
    }

    .main-footer .footer-bottom .bottom-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .main-footer .footer-bottom .bottom-links {
        justify-content: center;
    }

    .main-footer .footer-bottom .bottom-socials {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main-footer .footer-content {
        grid-template-columns: 1fr;
        padding: 0 30px;
        gap: 40px;
    }

    .main-footer .footer-col h4 {
        font-size: 1.3rem;
        text-align: center;
        padding-left: 0;

        &::before {
            display: none;
        }
    }

    .main-footer .links-col .footer-links {
        text-align: center;
    }

    .main-footer .links-col .footer-links li a {
        justify-content: center;

        &:hover {
            transform: translateX(0) translateY(-3px);
        }
    }

    .main-footer .contact-col .contact-info p {
        justify-content: flex-start;
    }

    .main-footer .footer-bottom .bottom-links {
        flex-wrap: wrap;
        gap: 15px 25px;
    }

    .main-footer .footer-bottom .bottom-content {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 60px 0 0;
    }

    .main-footer .footer-content {
        padding: 0 20px;
        gap: 35px;
    }

    .main-footer .brand-col .working-hours .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        
        .time {
            font-size: 0.95rem;
        }
    }

    .main-footer .contact-col .footer-form {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }

    .main-footer .contact-col .footer-form button {
        width: 100%;
        justify-content: center;
    }

    .main-footer .contact-col .contact-info p {
        font-size: 1rem;
    }

    .main-footer .footer-bottom .bottom-links {
        flex-direction: column;
        gap: 12px;
    }

    .main-footer .footer-bottom .bottom-links a {
        font-size: 0.85rem;
    }

    .main-footer .footer-bottom .copyright {
        font-size: 0.85rem;
    }

    .main-footer .footer-bottom .back-to-top {
        right: 20px;
        bottom: 20px;
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
}


.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-wrapper .loader {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-wrapper .loader svg {
    width: 100%;
    height: auto;
}

.loader-wrapper .loader svg path {
    opacity: 0;
}