     /*============================================
  End upper Navbar 
==============================================*/

/* ── Hero Slider CSS Variables (mapped to Canada4Travel palette) ── */
/* :root {
    --second-color:  #C9A961;
    --third-color:   #0A2342;
    --white-color:   #ffffff;
    --color-accent:  #C9A961;
    --gradient-accent: linear-gradient(90deg, #C9A961, #e8c97a);
    --font-body:     'Inter', Arial, sans-serif;
} */


:root {
    --black: #0A2342;
     --second-color: #0A2342;
    --maple-red: #C8102E;
    --warm-sand: #E8DDC4;
     --third-color: #C9A961;
    --limestone-ivory: #F5EFE6;
    --charcoal: #1F1F1F;
    --mist-grey: #9A9A9A;
    --white: #ffffff;
    --serif-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --serif-body: 'Source Serif 4', Georgia, serif;
    --ui: 'Inter', Arial, sans-serif;
    --container: min(1180px, calc(100% - 48px));
}

.hero-home {
    margin: 28px;
    position: relative;
    height: 80vh;
    min-height: 560px;
    max-height: 860px;
    overflow: hidden;
    border: 1px solid var(--third-color);
    z-index: 1;
    padding: 14px;
    border-radius: 0px;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-info {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 0px;
}



.hero-swiper .swiper-slide {
    overflow: hidden;
}

.hero-swiper .swiper-slide .hero-img-base {
    transform: scale(1);
    transition: transform 3s ease-out, opacity 1.5s ease-in-out;
    filter: blur(0px);
}

.hero-swiper .swiper-slide-active .hero-img-base {
    transform: scale(1.15);
    animation: 20s linear 0s infinite alternate none running kenBurns;
}

.hero-swiper .swiper-slide-transitioning .hero-img-base {
    filter: url("#ripple-filter") blur(2px);
}

.hero-img-wrap {
    position: absolute;
    inset: 0px;
    z-index: 0;
    overflow: hidden;
    border-radius: 0px;
    cursor: pointer;
}

.ripple-container {
    position: absolute;
    inset: 0px;
    pointer-events: none;
    z-index: 2;
}

.hero-info::before {
    content: "";
    position: absolute;
    inset: 0px;
    z-index: 3;
    pointer-events: none;
}

.hero-dots {
    position: absolute;
    inset: 0px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 4;
    pointer-events: none;
}

.slide-description {
    position: absolute;
    inset: 0px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem 1rem 1rem 4rem;
    max-width: 100%;
}

@media (max-width: 768px) {
    .slide-description {
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem 4rem;
        max-width: 100%;
    }
}

.swiper-slide-active .slide-description .slide-eyebrow {
    animation: 0.6s ease 0.1s 1 normal both running slideUp;
}

.swiper-slide-active .slide-description h2 {
    animation: 0.6s ease 0.25s 1 normal both running slideUp;
}.swiper-slide-active .slide-description h1 {
    animation: 0.6s ease 0.25s 1 normal both running slideUp;
}

.swiper-slide-active .slide-description p {
    animation: 0.6s ease 0.4s 1 normal both running slideUp;
}

.swiper-slide-active .slide-description .hero-cta {
    animation: 0.6s ease 0.55s 1 normal both running slideUp;
}

.swiper-slide-active .slide-description .hero-badges {
    animation: 0.6s ease 0.68s 1 normal both running slideUp;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(28px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.slide-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(242, 183, 5, 0.15);
    border: 1px solid rgb(63, 114, 250);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white-color);
    margin-bottom: 14px;
}

.slide-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    animation: 2s ease-in-out 0s infinite normal none running pulse;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.5);
    }
}

.slide-description h2 {
    font-size: 65px;
    font-weight: 800;
    color: #ffff;
    line-height: 1.15;
    margin-bottom: 14px;
    text-shadow: rgba(0, 0, 0, 0.4) 0px 2px 20px;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
}
.slide-description h1 {
    font-size: 65px;
    font-weight: 800;
    color: #ffff;
    line-height: 1.15;
    margin-bottom: 14px;
    text-shadow: rgba(0, 0, 0, 0.4) 0px 2px 20px;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
}

.slide-description h2 span {
    color: var(--color-accent);
    position: relative;
}

.slide-description h2 span::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    animation: 0.8s ease 0.9s 1 normal forwards running lineGrow;
}

.swiper-slide-active .slide-description h2 span::after {
    animation: 0.8s ease 0.9s 1 normal forwards running lineGrow;
}

@keyframes lineGrow {
    100% {
        transform: scaleX(1);
    }
}

.slide-description p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.72;
    max-width: 480px;
    margin-bottom: 0px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

