@font-face {
    font-family: 'clash';
    src: url('ClashDisplay_Complete/Fonts/OTF/ClashDisplay-Regular.otf');
}

@font-face {
    font-family: 'norman';
    src: url('fonnts.com-Norman-.otf');
}

@font-face {
    font-family: 'variable';
    src: url('ClashDisplay_Complete/Fonts/TTF/ClashDisplay-Variable.ttf');
}

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

/* Removing all custom cursor CSS */

html.has-scroll-smooth {
    overflow: hidden;
}

html.has-scroll-dragging {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'variable';
    font-family: 'norman';
    font-family: 'clash';
    overflow-x: hidden;
    user-select: none;
    min-height: 1000vh;
    cursor: none;
    /* background-color: #fff; */
}

[data-scroll-container] {
    position: relative;
    min-height: 100vh;
}

[data-scroll-section] {
    position: relative;
    overflow: hidden;
}


/* Custom Cursor Styles */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #b44414;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    mix-blend-mode: difference;
    background-color: #b44414;
    z-index: 9999;
    transition: transform 0.2s ease;
    /* margin: -10px; */
}


.cursor::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #B44414;
    background-color: #B44414;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    /* mix-blend-mode: difference; */
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.fade-in {
    opacity: 0;
    /* transform: translateY(50px); */
    transition: all 1s ease;
}

.fade-in.is-inview {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease;
}

.slide-in-left.is-inview {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease;
}

.slide-in-right.is-inview {
    opacity: 1;
    transform: translateX(0);
}


/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    gap: 60px;
    top: 0;
    width: 100%;
    z-index: 100;
    color: white;
    transition: transform 0.4s ease, background-color 0.3s ease;
    background-color: #b44414;
}

.nav-links {
    display: flex;
    gap: 60px;
}

/* Add a class for hiding navbar */
.navbar--hidden {
    transform: translateY(-100%);
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-family: 'variable';
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.nav-logo {
    height: 50px;
    width: auto;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
    margin-top: 10px;
    filter: brightness(0) invert(1);
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    letter-spacing: 1px;
    font-weight: 400;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
    cursor: none;
}

/* .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    transition: width 0.3s ease;
} */

/* .nav-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
} */

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    font-weight: 500;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #B44414;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.5s ease;
}

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

.mobile-menu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    letter-spacing: 2px;
    font-weight: 400;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(20px);
}

.mobile-menu.active .mobile-nav-link {
    animation: menuFadeIn 0.5s forwards;
}

.mobile-menu.active .mobile-nav-link:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-menu.active .mobile-nav-link:nth-child(2) {
    animation-delay: 0.2s;
}

.mobile-menu.active .mobile-nav-link:nth-child(3) {
    animation-delay: 0.3s;
}

.mobile-menu.active .mobile-nav-link:nth-child(4) {
    animation-delay: 0.4s;
}

.mobile-menu.active .mobile-nav-link:nth-child(5) {
    animation-delay: 0.5s;
}

