:root {
    --accent: #8C001A;
    --accent-neon: #F5A623;
    --dark: #000000;
    --cream: #ffffff;
    --panel-bg: #ffffff;
    --text-dark: #000000;
    --text-mid: #333333;
    --text-soft: #666666;
    --border-light: #ece8e0;
    --menu-width: 520px;
}


html {
    scroll-behavior: smooth;
}


body.no-scroll {
    overflow: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}




.slider-wrapper {
    position: fixed;
    inset: 0;
    width: 100%;
    height: calc(100vh - 90px);
    overflow: hidden;
    z-index: 1;
}

/* Swiper wrapper */
.swiper-wrapper {
    width: 100%;
    height: 100%;
}

.slide {
    width: 100%;
    height: 100vh;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, .38) 0%,
            rgba(0, 0, 0, .04) 18%,
            rgba(0, 0, 0, .0) 50%,
            rgba(0, 0, 0, .16) 82%,
            rgba(0, 0, 0, .48) 100%);
    pointer-events: none;
}

.topbar {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    z-index: 30;
    /* background-color: #ffffff !important; */
    color: #000 !important;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); */
    transition: padding 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.affix {
    background-color: #f8f8f8 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    animation: headerSlideDown 0.3s ease-out;
    z-index: 30;
    width: 100%;
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.topbar .logo-sub {
    color: #666;
}

/* ==========================================================================
   DESKTOP NAVIGATION MENU (3 LEVELS)
   ========================================================================== */
.desktop-menu-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.desktop-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-item-level1 {
    position: relative;
    padding: 15px 0;
}

.menu-link-level1 {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    /* letter-spacing: 1px; */
    transition: color 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.menu-link-level1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #8C001A;
    transition: width 0.3s ease;
}

.menu-link-level1:hover {
    color: #8C001A;
}

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

.menu-link-level1.active {
    color: #8C001A;
}

/* Submenu Level 2 Dropdown */
.submenu-level2 {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border-top: 3px solid #8C001A;
    min-width: 220px;
    padding: 12px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 1000;
}

.menu-item-level1:hover .submenu-level2 {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.menu-item-level2 {
    position: relative;
}

.menu-link-level2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    padding: 10px 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.menu-link-level2:hover,
.menu-link-level2.active {
    color: #F5A623;
    background-color: #fffaf0;
}

.menu-item-level2.has-sub>.menu-link-level2::after {
    content: 'Ã¢â‚¬Âº';
    font-size: 16px;
    margin-left: 10px;
    color: #F5A623;
}

/* Submenu Level 3 Dropdown */
.submenu-level3 {
    position: absolute;
    top: 0;
    left: 100%;
    transform: translateY(10px);
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border-top: 3px solid #8C001A;
    min-width: 220px;
    padding: 12px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 1001;
}

.menu-item-level2:hover .submenu-level3 {
    opacity: 1;
    visibility: visible;
    transform: translateY(-12px);
}

.menu-link-level3 {
    display: block;
    font-size: 13.5px;
    font-weight: 400;
    color: #555;
    padding: 8px 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.menu-link-level3:hover,
.menu-link-level3.active {
    color: #8C001A;
    background-color: #fff6f6;
}

/* Display and Responsive toggles */
.desktop-menu-container {
    display: block;
}

#menuBtn {
    display: none !important;
}

@media (max-width: 1100px) {
    .desktop-menu-container {
        display: none !important;
    }

    #menuBtn {
        display: flex !important;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    text-decoration: none;
    transition: opacity .2s;
}

.logo img {
    max-width: 100px;
    width: 100%;
}

.logo:hover {
    opacity: .85;
}

.logo-icon {
    width: 38px;
    height: auto;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--accent);
}

.logo-sub {
    font-size: 7.5px;
    letter-spacing: 3.5px;
    color: rgba(232, 226, 214, 0.9);
    font-weight: 300;
    margin-top: 1px;
}

.top-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.search-dropdown {
    position: absolute;
    top: 100%;
    right: 70px;
    margin-top: 15px;
    background: #fff;
    border-radius: 30px;
    padding: 5px 15px;
    visibility: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    width: 300px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.search-dropdown.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.search-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-form input {
    border: none;
    outline: none;
    width: 100%;
    padding: 8px 5px;
    font-size: 15px;
    color: #333;
    background: transparent;
    font-family: inherit;
}

.search-form input::placeholder {
    color: #888;
}

.search-form button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 0 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-form button svg {
    width: 22px;
    height: 22px;
}

.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: var(--accent);
    transition: opacity .22s, transform .22s;
    padding: 0;
}

.icon-btn svg {
    width: 30px;
    height: 30px;
}

.icon-btn:hover {
    opacity: .72;
    transform: scale(1.08);
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 22px;
    height: 22px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
}

.hamburger-btn.open .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.open .hamburger span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.open .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.scroll-cue {
    position: fixed;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 25;
    cursor: pointer;
    user-select: none;
    display: none;
}

.scroll-circle {
    width: 25px;
    height: 37px;
    border: 2px solid rgba(255, 255, 255, 0.78);
    border-radius: 25px;
    margin: 0 auto 10px !important;
    position: static;
    overflow: hidden;
}

.scroll-dot {
    position: absolute;
    left: 50%;
    top: 5px;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: dot-scroll 1.9s ease-in-out infinite;
}

@keyframes dot-scroll {
    0% {
        top: 5px;
        opacity: 1;
    }

    65% {
        top: 22px;
        opacity: 0.2;
    }

    66% {
        top: 5px;
        opacity: 0;
    }

    100% {
        top: 5px;
        opacity: 1;
    }
}

.scroll-label {
    font-size: 11.5px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: .4px;
    line-height: 1.55;
    text-align: center;
    display: inline-block;
}

.side-rail {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    z-index: 25;
}

.arrow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    transition: color .25s, transform .25s;
}

.arrow-btn svg {
    width: 40px;
    height: 40px;
    display: block;
}

/* .arrow-btn:hover {
    color: var(--accent);
    transform: scale(1.15);
} */

/* .arrow-btn.active {
    color: var(--accent);
} */

/* Pagination dots container */
.slide-dots {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Each dot = 1 slide */
.slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    /* background: rgba(255, 255, 255, 0.35); */
    border: 1px solid rgba(255, 255, 255, 1);
    cursor: pointer;
    transition: background .3s ease, transform .3s ease, border-color .3s ease;
    display: block;
    flex-shrink: 0;
}

/* Active dot */
.slide-dot.active {
    background: #FFF;
    border-color: #FFF;
    /* transform: scale(1.35); */
    /* box-shadow: 0 0 6px rgba(200, 117, 47, 0.7); */
}


/* ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â
   MENU OVERLAY (dark backdrop)
ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    opacity: 0;
    pointer-events: none;
    transition: opacity .38s ease;
    z-index: 40;
}

.menu-overlay.show {
    opacity: 1;
    pointer-events: auto;
}


/* ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â
   SLIDE-IN MENU PANEL
ÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚ÂÃƒÂ¢Ã¢â‚¬Â¢Ã‚Â */
.menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: var(--menu-width);
    max-width: 90vw;
    height: 100%;
    background: var(--panel-bg);
    color: var(--text-dark);
    z-index: 50;
    transform: translateX(100%);
    transition: transform .42s cubic-bezier(.77, 0, .18, 1);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 34px 54px 44px;
    /* subtle left border shadow */
    box-shadow: -4px 0 32px rgba(0, 0, 0, 0.18);
}

