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

/* Old fonts removed */


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

html, body {
    height: 100%;
    font-family: Montserrat;
    background-color: #fff;
    color: #000;
    overflow-x: hidden !important;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.mouse {
    left: 50%;
    bottom: 35px;
    z-index: 5;
    width: 25px;
    height: 45px;
    border: 3px solid rgba(255, 255, 255, 0.75);
    border-radius: 55px;
    position: absolute;
    z-index: 9999;
    transform: translateX(-50%);
}

    .mouse::before {
        content: "";
        width: 7px;
        height: 7px;
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(255, 255, 255, 0.75);
        border-radius: 50%;
        opacity: 1;
        animation: wheel 1s infinite;
        -webkit-animation: wheel 1s infinite;
    }

@keyframes wheel {
    to {
        opacity: 0;
        top: 60px;
    }
}

@-webkit-keyframes wheel {
    to {
        opacity: 0;
        top: 60px;
    }
}

.old-header-disabled {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    display: none;
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

.old-logo-img {
    height: 50px;
}

.old-nav-disabled {
    display: flex;
    align-items: center;
    gap: 40px;
}

    .old-nav-ul {
        display: flex;
        gap: 30px;
        position: relative;
    }

        .old-nav-ul li {
            position: relative;
        }

            .old-nav-ul li a {
                font-family: Montserrat;
                transition: color 0.3s;
                padding: 5px 0;
                display: inline-block;
                color: #000;
                font-size: 16px;
            }

                .old-nav-ul li a:hover {
                    color: #B8860B;
                }

            .old-nav-ul li ul {
                display: none;
                position: absolute;
                top: 25px;
                left: -5px;
                background-color: #fff;
                padding: 10px 0;
                min-width: 200px;
                box-shadow: 0 2px 8px rgba(0,0,0,0.1);
                z-index: 1000;
            }

                .old-nav-ul li:hover ul, .old-nav-ul li ul:hover {
                    display: block;
                }

                .old-nav-ul li ul li {
                    padding: 5px 20px;
                    white-space: nowrap;
                }

                    .old-nav-ul li ul li a {
                        font-family: Montserrat;
                    }

.search-box input {
    padding: 8px 14px;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
line-height: 1;
min-height: auto;
    outline: none;
    transition: border-color 0.3s ease;
    width: 150px;
}

    .search-box input:focus {
        border-color: #B8860B;
    }

.lang-switcher a {
    font-family: Montserrat;
    padding: 5px 8px;
    font-size: 16px;
    border-radius: 4px;
}

    .lang-switcher a.active {
        background-color: #B8860B;
        color: white;
    }

.hero {
    position: relative;
    overflow: hidden;
    height: 100vh;
    background-color: #000;
    display: flex;
    align-items: center; /* Center content vertically */
}

.hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-text {
    position: relative;
    /* top, left removed for flex centering */
    text-align: left;
    color: white;
    max-width: 690px;
    z-index: 2;
}

    .hero-text h1 {
        font-size: 5rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 25px;
        text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        font-family: Montserrat;
    }

    .hero-text p {
        font-size: 1.3rem;
        margin-bottom: 35px;
        font-weight: 300;
        line-height: 1.5;
        opacity: 0.95;
        color: white;
    }

    .hero-text .btn-hero {
        background-color: #B8860B;
        border-color: #B8860B;
        color: #fff;
        padding: 18px 50px;
        font-size: 1.2rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: inline-block;
        text-decoration: none;
        border-radius: 5px;
        box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
        transition: all 0.3s ease;
    }

    .hero-text .btn-hero:hover {
        background-color: #9A7009;
        border-color: #9A7009;
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(184, 134, 11, 0.4);
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.intro-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
}

.intro-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: #B8860B;
    line-height: 1.4;
    margin-bottom: 20px;
}

.intro-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    border: 2px solid #B8860B;
    color: #B8860B;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s ease;
}

    .cta-button:hover {
        background-color: #B8860B;
        color: white;
    }

.intro-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}


.services-carousel-section {
    padding: 80px 0;
    background-color: #ffffff;
    overflow: hidden;
}

    .services-carousel-section h2 {
        text-align: center;
        font-size: 24px;
        margin-bottom: 40px;
        font-family: Montserrat;
    }

.carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scrollCarousel 50s linear infinite;
}