@media (max-width: 768px) {
    .hero-cta {
        justify-content: center;
    }
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--second-color);
    color: #ffff;
    font-weight: 700;
    font-size: 0.88rem;
    font-family: var(--font-body);
    border-radius: 0;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    box-shadow: rgba(242, 183, 5, 0.4) 0px 4px 18px;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    cursor: pointer;
}

.btn-hero-primary:hover {
    background: #c8102e;
    transform: translateY(-2px);
    box-shadow: rgba(242, 183, 5, 0.55) 0px 8px 28px;
    color: rgb(255, 255, 255) !important;
}

.btn-hero-primary i {
    font-size: 0.78rem;
    transition: transform 0.3s;
}

.btn-hero-primary:hover i {
    transform: translate(3px, -3px);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #c8102e;
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
    font-family: var(--font-body);
    border-radius: 0;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    transition: border-color 0.25s, background 0.25s, transform 0.2s;
    cursor: pointer;
}

.btn-hero-outline:hover {
    border-color: var(--second-color);
    background: #0a2342;
    transform: translateY(-2px);
    color: rgb(255, 255, 255) !important;
}

.hero-badges {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-badges {
        justify-content: center;
    }
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.hero-badge i {
    font-size: 0.65rem;
    color: var(--color-accent);
}

.slide-counter {
    position: absolute;
    bottom: 42px;
    right: 49px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 0;
    padding: 11px 42px;
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.slide-counter-current {
    color: var(--color-accent);
    font-size: 0.88rem;
}

.hero-home .swiper-pagination {
    bottom: 28px !important;
    z-index: 20;
}

.hero-home .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    opacity: 1;
    transition: width 0.3s, background 0.3s;
}

.hero-home .swiper-pagination-bullet-active {
    width: 28px;
    background: var(--color-accent);
}

.swiper-button-next, .swiper-button-prev {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    top: 50%;
    transform: translateY(-50%);
}

.hero-home:hover .swiper-button-next, .hero-home:hover .swiper-button-prev {
    opacity: 1;
    visibility: visible;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--third-color);
    border-color: var(--third-color);
    box-shadow: rgba(39, 61, 127, 0.4) 0px 4px 20px;
}

.swiper-button-next::after, .swiper-button-prev::after {
    color: var(--white-color);
    font-weight: 700;
    font-size: 1rem !important;
}

.swiper-button-next, .swiper-button-prev {
    font-size: 1rem !important;
    color: rgb(255, 255, 255) !important;
}

.swiper-button-next, .swiper-button-prev {
    & ::slotted(svg), & svg {
        height: 100%;
        object-fit: contain;
        transform-origin: center center;
        fill: currentcolor;
        pointer-events: none;
        width: 19px;
        font-weight: 600;
    }
}

.hero-progress {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 20;
    overflow: hidden;
}

.hero-progress-bar {
    height: 100%;
    background: var(--gradient-accent);
    width: 0%;
    transition: width linear;
}

.scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

@media (max-width: 768px) {
    .scroll-indicator {
        display: none;
    }
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border-radius: 11px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.scroll-wheel {
    width: 3px;
    height: 7px;
    border-radius: 999px;
    background: var(--color-accent);
    animation: 1.8s ease-in-out 0s infinite normal none running scrollAnim;
}

@keyframes scrollAnim {
    0% {
        transform: translateY(0px);
        opacity: 1;
    }

    80% {
        transform: translateY(10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 0;
    }
}

.scroll-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 576px) {
    .hero-home {
        height: 70vh;
        min-height: 420px;
        margin: 2px;
        padding: 0;
    }

    .swiper-button-next, .swiper-button-prev {
        display: none !important;
    }

    .slide-counter {
        /* top: 16px; */
        right: 11px;
        bottom: 3px;
    }
}

.top-bar {
    background: var(--color-secondary);
    padding: 7px 0px;
    position: relative;
    overflow: visible;
    z-index: 2500;
}

.top-bar::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: repeating-linear-gradient(105deg, transparent, transparent 40px, rgba(107, 206, 245, 0.04) 40px, rgba(107, 206, 245, 0.04) 41px);
    pointer-events: none;
}

.top-bar-inner {
    max-width: 1280px;
    margin: 0px auto;
    padding: 0px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.top-contacts {
    display: none;
    align-items: center;
    gap: 0px;
}

@media (min-width: 768px) {
    .top-contacts {
        display: flex;
    }
}

.top-contacts li {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0px 16px;
    position: relative;
    font-size: 0.78rem;
    font-weight: 500;
}

.top-contacts li + li::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, 0.18);
}

.top-contacts li i {
    color: var(--color-accent);
    font-size: 0.8rem;
}

.top-contacts li a {
    color: var(--color-primary);
    transition: color 0.2s;
}

.top-contacts li a:hover {
    color: var(--color-white);
}