.menu-panel.show {
    transform: translateX(0);
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ MENU TOP BAR ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.menu-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 44px;
}

/* Language flag buttons */
.lang-flags {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flag-btn {
    width: 28px;
    height: 19px;
    border-radius: 3px;
    overflow: hidden;
    opacity: 0.5;
    transition: opacity .2s, box-shadow .2s;
    border: 1.5px solid transparent;
    cursor: pointer;
    display: block;
    padding: 0;
}

.flag-btn svg {
    width: 100%;
    height: 100%;
    display: block;
}

.flag-btn.active {
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.flag-btn:hover {
    opacity: 1;
}

/* Cart + close */
.menu-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text-dark);
    transition: color .2s;
}

.cart-btn svg {
    width: 22px;
    height: 22px;
}

.cart-btn:hover {
    color: var(--accent);
}

.cart-count {
    position: absolute;
    top: -9px;
    right: -11px;
    background: var(--accent);
    color: #fff;
    font-size: 9.5px;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-menu-btn {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    transition: color .2s, transform .25s;
}

.close-menu-btn svg {
    width: 22px;
    height: 22px;
}

.close-menu-btn:hover {
    color: var(--accent);
    transform: rotate(90deg);
}


/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ MENU NAV LIST ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-nav li {
    border-bottom: none;
}

/* Top-level link titles */
.nav-title {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 10px 0;
    transition: color .22s;
    line-height: 1.3;
}

/* .nav-title:hover {
    color: var(--accent);
} */

/* Active item (e.g. SÃƒÂ¡Ã‚ÂºÃ‚Â£n phÃƒÂ¡Ã‚ÂºÃ‚Â©m in orange) */
/* .active-nav.nav-title {
    color: var(--accent);
} */

/* Sub-menu links */
.sub-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 4px 0 12px 4px;
}

.sub-menu li a {
    font-size: 14.5px;
    font-weight: 300;
    color: var(--text-soft);
    transition: color .2s;
    display: block;
    padding: 3px 0;
}

.sub-menu li a:hover {
    color: var(--accent);
}