.carousel-item {
    flex: 0 0 auto;
    width: 400px;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin: 0 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .carousel-item::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .carousel-item h3 {
        position: relative;
        z-index: 2;
        font-family: 'Montserrat', sans-serif;
        font-size: 18px;
        color: #fff;
        text-align: center;
        margin-bottom: 15px;
    }

    .carousel-item a {
        position: relative;
        z-index: 2;
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        color: white;
        padding: 10px 20px;
        border: 1.5px solid white;
        border-radius: 4px;
        text-decoration: none;
        transition: 0.3s ease;
    }

        .carousel-item a:hover {
            background-color: white;
            color: #000;
        }

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.cta-banner {
    background: url(../images/band-bg.png) no-repeat center center;
    background-size: cover !important;
    padding: 40px 10%;
    color: #fff;
}

.cta-banner p, .cta-banner p a {
    color: #fff; font-size: 15px; font-weight: 700;
}

.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

    .cta-flex p {
        font-family: 'Montserrat', sans-serif;
        font-size: 28px;
        margin: 0;
    }

.cta-button {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    padding: 12px 28px;
    border: 2px solid white;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
    margin: 0;
}

    .cta-button:hover {
        background-color: white;
        color: #B8860B;
    }

.services-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 60px 10%;
    background-color: #f9f9f9;
}

.service-card {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

.service-content {
    position: relative;
    z-index: 2;
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

    .service-content h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 20px;
        margin-bottom: 15px;
    }

.service-button {
    font-family: 'Montserrat', sans-serif;
    background-color: transparent;
    border: 1.5px solid white;
    padding: 10px 24px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

    .service-button:hover {
        background-color: white;
        color: #000;
    }

.blog-section {
    padding: 80px 10%;
    background-color: #f9f9f9;
    text-align: center;
}

    .blog-section img {
        height: 40px;
        margin: auto;
        margin-bottom: 40px;
    }

    .blog-section h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 28px;
        margin-bottom: 40px;
        color: #333;
    }

        .blog-section h2 span {
            color: #B8860B;
        }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}

.blog-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .blog-card:hover {
        transform: translateY(-5px);
    }

    .blog-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        background-color: #ddd;
        margin: 0;
    }

    .blog-card h4 {
        font-family: 'Montserrat', sans-serif;
        font-size: 16px;
        padding: 20px;
        color: #333;
        line-height: 1.4;
    }

footer {
    background-color: #111;
    color: #eee;
    font-family: 'Montserrat', sans-serif;
    padding: 60px 10% 30px;
    font-size: 14px;
    overflow: auto;
    overflow-x: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Montserrat';
    font-size: 14px;
    color: white;
    margin-bottom: 12px;
}

.footer-col ul {
    padding: 0;
}

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

        .footer-col ul li a {
            color: #ccc;
            font-family: 'Montserrat';
            transition: 0.3s;
        }

            .footer-col ul li a:hover {
                color: #B8860B;
            }

.footer-col p {
    margin-bottom: 12px;
    color: #ccc;
    line-height: 1.5;
}

.footer-col a {
    color: #ccc;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
}

.footer-social img {
    width: 20px;
    filter: brightness(0) invert(1);
    transition: 0.3s;
}

    .footer-social img:hover {
        filter: brightness(0) invert(0.6);
    }

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-certificates img {
    height: 60px;
    margin-right: 15px;
    float: left;
}