.top-right {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.top-dropdown {
    position: relative;
}

.top-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-sm);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 500;
    font-family: var(--font-heading);
    transition: background 0.2s, border-color 0.2s;
}

.top-dropdown-btn i {
    color: var(--color-accent);
    font-size: 0.72rem;
}

.top-dropdown-btn .chevron {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.25s;
}

.top-dropdown:hover .top-dropdown-btn {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(107, 206, 245, 0.3);
}

.top-dropdown:hover .chevron {
    transform: rotate(180deg);
}

.top-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0px;
    min-width: 130px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: rgba(0, 0, 0, 0.14) 0px 8px 28px;
    border: 1px solid var(--color-gray-200);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    z-index: 200;
}

.top-dropdown:hover .top-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.top-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--color-gray-700);
    border-bottom: 1px solid var(--color-gray-100);
    transition: background 0.2s, color 0.2s;
}

.top-dropdown-menu a:last-child {
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
}

.top-dropdown-menu a:hover {
    background: var(--color-gray-100);
    color: var(--color-primary);
}

.top-dropdown-menu img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

.top-socials {
    display: none;
    align-items: center;
    gap: 6px;
    padding-left: 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    margin-left: 4px;
}

@media (min-width: 640px) {
    .top-socials {
        display: flex;
    }
}

.top-socials li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-primary);
    font-size: 0.72rem;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.top-socials li a:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary-dark);
}

.navbar {
    background: var(--color-white);
    position: sticky;
    top: 0px;
    z-index: 100;
    transition: background 0.35s, box-shadow 0.35s;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    box-shadow: rgba(39, 61, 127, 0.1) 0px 4px 24px;
    position: fixed;
    width: 100%;
    z-index: 2000;
}

.nav-inner {
    max-width: 1280px;
    margin: 0px auto;
    padding: 0px 24px;
    display: flex;
    align-items: stretch;
    height: 72px;
}

.nav-logo-wrap {
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 32px;
    flex-shrink: 0;
}

.nav-logo-wrap::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    width: 500%;
    height: 100%;
    background: var(--color-primary);
    opacity: 0.06;
    pointer-events: none;
    border-radius: 0px 999px 999px 0px;
    display: none;
}

.logo-box img {
    width: 150px;
}

.nav-links {
    display: none;
    align-items: stretch;
    margin: 0px auto;
    gap: 0px;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-item {
    position: relative;
    display: flex;
    align-items: stretch;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-gray-700);
    position: relative;
    transition: color 0.25s;
    white-space: nowrap;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 18px;
    width: calc(100% - 36px);
    height: 2px;
    background: var(--gradient-main);
    border-radius: 2px 2px 0px 0px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s;
}

.nav-item:hover .nav-link, .nav-item.active .nav-link {
    color: var(--color-primary);
}

.nav-item:hover .nav-link::after {
    transform: scaleX(1);
}

.nav-link .chevron {
    font-size: 0.6rem;
    transition: transform 0.25s;
    color: var(--color-gray-400);
}

.nav-item:hover .nav-link .chevron {
    transform: rotate(180deg);
}

.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px) scale(0);
    min-width: 210px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-gray-200);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s, transform 0.28s, visibility 0.28s;
    z-index: 300;
}

.dropdown-panel::before {
    position: absolute;
    top: -3px;
    left: 0px;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-bottom-right-radius: 6px;
}

.nav-item:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0px) scale(1);
}

.dropdown-panel a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    font-size: 0.83rem;
    font-weight: 500;
    color: var(--color-gray-700);
    border-bottom: 1px solid var(--color-gray-100);
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
    position: relative;
}

.dropdown-panel a:last-child {
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
}

.dropdown-panel a::before {
    content: "â†’";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 20px;
    height: 20px;
    font-size: 10px;
    background: var(--color-accent);
    transition: transform 0.25s;
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    color: var(--color-white);
    text-align: center;
}

.dropdown-panel a:hover {
    background: var(--color-gray-100);
    color: var(--color-primary);
    padding-left: 22px;
}

.dropdown-panel a:hover::before {
    transform: translateY(-50%) scale(1);
}

.dropdown-panel a i {
    color: var(--color-secondary-dark);
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

.nav-cta-wrap {
    display: none;
    align-items: center;
    padding-left: 20px;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .nav-cta-wrap {
        display: flex;
    }
}

.nav-cta-wrap::before {
    content: "";
    display: block;
    width: 1px;
    height: 36px;
    background: var(--color-gray-200);
    margin-right: 20px;
}

.btn-book-now {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--color-secondary);
    box-shadow: rgba(242, 183, 5, 0.4) 0px 8px 24px;
    color: var(--color-primary-dark);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-book-now::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: var(--color-primary);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
    z-index: 0;
}

.btn-book-now:hover::before {
    transform: translateX(0px);
}