/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ MENU FOOTER ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.menu-footer {
    margin-top: 52px;
    padding-top: 28px;
    border-top: 1px solid var(--border-light);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-logo svg {
    width: 40px;
    height: auto;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.f-main {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1.5px;
}

.f-sub {
    font-size: 8px;
    letter-spacing: 3px;
    color: var(--text-soft);
    font-weight: 300;
}

.footer-contacts {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12.5px;
    color: var(--text-mid);
    margin-bottom: 14px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    padding: 0;
}

.contact-item svg {
    width: 13px;
    height: 13px;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-sep {
    color: var(--border-light);
    font-size: 14px;
}

.footer-copy {
    font-size: 13px;
    color: #2a2927;
    font-weight: 300;
}


@media (max-width: 768px) {
    .topbar {
        padding: 10px;
    }

    .top-icons {
        gap: 14px;
    }

    .heading-script,
    .heading-neon {
        font-size: 52px;
    }
}

@media (max-width: 480px) {

    .heading-script,
    .heading-neon {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .side-rail {
        right: 12px;
        display: none;
    }

    .menu-panel {
        padding: 26px 24px 36px;
        width: 100%;
        max-width: 100%;
    }

    .nav-title {
        font-size: 19px;
    }

    .search-dropdown {
        right: 35px;
    }
}

@media (max-width: 380px) {
    .logo img {
        max-width: 75px;
    }

    .register-agency-btn {
        font-size: 11px !important;
    }

    #phoneBtn {
        display: none;
    }

    .search-dropdown {
        right: 20px;
        width: 275px;
    }
}

/* Scrollbar for menu panel */
.menu-panel::-webkit-scrollbar {
    width: 4px;
}

.menu-panel::-webkit-scrollbar-track {
    background: transparent;
}

.menu-panel::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 2px;
}

/* ==========================================================================
   REGISTER AGENCY BUTTON & MODAL
   ========================================================================== */

/* REGISTER AGENCY BUTTON */
.register-agency-btn {
    background-color: #8C001A !important;
    color: #fff !important;
    border-radius: 20px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-agency-btn:hover {
    background-color: #F5A623 !important;
    color: #fff !important;
}

.site-header.affix .register-agency-btn {
    background-color: #8C001A !important;
    color: #fff !important;
    border-color: #F5A623 !important;
}

.site-header.affix .register-agency-btn:hover {
    background-color: #F5A623 !important;
    color: #fff !important;
    border-color: #8C001A !important;
}

/* AGENCY MODAL */
.agency-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.agency-modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.agency-modal-container {
    background: var(--panel-bg, #fdfcfa);
    color: var(--text-dark, #1a1712);
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    padding: 30px;
    position: relative;
    transform: translateY(-30px);
    transition: transform 0.3s ease;
}

.agency-modal-overlay.show .agency-modal-container {
    transform: translateY(0);
}

.agency-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-dark, #1a1712);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    padding: 0;
}

.agency-modal-close svg {
    width: 20px;
    height: 20px;
}

.agency-modal-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.agency-modal-header {
    margin-bottom: 25px;
    text-align: center;
}

.agency-modal-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: #8C001A;
    margin-bottom: 8px;
}

.agency-modal-header p {
    font-size: 14px;
    color: var(--text-mid, #555);
    line-height: 1.5;
}

.agency-modal-form .form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

.agency-modal-form .form-row {
    display: flex;
    gap: 15px;
}

.agency-modal-form .form-row .form-group {
    flex: 1;
}

.agency-modal-form label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark, #1a1712);
}

.agency-modal-form label .text-danger {
    color: #8C001A;
}

.agency-modal-form input,
.agency-modal-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-light, #ece8e0);
    background-color: #fff;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-dark, #1a1712);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.agency-modal-form input:focus,
.agency-modal-form textarea:focus {
    border-color: var(--accent, #8C001A);
    box-shadow: 0 0 0 3px rgba(140, 0, 26, 0.15);
}

.agency-modal-form textarea {
    resize: vertical;
}

.agency-modal-form .form-submit {
    margin-top: 25px;
    text-align: center;
}

.agency-modal-form .btn-submit {
    background-color: #8C001A;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.agency-modal-form .btn-submit:hover {
    background-color: #F5A623;
}

@media (max-width: 768px) {
    .register-agency-btn {
        padding: 8px 10px;
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .agency-modal-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .agency-modal-container {
        padding: 20px;
    }

    .agency-modal-header h3 {
        font-size: 24px;
    }

    #phoneBtn {
        display: none;
    }
}

/* HEADER ICON & HAMBURGER COLORS */
.topbar .icon-btn {
    color: #000;
}

.topbar .icon-btn:hover {
    color: #8C001A;
}

.topbar .hamburger span {
    background-color: #000;
}

.topbar #menuBtn:hover .hamburger span {
    background-color: #8C001A;
}

.site-header.affix .icon-btn {
    color: #000;
}

.site-header.affix .icon-btn:hover {
    color: #8C001A;
}

.site-header.affix .hamburger span {
    background-color: #000;
}

.site-header.affix #menuBtn:hover .hamburger span {
    background-color: #8C001A;
}

@media (max-width: 1240px) {
    .topbar {
        padding: 10px;
    }

    .desktop-menu {
        gap: 20px;
    }
}