.footer-bottom p {
    margin-top: 10px;
    font-family: 'Montserrat';
    color: #aaa;
    font-size: 13px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

    .menu-toggle span {
        width: 24px;
        height: 2px;
        background-color: #333;
        display: block;
        transition: 0.3s ease;
    }

@media (min-width: 1081px) {
    .mobile {
        display: none;
    }
}

@media (max-width: 1080px) {

    .services-section {
        grid-template-columns: 1fr;
    }

    .old-nav-ul li a {
        font-family: Montserrat;
        padding: 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card img {
        height: 300px;
        object-fit: cover;
        object-position: center center;
    }

    .old-nav-ul {
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        display: none;
    }

        .old-nav-ul li {
            text-align: center;
            padding: 10px 0;
        }

            .old-nav-ul li:first-child {
                padding-top: 20px;
            }

    nav.active ul {
        display: flex;
        gap: 5px;
    }

    .cta-flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .services-carousel-section .carousel-item {
        width: 400px;
        height: 240px;
    }

    .blog-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-top {
        grid-template-columns: repeat(4, 1fr);
    }

    .intro-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 20px;
        padding: 0 10px;
    }

    .hero-text img.band {
        width: 160px;
    }

    .menu-toggle {
        display: flex;
    }

    .old-nav-ul {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    nav.active ul {
        display: flex;
    }
}

@media (max-width: 768px) {
    .cta-flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .search-box input {
        display: none;
    }

    .old-logo-img {
        height: 40px;
    }

    .lang-switcher a {
        padding: 3px 3px;
        border-radius: 3px;
    }

    .search-box {
        display: none;
    }

    .old-nav-disabled {
        gap: 20px;
    }

    .menu-toggle {
        padding: 0px;
    }

    .carousel-track {
        width: 100%;
    }

    .intro-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .intro-text h2 {
        font-size: 24px;
    }

    .cta-button {
        margin-top: 20px;
    }

    .carousel-track {
        flex-direction: column;
        animation: none;
    }

    .carousel-item {
        width: 100% !important;
        height: 200px;
        margin: 10px 0;
    }
}

@media (max-width: 600px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-box {
        width: 100%;
        margin-top: 10px;
    }

        .search-box input {
            width: 100%;
        }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}


.blog-item{
    height: 530px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.blog-item img{
    height: 250px;
    object-fit: cover;
    object-position: center center;
}

.blog-item .item{
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 0 20px !important;
}

.blog-item .item:hover{
    background-color: transparent !important;
    background: transparent !important;
    box-shadow: none !important;
}

.blog-item .item a:after{
    display: none !important;
}

.blog-item h4 {
    text-align: center;
    padding: 0 30px;
}

.blog-item h4 a{
    font-size: 21px;
    font-weight: 100;
}

.blog-item:hover p a,
.blog-item .item:hover p a{
    color: #B8860B !important;
}

.blog-item p{
    padding: 0 30px;
    display: inline-block;
    height: 100px;
    margin: 0;
}

.blog_title{
    text-align: left !important;
}

.blog_title:after{
    margin:  10px 0 !important;
}

.blog-item span{
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
    font-size: 13px;
    color: #B8860B;
}


.list-unstyled {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 20px;
}

.list-unstyled li {
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 20px;
}

.list-unstyled a {
    display: flex;
    align-items: center;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: color 0.2s;
}

.list-unstyled a:hover {
    color: #B8860B;
    text-decoration: underline;
}

.list-unstyled span {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
    background: #f0f0f0;
    flex-shrink: 0;
}

.list-unstyled img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-members .single-item img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .cta-flex p,
    .cta-flex span {
        width: 100% !important;
    }
}

/* Custom Grid System */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    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: 1040px; } }
@media (min-width: 1200px) { .container { max-width: 1320px; } }
@media (min-width: 1500px) { .container { max-width: 1440px; } }

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.col-lg-3 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.col-md-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.col-sm-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 992px) {
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
    .ps-lg-5 { padding-left: 3rem !important; }
}
@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
.ms-2 { margin-left: 0.5rem !important; }

/* Helpers */
.text-center { text-align: center !important; }
.text-start { text-align: left !important; }
.text-end { text-align: right !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.h-100 { height: 100% !important; }

/* Hero Container Flex */
.hero .container {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}


/* =========================================
   2026 Header Design Styles (White Theme)
   ========================================= */

/* Top Bar */
.top-bar {
    background: #111;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 1001;
}

.top-bar .header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    margin-right: 15px;
}

.top-left a:hover {
    color: #B8860B;
}

.top-left .divider {
    color: #555;
    margin-right: 15px;
}

.top-right .social-icons a {
    color: #ccc;
    margin-left: 15px;
    transition: color 0.3s;
}

.top-right .social-icons a:hover {
    color: #B8860B;
}

/* Header Wrapper */
.site-header {
    background: #ffffff;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    transition: all 0.3s ease;
    display: block !important;
}

