/* ===================================================================
   Phú Quý Sea Travel — nền tảng giao diện (shell dùng chung)
   Tokens • reset • typography • buttons • header • footer • floating CTA
   =================================================================== */

/* -------------------------------------------------- Tokens --------- */
:root {
    /* Bảng màu (theo thiết kế Figma) */
    --c-primary: #005389;        /* xanh biển chủ đạo */
    --c-primary-dark: #013a61;
    --c-teal: #0b8bc4;
    --c-teal-light: #16c3ff;
    --c-accent: #c39951;         /* vàng đồng — CTA */
    --c-accent-dark: #a67f3d;
    --c-navy: #00263f;           /* navy tối — footer, panel */
    --c-navy-dark: #001b2e;
    --c-text: #1f2733;
    --c-muted: #3A3A3A;
    --c-border: #e4e9f0;
    --c-bg: #ffffff;
    --c-bg-soft: #eef6fb;
    --c-success: #157347;
    --c-star: #f6a609;

    /* Font */
    --font-base: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --font-display: "TUV Domaine", "Playfair Display", Georgia, "Times New Roman", serif;
    --font-script: "NVN Funky Signature", "Segoe Script", "Brush Script MT", cursive;
    --container: 1200px;
    --radius: 14px;
    --radius-sm: 15px;
    --radius-lg: 22px;
    --shadow-sm: 0 4px 14px rgba(0, 83, 137, .08);
    --shadow: 0 10px 30px rgba(0, 83, 137, .10);
    --shadow-lg: 0 20px 50px rgba(0, 38, 63, .18);
    --header-h: 104px;
}

/* --------------------------------------------- Font trang trí ------ */
@font-face {
    font-family: "TUV Domaine";
    src: url("/Frontend/Assets/fonts/TUV-Domaine-Regular.ttf") format("truetype");
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: "NVN Funky Signature";
    src: url("/Frontend/Assets/fonts/NVNFunkySignature-Regular.ttf") format("truetype");
    font-weight: 400; font-style: normal; font-display: swap;
}

/* ---------------------------------------------------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
    margin: 0;
    font-family: var(--font-base);
    font-size: 15px;
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-bg);
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.25; margin: 0 0 .5em; color: var(--c-text); }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }
:focus-visible { outline: 2px solid var(--c-teal); outline-offset: 2px; }

.container {width: 100%;max-width: var(--container);margin-inline: auto;padding-inline: 20px;}

.font-display { font-family: var(--font-display); font-weight: 400; }
.font-script  { font-family: var(--font-script);  font-weight: 400; }

/* ------------------------------------------- Section framework ---- */
.section {padding-block: clamp(40px, 5vw, 40px);}
.section-soft {/* background: var(--c-bg-soft); */}