.btn-book-now:hover {
    color: var(--color-white);
    transform: translateY(-2px);
    background: var(--color-primary);
    box-shadow: rgba(39, 61, 127, 0.3) 0px 4px 16px;
}

.btn-book-now span, .btn-book-now i {
    position: relative;
    z-index: 1;
}

.btn-book-now i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.btn-book-now:hover i {
    transform: translate(3px, -3px);
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 4px;
    background: none;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    margin-left: auto;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
    margin-top: 25px;
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}

.hamburger:hover {
    background: var(--color-gray-100);
}

.ham-bar {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: var(--color-primary);
    transition: transform 0.35s, opacity 0.25s, width 0.3s;
}

.ham-bar:nth-child(1) {
    width: 100%;
}

.ham-bar:nth-child(2) {
    width: 70%;
}

.ham-bar:nth-child(3) {
    width: 100%;
}

.hamburger.open .ham-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    width: 100%;
}

.hamburger.open .ham-bar:nth-child(2) {
    opacity: 0;
}

.hamburger.open .ham-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 100%;
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0px;
    z-index: 5000;
    background: rgba(27, 38, 75, 0.6);
    backdrop-filter: blur(4px);
}

.mobile-menu.open {
    display: block;
}

.mobile-panel {
    position: absolute;
    top: 0px;
    left: 0px;
    width: min(340px, 88vw);
    height: 100%;
    background: var(--color-white);
    box-shadow: rgba(0, 0, 0, 0.15) -12px 0px 40px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    animation: 0.35s cubic-bezier(0.77, 0, 0.18, 1) 0s 1 normal both running slideIn;
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0px);
    }
}

.mobile-panel::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    opacity: 0.06;
    clip-path: polygon(0px 0px, 100% 0px, 0px 100%);
    pointer-events: none;
}

.mobile-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--color-gray-200);
}

.mobile-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--color-gray-200);
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-700);
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
}

.mobile-close:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.mobile-nav-list {
    padding: 12px 0px;
    flex: 1 1 0%;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--color-gray-100);
    display: block;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gray-700);
    transition: color 0.2s, background 0.2s;
}

.mobile-nav-link:hover {
    color: var(--color-primary);
    background: var(--color-gray-100);
}

.mobile-nav-link i {
    font-size: 0.75rem;
    color: var(--color-gray-400);
}

.mobile-sub {
    display: none;
    background: var(--color-gray-100);
    border-top: 1px solid var(--color-gray-200);
}

.mobile-sub.open {
    display: block;
}

.mobile-sub a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px 11px 30px;
    font-size: 0.83rem;
    color: var(--color-gray-500);
    transition: color 0.2s;
}

.mobile-sub a i {
    color: var(--color-secondary-dark);
    font-size: 0.75rem;
}

.mobile-sub a:hover {
    color: var(--color-primary);
}

.mobile-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--color-gray-200);
}

.mobile-book-btn {
    display: block;
    text-align: center;
    padding: 13px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 14px;
    transition: background 0.25s;
}

.mobile-book-btn:hover {
    background: var(--color-primary-dark);
}

.mobile-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-contacts a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--color-gray-500);
}

.mobile-contacts a i {
    color: var(--color-accent);
}

.mobile-nav-row {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--color-gray-100);
}

.mobile-nav-item--has-sub > .mobile-nav-row .mobile-nav-link {
    flex: 1 1 0%;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
}

.mobile-arrow {
    flex-shrink: 0;
    width: 52px;
    background: none;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-top-color: currentcolor;
    border-right-color: currentcolor;
    border-bottom-color: currentcolor;
    border-image: initial;
    border-left: 1px solid var(--color-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-400);
    font-size: 0.75rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.mobile-arrow:hover {
    background: var(--color-gray-100);
    color: var(--color-primary);
}

.mobile-arrow i {
    transition: transform 0.25s;
    pointer-events: none;
}

.mobile-nav-item--has-sub {
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
}

.mobile-sub {
    display: none;
    background: var(--color-gray-100);
    border-top: 1px solid var(--color-gray-200);
    border-bottom: 1px solid var(--color-gray-200);
}

.mobile-sub.open {
    display: block;
}

.mobile-sub li, .mobile-sub a {
    display: block;
}

.tc-cta {
    background: var(--color-secondary);
    color: var(--color-primary-dark);
}

.tailor-title-accent {
    color: var(--color-secondary-dark);
}



.hero-img-base {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-button-next, .swiper-button-prev {
    font-size: 1rem !important;
    color: rgb(255, 255, 255) !important;
}
.swiper-button-next, .swiper-button-prev {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    top: 50% !important;
    transform: translateY(-50%);
}






@media (max-width: 760px) {

.slide-description h2 {
    font-size: 47px;
}

.slide-description h1 {
    font-size: 38px;
}

}