.site-header.scrolled,
.site-header.header-sticky {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.header-logo img {
    height: 50px;
    transition: height 0.3s ease;
}

.site-header.scrolled .header-logo img,
.site-header.header-sticky .header-logo img {
    height: 40px;
}

/* Desktop Navigation */
.desktop-nav {
    display: none; /* Mobile First */
}

@media (min-width: 992px) {
    .desktop-nav {
        display: block;
    }
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #222; /* Dark Text */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    position: relative;
    padding: 10px 0;
    transition: color 0.3s;
}

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

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

.nav-link i {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s;
    color: #888;
}

.nav-item:hover .nav-link {
    color: #B8860B;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
    color: #B8860B;
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 260px;
    padding: 15px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 3px solid #B8860B;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 25px;
    color: #555;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
    font-family: 'Montserrat', sans-serif;
    border-left: 0px solid #B8860B;
}

.dropdown-menu li a:hover {
    background: #f9f9f9;
    color: #B8860B;
    padding-left: 30px;
    border-left: 3px solid #B8860B;
}


/* Utility Classes */
.me-2 {
    margin-right: 0.5rem !important;
}
.d-none {
    display: none !important;
}
.d-md-inline-flex {
    display: none; /* fallback */
}
@media (min-width: 768px) {
    .d-md-inline-flex {
        display: inline-flex !important;
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.action-btn {
    background: none;
    border: none;
    color: #222;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
}

.action-btn:hover {
    color: #B8860B;
}

.btn-dealer {
    background: #222;
    color: #fff;
    padding: 8px 25px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    border: 1px solid transparent;
}

.btn-dealer:hover {
    background: #B8860B;
    color: #fff;
}

/* Mobile Toggle */
.mobile-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1200;
}

@media (min-width: 992px) {
    .mobile-toggle {
        display: none;
    }
}

.mobile-toggle .bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #222;
    transition: all 0.3s;
}

.mobile-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #fff;
}

.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: #fff;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

.search-form {
    width: 100%;
    max-width: 800px;
    position: relative;
    text-align: center;
}

.search-form input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #555;
    color: #fff;
    font-size: 2rem;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

.search-form input:focus {
    border-color: #B8860B;
}

.search-form button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #B8860B;
    font-size: 2rem;
    cursor: pointer;
}

.close-search {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-search:hover {
    color: #B8860B;
}

/* Mobile Menu Container */
.mobile-menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #111;
    z-index: 1100;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    padding: 20px;
}

@media (min-width: 576px) {
    .mobile-menu-container {
        width: 400px;
    }
}

.mobile-menu-container.active {
    right: 0;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.close-mobile-menu {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    flex: 1;
}

.mobile-nav-list > li {
    border-bottom: 1px solid #eee;
}

.mobile-nav-list > li > a {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 0;
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.mobile-nav-list > li.active > a,
.mobile-nav-list > li > a:hover {
    color: #B8860B;
}

/* Mobile Submenu */
.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #1a1a1a;
    display: none; /* Hidden by default */
}

.mobile-submenu li a {
    display: block;
    padding: 12px 20px;
    color: #aaa;
    font-size: 14px;
    text-decoration: none;
    border-left: 2px solid transparent;
}

.mobile-submenu li a:hover {
    color: #fff;
    background: #222;
    border-left-color: #B8860B;
}

/* Accordion Logic for Mobile Menu */
.has-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.has-submenu > a::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 12px;
    transition: transform 0.3s;
}

.has-submenu.open > a::after {
    transform: rotate(180deg);
}

.has-submenu.open .mobile-submenu {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-menu-footer {
    margin-top: 20px;
}

/* Button Colors */
.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    border-radius: 0.3rem;
}

.btn-primary {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}
.btn-primary:hover {
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}
.btn-secondary:hover {
    color: #fff;
    background-color: #5c636a;
    border-color: #565e64;
}

.btn-success {
    color: #fff;
    background-color: #198754;
    border-color: #198754;
}
.btn-success:hover {
    color: #fff;
    background-color: #157347;
    border-color: #146c43;
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}
.btn-danger:hover {
    color: #fff;
    background-color: #bb2d3b;
    border-color: #b02a37;
}

.btn-warning {
    color: #000;
    background-color: #ffc107;
    border-color: #ffc107;
}
.btn-warning:hover {
    color: #000;
    background-color: #ffca2c;
    border-color: #ffc720;
}

.btn-info {
    color: #000;
    background-color: #0dcaf0;
    border-color: #0dcaf0;
}
.btn-info:hover {
    color: #000;
    background-color: #31d2f2;
    border-color: #25cff2;
}

.btn-light {
    color: #000;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}
.btn-light:hover {
    color: #000;
    background-color: #f9fafb;
    border-color: #f9fafb;
}

.btn-dark {
    color: #fff;
    background-color: #212529;
    border-color: #212529;
}
.btn-dark:hover {
    color: #fff;
    background-color: #1c1f23;
    border-color: #1a1e21;
}