.kicker {
    display: inline-block;
    color: var(--c-primary);
    font-family: var(--font-script);
    font-size: 38px;
    line-height: 1;
    margin-bottom: 6px;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-bottom: clamp(24px, 4vw, 40px);
}
.section-title {
    position: relative;
    margin: 0;
    padding-bottom: 0;
    color: var(--c-primary);
    font-size: 32px;
    text-transform: uppercase;
}
.section-title::after {
    content: "";
}
.section-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c-primary);
    font-weight: 600;
    font-size: 18px;
    margin-top: 10px;
}
.section-more:hover { color: var(--c-accent); }
.section-heading-light { flex-direction: column; align-items: center; text-align: center; }
.section-heading-light .section-title { color: #fff; }
.section-heading-light .section-title::after { left: 50%; transform: translateX(-50%); }
.section-heading-light .section-more { color: rgba(255,255,255,.9); margin-top: 6px; }
.section-heading-light .section-more:hover { color: var(--c-accent); }
/* Tiêu đề căn giữa (Thư viện / Tin tức / Đánh giá) */
.section-heading-center { flex-direction: column; align-items: center; text-align: center; }
.section-heading-center .section-title::after { left: 50%; transform: translateX(-50%); }

/* ------------------------------------------------- Buttons -------- */
.btn-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 26px; border: 0; border-radius: 999px;
    font-weight: 600; font-size: .9375rem; line-height: 1.2;
    cursor: pointer; white-space: nowrap;
    transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn-pill:hover { transform: translateY(-2px); }
.btn-primary-pill { background: var(--c-primary); color: #fff; }
.btn-primary-pill:hover { background: var(--c-primary-dark); color: #fff; }
.btn-accent-pill { background: var(--c-accent); color: #fff; box-shadow: 0 8px 20px rgba(195,153,81,.32); }
.btn-accent-pill:hover { background: var(--c-accent-dark); color: #fff; }
.btn-outline-pill { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.7); }
.btn-outline-pill:hover { background: #fff; color: var(--c-primary); border-color: #fff; }
.btn-lg-pill {padding: 15px 30px;font-size: 16px;}

/* ============================================ Thẻ bài viết =========
   Bố cục theo thiết kế, DÙNG CHUNG cho trang chủ (mục Tin tức), danh sách bài,
   bài liên quan và kết quả tìm kiếm: ảnh dọc làm nền + hộp nội dung nổi
   (frosted) đè lên phía dưới, chữ căn giữa, nút bo tròn.
   ------------------------------------------------------------------- */
.post-card {
    position: relative;
    height: 100%;
    aspect-ratio: 393 / 460;                 /* tỉ lệ thẻ theo thiết kế */
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

/* Ảnh nền phủ kín thẻ */
.post-card-thumb { position: absolute; inset: 0; display: block; overflow: hidden; background: var(--c-bg-soft); }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .post-card-thumb img { transform: scale(1.05); }
.post-card-noimg {
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%; background: var(--c-bg-soft); color: var(--c-teal); font-size: 2rem;
}

/* Hộp nội dung nổi trên ảnh */
.post-card-panel {
    position: absolute; left: 22px; right: 22px; bottom: 21px; z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 14px 16px 16px;
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(6px);
    border-radius: 15px;
    text-align: center;
}
.post-card-title {
    margin: 0; font-size: 1rem; line-height: 1.29; font-weight: 600;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; text-overflow: ellipsis;
}
.post-card-title a { color: var(--c-primary); }
.post-card-title a:hover { color: var(--c-teal); }
.post-card-desc {
    margin: 0; font-size: .8125rem; line-height: 1.5; color: #3c3c3c;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
    overflow: hidden; text-overflow: ellipsis;
}
.post-card-btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 110px; padding: 6px 18px; margin-top: 2px;
    border-radius: 50px; background: var(--c-primary); color: #fff;
    font-size: .8125rem; font-weight: 600; white-space: nowrap;
    transition: background .2s ease, transform .2s ease;
}
.post-card-btn:hover { background: var(--c-primary-dark); color: #fff; transform: translateY(-1px); }

/* ------------------------------------------ Tour & Dịch vụ -------- */
.tour-cards {margin-bottom: 20px;}
.tour-card {
    position: relative;
    height: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.tour-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tour-card:hover .tour-bg { transform: scale(1.05); }
.tour-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 6px 16px;
    border-radius: 999px;
    background: var(--c-accent);
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3px;
    display: none;
}
.tour-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,38,63,.92) 6%, rgba(0,38,63,.4) 45%, transparent 78%);
}
.tour-content {color: #fff;padding-right: 20%;}
.tour-title {margin: 0 0 12px;color: #fff;font-size: 22px;font-weight: 500;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;}
.tour-includes ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px 16px; }
.tour-includes li { position: relative; padding-left: 22px; font-size: .8125rem; color: rgba(255,255,255,.92); }
.tour-includes li::before {
    content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
    position: absolute; left: 0; top: 1px; color: var(--c-accent); font-size: .75rem;
}
.tour-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    color: var(--c-primary);
    font-size: 1rem;
    box-shadow: 0 6px 16px rgba(0,38,63,.35);
    transition: background .2s ease, transform .2s ease;
}
.tour-arrow:hover { background: #fff; color: var(--c-primary); transform: translateY(-2px); }

/* Tóm tắt tour hiển thị đè trên ảnh */
.tour-summary {
    margin: 0;
    color: rgb(255 255 255 / 75%);
    font-size: .875rem;
    line-height: 1.55;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Slider dịch vụ nổi bật */
.service-swiper { padding-bottom: 44px; }
.service-swiper .swiper-slide { height: auto; }          /* các thẻ cao bằng nhau */
.service-swiper .swiper-button-prev,
.service-swiper .swiper-button-next {color: var(--c-primary);display: none;}
.service-swiper .swiper-pagination-bullet { background: var(--c-primary); opacity: .35; }
.service-swiper .swiper-pagination-bullet-active { background: var(--c-accent); opacity: 1; width: 24px; border-radius: 5px; }

.service-card {
    position: relative; height: 100%; background: var(--c-bg); border: 1px solid var(--c-border);
    border-radius: var(--radius); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease;
    display: flex; flex-direction: column;
}
.service-title a { color: inherit; }
.service-title a:hover { color: var(--c-accent); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-thumb {position: relative;aspect-ratio: 3 / 4;overflow: hidden;}
.service-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-thumb img { transform: scale(1.07); }
.service-arrow {
    position: absolute;
    right: 25px;
    bottom: 20px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--c-primary);
    color: #fff;
    font-size: .95rem;
    box-shadow: 0 8px 16px rgba(0,38,63,.28);
    transition: background .2s ease, transform .2s ease;
    z-index: 100;
}
.service-arrow:hover { background: var(--c-accent); color: #fff; transform: translateY(-2px); }
.service-body {padding: 10px;position: absolute;bottom: 0;z-index: 10;background: url(../images/bg-dichvu.png) no-repeat left bottom;padding-right: 25px;height: 50%;display: flex;flex-direction: column;justify-content: flex-end;gap: 5px;padding-bottom: 20px;padding-left: 15px;background-size: contain;}
.service-title {margin: 0 0 6px;font-size: 19px;color: var(--c-primary);overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;padding-right: 40px;}
.service-desc {margin: 0;font-size: .875rem;color: var(--c-muted);overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;font-size: 13px;font-weight: 500;padding-right: 40px;width: 100%;/* flex: 1; */}

/* ================================================== HEADER ========= */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
    padding-top: 10px;
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}
.header-brand {flex: 0 0 auto;}
.header-brand img { height: 62px; width: auto; }

/* Bên phải logo: 2 hàng căn phải */
.header-right {
    flex: 1 1 auto; min-width: 0;
    display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.header-top { display: flex; align-items: center; gap: 14px; }
.header-nav-row { display: flex; align-items: center; gap: 14px; }

/* Menu chính */
.main-nav {
    display: flex; align-items: center; justify-content: flex-end; gap: 2px; flex-wrap: wrap;
}
.main-nav > .menu-item > a {
    display: block;
    padding: 10px 24px;
    border-radius: 999px;
    color: var(--c-primary);
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    transition: color .2s ease, background .2s ease;
}
.main-nav > .menu-item > a:hover { color: var(--c-primary); }
.main-nav > .menu-item.is-active > a { color: var(--c-primary); text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; }
/* submenu (nếu có danh mục con hiện menu) */
.main-nav .menu-item { position: relative; }
.main-nav .submenu {
    position: absolute; top: 100%; left: 0; min-width: 210px;
    background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow);
    padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all .2s ease; z-index: 20;
}
.main-nav .menu-item:hover > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav .submenu a { display: block; padding: 8px 12px; border-radius: 8px; color: var(--c-text); font-size: .9rem; }
.main-nav .submenu a:hover { background: var(--c-bg-soft); color: var(--c-primary); }

/* Actions bên phải: pill điện thoại + nút Đặt lịch */
.header-actions { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.header-phone {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 18px; border-radius: 999px;
    background: var(--c-primary); color: #fff; font-weight: 600; font-size: .875rem;
}
.header-phone:hover { background: var(--c-primary-dark); color: #fff; }
.header-phone i { color: #fff; }
.btn-book {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px; border-radius: 999px;
    background: var(--c-accent); color: #fff; font-weight: 600; font-size: .8125rem;
    text-transform: uppercase; letter-spacing: .3px; white-space: nowrap;
    box-shadow: 0 8px 20px rgba(195,153,81,.34);
    transition: background .2s ease, transform .2s ease;
}
.btn-book:hover { background: var(--c-accent-dark); color: #fff; transform: translateY(-2px); }
/* Icon trang chủ (đầu hàng menu) */
.header-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--c-primary);
    font-size: 1.05rem;
    transition: color .2s ease;
}
.header-home:hover, .header-home.is-active { color: var(--c-primary); }

.mobile-menu-btn {
    display: none; margin-left: auto;
    width: 44px; height: 44px; border-radius: 12px;
    border: 0; background: var(--c-bg-soft); color: var(--c-primary); font-size: 18px;
}

/* Trạng thái cuộn / trang con: header nền trắng */
.site-header.is-scrolled,
.site-header.is-inner {
    position: fixed;
    background: transparent;
    box-shadow: none;
    padding-top: 10px;
}
.site-header.is-scrolled .header-brand img,
.site-header.is-inner .header-brand img {height: 70px;}
.site-header.is-scrolled{background-color: #fff;box-shadow: 1px 1px 10px 1px #13121230;padding-top: 5px;padding-bottom: 5px;}
.site-header.is-scrolled .header-brand img{height: 60px;}
.site-header.is-scrolled .header-top{display: none !important;}
/* ---- Chỗ viết CSS riêng cho header khi cuộn trang ----
   .site-header.is-scrolled     { }   (đã cuộn quá 80px)
   .site-header.is-scroll-down  { }   (đang cuộn xuống)
   .site-header.is-scroll-up    { }   (đang cuộn lên)
   ------------------------------------------------------ */

/* Đẩy nội dung trang con xuống dưới header cố định */
.page-body-offset {padding-top: 0;}

/* Offcanvas mobile */
.site-nav-shell .offcanvas-header { border-bottom: 1px solid var(--c-border); }
.mobile-menu-logo img {height: 50px;width: auto;}
.nav-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }

/* ================================================== FOOTER ========= */
.site-footer { background: var(--c-navy); color: rgba(255,255,255,.75); }
.footer-main { padding-block: clamp(40px, 6vw, 64px) 36px; }
.footer-brand img { height: 66px; width: auto; margin-bottom: 16px; }
.footer-about { color: rgba(255,255,255,.72); font-size: .9375rem; margin-bottom: 20px; max-width: 340px; }

.footer-title {
    color: #fff; font-size: 1.0625rem; text-transform: uppercase; letter-spacing: .5px;
    padding-bottom: 12px; margin-bottom: 20px; position: relative;
}
.footer-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 42px; height: 2px; background: var(--c-accent); }

.footer-contact p { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: .9375rem; }
.footer-contact i { color: var(--c-accent); margin-top: 4px; flex: 0 0 16px; }
.footer-contact a { color: rgba(255,255,255,.75); }
.footer-contact a:hover { color: #fff; }

.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.75); font-size: .9375rem; display: inline-flex; align-items: center; gap: 8px; }
.footer-links a::before { content: "\f105"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--c-accent); font-size: .75rem; }
.footer-links a:hover { color: #fff; }

.socials { display: flex; gap: 10px; }
.socials a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,.1); color: #fff; transition: background .2s ease, transform .2s ease;
}
.socials a:hover { background: var(--c-accent); transform: translateY(-2px); }

.footer-map iframe, .map-box iframe { display: block; width: 100%; height: 200px; border: 0; border-radius: var(--radius-sm); }
.map-box { border-radius: var(--radius-sm); overflow: hidden; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); background: var(--c-navy-dark); }
.footer-bottom .container { padding-block: 16px; }
.copyright { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px; font-size: .875rem; color: rgba(255,255,255,.6); text-align: center; }
.copyright a { color: rgba(255,255,255,.85); }
.copyright a:hover { color: #fff; }

/* ============================================ Floating CTA ========= */
.float-cta { position: fixed; right: 16px; bottom: 16px; z-index: 1050; display: flex; flex-direction: column; gap: 12px; }
.float-cta-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 50%; color: #fff; font-size: 1.15rem;
    box-shadow: var(--shadow); position: relative;
}
.float-cta-phone { background: var(--c-primary); }
.float-cta-zalo { background: #0068ff; }
.float-cta-quote { background: var(--c-accent); }
.float-cta-btn img { width: 30px; height: 30px; }
.float-cta-text, .float-cta-ring { display: none; }
.float-cta-btn::after {
    content: ""; position: absolute; inset: 0; border-radius: 50%;
    border: 2px solid currentColor; opacity: .5; animation: ctaPulse 1.8s ease-out infinite;
}
@keyframes ctaPulse { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.5); opacity: 0; } }

/* ================================================ Page hero (subpage banner) */
.page-hero {
    position: relative; background: var(--c-primary) center / cover no-repeat; color: #fff; text-align: center;
}
.page-hero .container {position: relative;z-index: 1;padding-block: clamp(48px, 7vw, 84px);padding-top: 206px;z-index: 100;}
.page-hero::before {content: "";inset: 0;position: absolute;top: 0;left: 0;right: 0;height: 100%;z-index: 1;background: linear-gradient(to bottom, rgb(255 255 255 / 52%) 0%, rgba(255, 255, 255, .8) 42%, rgba(255, 255, 255, 0) 100%);pointer-events: none;}
.page-hero-plain::before { background: linear-gradient(120deg, var(--c-navy), var(--c-primary)); }
.page-hero-title {color: var(--c-primary);text-transform: uppercase;font-size: clamp(1.6rem, 4vw, 2.4rem);margin-bottom: .4em;font-weight: 800;}
.breadcrumb-nav { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 8px; font-size: .9rem; color: rgba(255,255,255,.8); }
.breadcrumb-nav a {color: var(--c-muted);font-weight: 600;font-size: 16px;}
.breadcrumb-nav a:hover { color: #fff; }
.breadcrumb-nav .sep {color: var(--c-muted);}
.breadcrumb-nav .current {color: var(--c-primary);font-weight: 600;font-size: 16px;}

/* ==================================================== Responsive === */
@media (max-width: 1199.98px) {
    .main-nav > .menu-item > a { padding: 10px 12px; font-size: .9rem; }
}
@media (max-width: 991.98px) {
    :root { --header-h: 70px; }
    /* header-top & header-search đã ẩn bằng class d-lg-*; giữ header-right để offcanvas hoạt động */
    .header-right { flex-direction: row; justify-content: flex-end; }
    .mobile-menu-btn { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; }
    /* Menu -> offcanvas: chữ tối trên nền trắng */
    .site-nav-shell .main-nav { flex-direction: column; align-items: stretch; gap: 2px; }
    .site-nav-shell .main-nav > .menu-item > a {color: #fff;padding: 12px 14px;border-radius: 10px;text-transform: uppercase;}
    .site-nav-shell .main-nav > .menu-item > a:hover { background: var(--c-bg-soft); color: var(--c-primary); }
    .site-nav-shell .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding-left: 12px; }
}
@media (max-width: 575.98px) {
    .header-brand img { height: 46px; }
    .btn-book span.btn-book-text { display: none; }
    .float-cta-btn { width: 46px; height: 46px; font-size: 1rem; }
}
.offcanvas-body{background-color: var(--c-primary-dark);}
.hp-field{display:none;}
textarea.form-control{border-radius: 10px !IMPORTANT;}