.mobile-menu.active .mobile-nav-link:nth-child(6) {
    animation-delay: 0.6s;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.mobile-nav-link:hover::after,
.mobile-nav-link.active::after {
    width: 100%;
}

.mobile-nav-link.active {
    font-weight: 500;
}

/* Animation for menu button */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 1;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Animation for menu fade in */
@keyframes menuFadeIn {
    from {
        opacity: 1;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .header {
        padding: 1.5rem 4rem;
    }

    .nav-left,
    .nav-right {
        gap: 2rem;
    }
}

@media screen and (max-width: 992px) {
    .header {
        padding: 1.2rem 2rem;
    }

    .nav-left,
    .nav-right {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .logo img {
        height: 40px;
        width: 130px;
    }
}

@media screen and (max-width: 768px) {
    .header {
        padding: 1rem 1.5rem;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo img {
        height: 35px;
    }

}

@media screen and (max-width: 576px) {
    .header {
        padding: 0.8rem 1rem;
    }

    .logo img {
        height: 40px;
    }

    .mobile-nav-link {
        font-size: 1.2rem;
    }
}

/* close  */

.appointment-section {
    padding: 60px 40px;
    /* background-color: #ffffff; */
    margin-top: 150px;
    display: flex;
    align-items: start;
    justify-content: start;
    text-align: start;
    gap: 200px;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #1d1d1d;
    border-radius: 50%;
}

.get-in-touch {
    margin-bottom: 10px;
}

.get-in-touch span {
    font-size: 1rem;
    color: #000000;
    font-family: 'variable';
    display: flex;
    align-items: center;
    justify-content: start;
    text-align: start;
    gap: 10px;
    font-weight: 500;
}

.appointment-title h1 {
    font-size: 28px;
    color: #000;
    font-family: 'variable';
    font-weight: 500;
    margin: 0;
}

/* For responsive design */
@media (width: 400px) {
    .appointment-section {
        display: flex;
        align-items: center;
        justify-content: start;
        text-align: start;
        padding: 40px 40px;
        margin: 50px;
    }

    .appointment-title h1 {
        font-size: 28px;
    }
}


/* close  */

.contact-section {
    display: flex;
    /* margin-top: 100px; */
    /* background-color: #ffffff; */
    padding-left: 40px;
    padding-right: 40px;
}

.contact-image {
    flex: 1;
    height: 800px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-details {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details h2 {
    font-family: 'clash';
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.address-details {
    margin-bottom: 30px;
}

.address-details p,
.timing-details p,
.contact p {
    font-family: 'variable';
    font-size: 1.1rem;
    letter-spacing: 1.2px;
    line-height: 1.6;
    color: #1d1d1d;
}

.timing-details {
    margin-bottom: 20px;
}

.timing {
    margin-bottom: 15px;
}

.contact {
    margin-bottom: 30px;
}

.map-btn {
    font-family: 'variable';
    letter-spacing: 5px;
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: #fff;
    cursor: none;
}

.map-btn:hover {
    color: #ffffff;
    background-color: #1d1d1d;
}

.dot {
    width: 15px;
    height: 15px;
    background-color: #ac0000;
    border-radius: 50%;
}

.map-btn:hover .dot {
    background-color: #fff;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .contact-section {
        flex-direction: column;
    }

    .contact-image {
        height: 400px;
    }

    .contact-details {
        padding: 40px;
    }
}

@media screen and (max-width: 768px) {
    .contact-image {
        height: 300px;
    }

    .contact-details {
        padding: 30px;
    }

    .contact-details h2 {
        font-size: 28px;
    }

    .address-details p,
    .timing-details p,
    .contact p {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .contact-image {
        height: 250px;
    }

    .contact-details {
        padding: 20px;
    }

    .contact-details h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .map-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Map Section */
.map-section {
    width: 50%;
    padding: 0;
    margin: 40px 0;
    background-color: #ffffff;
}

.map-container {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .map-container {
        height: 400px;
    }
}

@media screen and (max-width: 480px) {
    .map-container {
        height: 300px;
    }
}

/* Write to us section */
.write-to-us {
    padding: 60px 40px;
    /* background-color: #ffffff; */
}

.write-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.write-header h2 {
    font-family: 'variable';
    font-size: 1rem;
    font-weight: 500;
    color: #000;
}

.flex {
    width: 50%;
}

.contact-form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    /* margin: 0 auto; */
    /* margin-left: 750px; */
    gap: 100px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    font-family: 'variable';
    font-weight: 500;
    color: #000;
    background: transparent;
    border: none;
    border-bottom: 1px solid #000;
    outline: none;
    letter-spacing: 2px;
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.form-group label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 16px;
    font-family: 'variable';
    color: #666;
    pointer-events: none;
    transition: 0.3s ease all;
    letter-spacing: 2px;

}

.form-group input:focus~label,
.form-group input:valid~label,
.form-group select:focus~label,
.form-group select:valid~label,
.form-group textarea:focus~label,
.form-group textarea:valid~label {
    top: -20px;
    font-size: 14px;
    color: #000;
}

.submit-btn {
    font-family: 'variable';
    letter-spacing: 5px;
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: #fff;
    cursor: none;
}


.submit-btn:hover {
    background-color: #1d1d1d;
    border-color: #B44414;
    color: #fff;
}


.dot {
    width: 14px;
    height: 14px;
    background-color: #000;
    border-radius: 50%;
    transition: background-color 10s ease-in-out;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .write-to-us {
        padding: 40px 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea,
    .form-group label {
        font-size: 14px;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .write-to-us {
        padding: 30px 15px;
    }

    .write-header h2 {
        font-size: 14px;
    }

    .form-group {
        margin-bottom: 25px;
    }
}


/* close  */

/* Responsive Design */
@media screen and (max-width: 768px) {
    .map-container {
        height: 400px;
    }
}

@media screen and (max-width: 480px) {
    .map-container {
        height: 300px;
    }
}


/* Footer Styles */
.footer-section {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    background-color: #B44414;
    color: #ffffff;
    padding: 60px 80px;
    width: 100%;
    font-family: 'variable', sans-serif;
}

.footer-container {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    width: 90vw;
}

.footer-logo-section {
    flex: 100%;
    margin-bottom: 40px;
    max-width: 550px;
    /* margin-right: 50px; */
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-description {
    font-family: 'variable';
    /* width: 80%; */
    font-size: 1.2rem;
    line-height: 1.6;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-social {
    width: 90vw;
    display: flex;
    gap: 20px;
}

.social-icon {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #B44414;
}

.footer-links-section {
    display: flex;
    /* gap: 20px; */
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-links-column {
    /* flex: 0 0 calc(33.333% - 50px); */
    width: 550px;
    display: flex;
    align-items: flex-start;
    justify-content: start;
    flex-direction: column;
    margin-bottom: 30px;
    padding: 20px;
    padding-top: 0px;
}

.footer-column-title {
    font-family: 'clash';
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: #B44414;
}

.footerlink {
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

.footer-links {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact-info li {
    max-width: 100%;
    letter-spacing: 2px;
    margin-bottom: 0.875rem;
    cursor: none;
}

.footer-links a {
    width: 100%;
    white-space: nowrap;
    font-family: 'variable';
    font-size: 1.2rem;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    cursor: none;
}

.footer-links a:hover {
    opacity: 1;
    color: #000000;
    /* padding-left: 5px; */
}

.footer-contact-info li {
    font-family: 'variable';
    font-size: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    opacity: 0.9;
}

.footer-contact-info i {
    color: #B44414;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    /* padding: 20px 100PX; */
    text-align: center;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100vw;
    /* margin: 0 auto; */
}

.copyright {
    align-items: start;
    font-family: 'variable';
    font-size: 1rem;
    letter-spacing: 2px;
    opacity: 0.9;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 1rem;
    font-family: variable;
    letter-spacing: 1.2px;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    margin-right: 100px;
}

.footer-bottom-links a:hover {
    opacity: 1;
}



/* Responsive styles for footer */
@media screen and (max-width: 1200px) {

    .footer-1-box,
    .footer-2-box,
    .footer-3-box {
        width: 33.33%;
    }

    .footer-box-in {
        width: 90%;
    }

    .flex-text-footer {
        margin-left: 80px;
    }
}

@media screen and (max-width: 992px) {
    .footer {
        height: auto;
    }

    .footer-4 {
        flex-wrap: wrap;
    }

    .footer-1-box,
    .footer-2-box,
    .footer-3-box {
        width: 50%;
    }

    .footer-1-box {
        order: 1;
    }

    .footer-2-box {
        order: 2;
    }

    .footer-3-box {
        order: 3;
        width: 100%;
        border-right: none;
    }

    .flex-text-footer {
        margin-left: 60px;
    }
}

@media screen and (max-width: 768px) {
    .footer-4 {
        flex-direction: column;
    }

    .footer-1-box,
    .footer-2-box,
    .footer-3-box {
        width: 100%;
        height: auto;
        padding: 30px 20px;
        border-right: none;
    }

    .suzora-logo {
        margin-top: 20px;
        width: 250px;
    }

    .footer-box-in {
        margin-top: 10px;
        flex-direction: column;
    }

    .flex-text-footer {
        margin-top: 20px;
        margin-left: 0;
    }

    .under-footer {
        padding: 15px;
        height: auto;
        text-align: center;
    }

    .under-footer h1 {
        font-size: 12px;
        line-height: 1.5;
    }
}

@media screen and (max-width: 576px) {

    .footer-1-box,
    .footer-2-box,
    .footer-3-box {
        padding: 20px 15px;
    }

    .suzora-logo {
        width: 200px;
    }

    .text-footer h1,
    .footer-3-box h1 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .text-footer p,
    .flex-text-footer p,
    .mail-flex1 h2 {
        font-size: 13px;
    }

    .mail-box1 {
        margin-top: 20px;
    }

    .map-section {
        width: 100%;
        padding: 2rem 0rem;
        margin: 0;
        background-color: #ffffff;
    }

    .map-container {
        width: 100%;
        height: 500px;
        position: relative;
        overflow: hidden;
    }
}


/* Custom Cursor Styles */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    mix-blend-mode: difference;
    background-color: #fff;
    z-index: 9999;
    transition: transform 0.2s ease;
    /* margin: -10px; */
}


.cursor::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #B44414;
    background-color: #B44414;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    /* mix-blend-mode: difference; */
    transform: translate(-50%, -50%);
    z-index: 9999;
}

/* Responsive styles for all sections */
@media screen and (max-width: 768px) {

    .appointment-section {
        display: flex;
        align-items: start;
        justify-content: start;
        text-align: start;
        flex-direction: column;
        padding: 10px;
        gap: 1rem;
        margin-top: 5rem;
    }

    .appointment-title h1 {
        font-size: 2rem;
        text-align: center;
        padding: 0 1rem;
    }

    .get-in-touch {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .contact-section {
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .contact-image {
        width: 100%;
        height: 300px;
    }

    .contact-image img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .contact-details {
        width: 100%;
        padding: 3rem 1rem;
    }

    .contact-details h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .address-details p,
    .timing-details p,
    .contact p {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .map-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    .write-to-us {
        padding: 2rem 1rem;
    }

    .write-header h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        flex-direction: column;
        gap: 2rem;
    }

    .map-container {
        width: 100%;
        height: 300px;
    }

    .map-container iframe {
        width: 100%;
        height: 100%;
    }

    .form-group {
        width: 100%;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        font-size: 1rem;
        padding: 0.8rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .submit-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .appointment-title h1 {
        font-size: 1.5rem;
    }

    .contact-image {
        height: 350px;
    }

    .contact-details h2 {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
    }

    .write-header h2 {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
    }

    .map-container {
        height: 250px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 0.9rem;
        padding: 0.7rem;
    }

    .dot {
        display: none;
    }


    .form-group label {
        font-size: 0.8rem;
    }
}

/* Animation classes for mobile */
@media screen and (max-width: 768px) {
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }

    .fade-in.is-inview {
        opacity: 1;
        transform: translateY(0);
    }

    .slide-in-left {
        opacity: 0;
        transform: translateX(-50px);
        transition: all 0.8s ease;
    }

    .slide-in-left.is-inview {
        opacity: 1;
        transform: translateX(0);
    }

    .slide-in-right {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.8s ease;
    }

    .slide-in-right.is-inview {
        opacity: 1;
        transform: translateX(0);
    }

    .flex {
        width: 100%;
        padding: 1rem 0rem;
    }
}

/* Smooth transitions for all interactive elements */
.map-btn,
.submit-btn,
.form-group input,
.form-group textarea,
.form-group select {
    transition: all 0.3s ease;
}

/* Touch-friendly hover states for mobile */
@media (hover: none) {

    .map-btn:active,
    .submit-btn:active {
        transform: scale(0.98);
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        transform: scale(1.01);
    }
}


@media (max-width: 485px) {



    .cursor {
        display: none;
    }

    * {
        cursor: auto;
    }
}


/* Footer Styles */
.footer-section {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    background-color: #B44414;
    color: #ffffff;
    padding: 60px 80px;
    width: 100%;
    font-family: 'variable', sans-serif;
}

.footer-container {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    width: 90vw;
}

.footer-logo-section {
    flex: 100%;
    margin-bottom: 40px;
    max-width: 550px;
    /* margin-right: 50px; */
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-description {
    font-family: 'variable';
    /* width: 80%; */
    font-size: 1.2rem;
    line-height: 1.6;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-social {
    width: 90vw;
    display: flex;
    gap: 20px;
}

.social-icon {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #B44414;
}

.footer-links-section {
    display: flex;
    /* gap: 20px; */
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-links-column {
    /* flex: 0 0 calc(33.333% - 50px); */
    width: 550px;
    display: flex;
    align-items: flex-start;
    justify-content: start;
    flex-direction: column;
    margin-bottom: 30px;
    padding: 20px;
    padding-top: 0px;
}

.footer-column-title {
    font-family: 'clash';
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: #B44414;
}

.footerlink {
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

.footer-links {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact-info li {
    max-width: 100%;
    letter-spacing: 2px;
    margin-bottom: 0.875rem;
    cursor: none;
}

.footer-links a {
    width: 100%;
    white-space: nowrap;
    font-family: 'variable';
    font-size: 1.2rem;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    cursor: none;
}

.footer-links a:hover {
    opacity: 1;
    color: #000000;
    /* padding-left: 5px; */
}

.footer-contact-info li {
    font-family: 'variable';
    font-size: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    opacity: 0.9;
}

.footer-contact-info i {
    color: #B44414;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 100PX;
    text-align: center;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100vw;
    /* margin: 0 auto; */
}

.copyright {
    align-items: start;
    font-family: 'variable';
    font-size: 1rem;
    letter-spacing: 2px;
    opacity: 0.9;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 1rem;
    font-family: variable;
    letter-spacing: 1.2px;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    margin-right: 100px;
}

.footer-bottom-links a:hover {
    opacity: 1;
}

/* Responsive Styles */
@media only screen and (max-width: 992px) {
    .e-collection-header h1 {
        font-size: 3rem;
    }

    .catalog-item {
        gap: 30px;
    }
}

@media only screen and (max-width: 768px) {

    .navbar {
        display: flex;
        justify-content: space-between;
        padding: 15px 20px;
    }

    .nav-logo {
        width: 100%;
        height: 40px;
    }

    .e-collection-header {
        padding: 120px 0 60px;
    }

    .e-collection-header h1 {
        font-size: 2.5rem;
    }

    .catalogs-container {
        width: 95%;
        gap: 60px;
        height: auto;
    }

    .catalog-item,
    .catalog-item:nth-child(even) {
        flex-direction: column;
        gap: 30px;
    }

    .catalog-image,
    .catalog-info {
        /* flex: 0 0 100%; */
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .catalog-info h2 {
        font-size: 1.2rem;
        font-family: clash;
        letter-spacing: 2px;
    }

    .catalog-info p {
        font-size: 1rem;
    }
}

/* Responsive Footer */
@media only screen and (max-width: 992px) {
    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: start;
        /* width: 100vw; */
        /* padding: 10px; */
    }

    .footer-logo-section {
        padding: 0px;
        margin-bottom: 30px;
    }

    .footer-links-section {
        width: 100%;
        flex-direction: column;
        gap: 0;
    }

    .footer-links-column {
        flex: 0 0 calc(50% - 15px);
        width: 100%;
        padding: 10px;
    }
}

@media only screen and (max-width: 768px) {
    .footer-section {
        width: 100vw;
        height: 110vh;
        display: flex;
        align-items: center;
        justify-content: start;
        padding: 30px 10px;
    }

    .footer-links-section {
        width: 100vw;
        flex-direction: column;
        align-items: start;
    }

    .footer-links-column {
        flex: 0 0 100%;
        width: 100%;
        margin-bottom: 10px;
        padding: 0px;
    }

    .footer-bottom {
        display: flex;
        justify-content: start;
        align-items: start;
        text-align: start;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        width: 100vw;
    }

    .copyright {
        /* width: 100vw; */
        display: flex;
        align-items: center;
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .footer-bottom-links {
        display: flex;
        justify-content: start;
        align-items: start;
        text-align: start;
    }

    .footer-bottom-links a {
        text-align: center;
        align-items: center;
        margin: 0;
    }

    .footer-description {
        font-size: 1rem;
    }

    .footer-links a {
        font-size: 1rem;
    }

    .footer-contact-info li {
        font-size: 1rem;
    }
}


/* Hamburger Menu Styles */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #b34716;
    z-index: 2000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay.active {
    display: flex;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
}

.mobile-menu-list li {
    margin: 30px 0;
}

.mobile-menu-list a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    letter-spacing: 1px;
    font-family: 'variable', sans-serif;
    font-weight: 400;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 30px;
    font-size: 3rem;
    color: #fff;
    /* cursor: pointer; */
    z-index: 2001;
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .navbar {
        justify-content: space-between;
        padding: 20px 25px;
    }
}

/* Reduced Motion Styles */
.reduced-motion * {
    animation: none !important;
    transition: none !important;
}

/* Touch Device Styles */
@media (hover: none) {
    .box:hover {
        transform: none;
    }

    .image-container img:hover {
        transform: none;
        filter: none;
    }
}


@media screen and (max-width: 768px) {
    .cursor {
        display: none;
    }

    * {
        cursor: auto;
    }
}