/* ==========================================================================
   BAGUS BALI TOUR — "Tropical Prestige" (Tailwind companion styles)
   Desain mengikuti template: Material 3 tokens, glassmorphism, island layers.
   Tailwind CDN menangani utilitas; file ini menambah komponen & compat.
   ========================================================================== */

/* ---- Material Symbols baseline ---- */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    user-select: none;
    vertical-align: middle;
}

/* ---- Glassmorphism (sesuai template) ---- */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ---- Effect helpers (sesuai template) ---- */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hover-lift:hover {
    transform: translateY(-8px);
}

.island-layer {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.island-layer:hover {
    transform: translateY(-8px);
}

.gradient-text {
    background: linear-gradient(135deg, #003667 0%, #0a4d8c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-gradient {
    background: linear-gradient(to bottom, rgba(0, 54, 103, 0.45), rgba(0, 54, 103, 0.08));
}

.luxury-shadow {
    box-shadow: 0 20px 40px -10px rgba(10, 77, 140, 0.08);
}

/* ---- Navbar scroll state (dikontrol app.js via .navbar-bbt) ---- */
.navbar-bbt {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.navbar-bbt.scrolled {
    background: rgba(255, 255, 255, 0.92) !important;
    box-shadow: 0 8px 30px rgba(10, 77, 140, 0.12) !important;
}

/* ---- Small-screen layout safeguards ---- */
@media (max-width: 1279.98px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 639.98px) {
    .home-hero-content {
        padding-top: 2rem;
    }
    .navbar-inner {
        padding: 0.5rem 0.75rem;
    }
    .navbar-brand {
        gap: 0.35rem;
        min-width: 0;
    }
    .navbar-brand-logo {
        height: 1.75rem;
    }
    .navbar-brand-name {
        font-size: 1rem;
        line-height: 1.2;
    }
    .navbar-actions {
        gap: 0.3rem;
    }
    .navbar-booking {
        padding: 0.42rem 0.65rem;
        font-size: 0.7rem;
        letter-spacing: 0.02em;
    }
    #main-nav [data-bs-target="#mobileMenu"] {
        padding: 0.3rem;
    }
}

@media (max-width: 380px) {
    .navbar-brand-name {
        display: block;
        max-width: 4.5rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* ---- Selection (sesuai template) ---- */
::selection {
    background: var(--tp-gold, #fed65b);
    color: var(--tp-navy, #003667);
}

/* ---- Scrollbar halus ---- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #eff4ff; }
::-webkit-scrollbar-thumb { background: #c2c6d2; border-radius: 9999px; }
::-webkit-scrollbar-thumb:hover { background: #a5c8ff; }

/* ==========================================================================
   Bootstrap-JS compat (komponen JS tetap dipakai, CSS-nya tidak dimuat lagi)
   ========================================================================== */

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    z-index: 1000;
    min-width: 12rem;
    display: none;
    background: #ffffff;
    border: 1px solid rgba(194, 198, 210, 0.5);
    border-radius: 1rem;
    box-shadow: 0 20px 40px -10px rgba(10, 77, 140, 0.15);
    padding: 0.5rem;
    margin-top: 0.5rem;
}
.dropdown-menu.show { display: block; }
.dropdown-menu-end { right: 0; left: auto; }
.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.6rem 0.9rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    color: #424750;
    transition: background 0.2s ease, color 0.2s ease;
}
.dropdown-item:hover { background: #e5eeff; color: #003667; }
.dropdown-item.text-danger:hover { background: #ffdad6; color: #93000a; }
.dropdown-divider { height: 1px; margin: 0.5rem 0; background: rgba(194, 198, 210, 0.5); }

/* Accordion / Collapse */
.collapse { visibility: visible !important; }
.collapse:not(.show) { display: none; }
.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}
.accordion-item {
    background: #ffffff;
    border: 1px solid rgba(194, 198, 210, 0.4);
    border-radius: 1rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.accordion-button {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 1.1rem 1.25rem;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #0b1c30;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.accordion-button::after {
    content: 'add';
    font-family: 'Material Symbols Outlined';
    font-size: 1.4rem;
    color: #735c00;
    transition: transform 0.3s ease;
}
.accordion-button:not(.collapsed)::after {
    content: 'remove';
}
.accordion-body { padding: 0 1.25rem 1.25rem; color: #424750; line-height: 1.6; }

/* Carousel (hero) */
.carousel { position: relative; }
#heroCarousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
    height: 100%;
}
.carousel-inner { position: relative; overflow: hidden; width: 100%; }
.carousel-item { display: none; position: relative; }
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev { display: block; }
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end { opacity: 1; }
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end { opacity: 0; }
.carousel-indicators {
    position: absolute;
    bottom: 1.25rem;
    left: 0;
    right: 0;
    z-index: 30;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}
.carousel-indicators button {
    width: 2rem;
    height: 0.35rem;
    border: 0;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease;
}
.carousel-indicators button.active { background: #fed65b; width: 3rem; }
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}
.carousel-control-prev:hover,
.carousel-control-next:hover { background: rgba(255, 255, 255, 0.4); }
.carousel-control-prev { left: 1rem; }
.carousel-control-next { right: 1rem; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* Modal (gallery lightbox) */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1055;
    display: none;
    overflow-y: auto;
}
.modal.show { display: block; }
.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(5, 20, 40, 0.75);
    backdrop-filter: blur(6px);
}
.modal-dialog {
    position: relative;
    max-width: 60rem;
    margin: 1.75rem auto;
    padding: 0 1rem;
}
.modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
    display: flex;
    align-items: center;
}
.modal-content {
    background: #ffffff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(10, 77, 140, 0.35);
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(194, 198, 210, 0.4);
}
.modal-title { font-family: 'Be Vietnam Pro', sans-serif; font-weight: 600; }
.btn-close {
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 9999px;
    background: #e5eeff;
    color: #003667;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.2s ease;
}
.btn-close:hover { background: #d3e4fe; }
.btn-close-white { background: rgba(255, 255, 255, 0.2); color: #fff; }
.btn-close-white:hover { background: rgba(255, 255, 255, 0.35); }

/* Badge helper (dipakai helper service_type_badge / booking_status_badge) */
.badge {
    display: inline-block;
    padding: 0.35em 0.75em;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    border-radius: 9999px;
    white-space: nowrap;
}
.rounded-pill { border-radius: 9999px !important; }
.text-bg-danger { background: #ffdad6; color: #93000a; }
.text-bg-info { background: #d3e4fe; color: #003667; }
.text-bg-success { background: #d7f5e3; color: #1e6b3f; }
.text-bg-warning { background: #ffe088; color: #574500; }
.text-bg-secondary { background: #e5eeff; color: #424750; }
.text-warning { color: var(--tp-gold, #fed65b) !important; }
.text-danger { color: #ba1a1a !important; }
.text-success { color: #1e7d4f !important; }
.text-muted { color: #727781 !important; }
.text-gold { color: var(--tp-gold, #fed65b) !important; }

/* ---- Konten rich-text (dari CMS) ---- */
.detail-content,
.static-page-content,
.blog-detail-content,
.promo-detail-content,
.about-content {
    color: #424750;
    line-height: 1.75;
    font-size: 1rem;
}
.detail-content h2, .detail-content h3, .detail-content h4,
.static-page-content h2, .static-page-content h3, .static-page-content h4,
.blog-detail-content h2, .blog-detail-content h3, .blog-detail-content h4,
.promo-detail-content h2, .promo-detail-content h3, .promo-detail-content h4,
.about-content h2, .about-content h3, .about-content h4 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 700;
    color: #003667;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}
.detail-content p, .detail-content ul, .detail-content ol,
.static-page-content p, .static-page-content ul, .static-page-content ol,
.blog-detail-content p, .blog-detail-content ul, .blog-detail-content ol,
.promo-detail-content p, .promo-detail-content ul, .promo-detail-content ol,
.about-content p, .about-content ul, .about-content ol {
    margin-bottom: 1rem;
}
.blog-detail-content p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}
.detail-content ul, .detail-content ol,
.static-page-content ul, .static-page-content ol,
.blog-detail-content ul, .blog-detail-content ol,
.promo-detail-content ul, .promo-detail-content ol,
.about-content ul, .about-content ol {
    padding-left: 1.5rem;
    list-style: disc;
}
.detail-content img,
.static-page-content img,
.blog-detail-content img,
.promo-detail-content img,
.about-content img {
    border-radius: 1rem;
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
}
.detail-content blockquote,
.static-page-content blockquote,
.blog-detail-content blockquote {
    border-left: 4px solid #fed65b;
    padding: 0.75rem 1.25rem;
    margin: 1.25rem 0;
    background: #eff4ff;
    border-radius: 0 1rem 1rem 0;
    font-style: italic;
}

/* ---- AOS ---- */
[data-aos] { transition-property: transform, opacity; }

/* ---- Rating stars (bootstrap-icons) ---- */
.review-stars i { color: #e9c349; font-size: 1.1rem; margin-right: 0.1rem; }
.rating-summary-stars i { color: #e9c349; font-size: 1.5rem; margin-right: 0.15rem; }

/* ---- Legacy view compatibility ----
   Several public views still use Bootstrap-oriented markup while the site is
   styled with Tailwind. These component styles keep those pages consistent. */
.section { padding: 4rem 1.5rem; }
.container { width: min(100%, 1280px); margin: 0 auto; }
.row { display: flex; flex-wrap: wrap; margin: -0.75rem; }
.row > [class*='col-'] { width: 100%; padding: 0.75rem; }
.g-3 { margin: -0.5rem; }
.g-3 > [class*='col-'] { padding: 0.5rem; }
.g-5 { margin: -1.5rem; }
.g-5 > [class*='col-'] { padding: 1.5rem; }
.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }
.d-flex { display: flex; }
.gap-3 { gap: 1rem; }
.w-100 { width: 100%; }
.text-center { text-align: center; }
.text-white { color: #fff; }
.bg-dark { background: #0b1c30; }
.border-0 { border: 0; }
.p-0 { padding: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.my-4 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.small { font-size: 0.875rem; }
.lead { font-size: 1.125rem; line-height: 1.7; }
.list-unstyled { margin: 0; padding: 0; list-style: none; }

.form-card,
.auth-card,
.contact-info,
.blog-detail,
.sidebar {
    border: 1px solid rgba(194, 198, 210, 0.5);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px -10px rgba(10, 77, 140, 0.1);
}
.form-card { padding: clamp(1.5rem, 4vw, 3rem); }
.auth-section { min-height: 62vh; display: flex; align-items: center; }
.auth-card { padding: clamp(1.5rem, 4vw, 2.5rem); }
.auth-card .form-control {
    min-height: 3.35rem;
    border: 1.5px solid #c2c6d2;
    border-radius: 0.9rem;
    background: #fff !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.auth-card .form-control::placeholder { color: #727781; opacity: 1; }
.auth-card .form-control:focus {
    border-color: #0a4d8c;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(165, 200, 255, 0.42);
}
.booking-form .form-control,
.booking-form .form-select {
    min-height: 3.35rem;
    border: 1.5px solid #c2c6d2;
    border-radius: 0.9rem;
    background: #fff !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.booking-form textarea.form-control {
    min-height: 7.5rem;
    padding-top: 0.85rem;
}
.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: #0a4d8c;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(165, 200, 255, 0.42);
}
.booking-form .input-group .form-control { border-radius: 0.9rem 0 0 0.9rem; }
.booking-form .input-group .btn { border-radius: 0 0.9rem 0.9rem 0; }
.booking-form .form-label { margin-bottom: 0.55rem; }
.account-profile-form .form-control {
    min-height: 3.35rem;
    border: 1.5px solid #c2c6d2;
    border-radius: 0.9rem;
    background: #fff !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.account-profile-form .form-control:focus {
    border-color: #0a4d8c;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(165, 200, 255, 0.42);
}
.account-profile-form .form-control:disabled { background: #eff4ff !important; color: #727781; }
.auth-icon {
    display: grid;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.25rem;
    place-items: center;
    border-radius: 9999px;
    background: #d4e3ff;
    color: #003667;
    font-size: 2rem;
}
.auth-card h3, .form-card h3, .contact-info h3 {
    font-family: 'Be Vietnam Pro', sans-serif;
    color: #003667;
    font-weight: 700;
}
.form-label { display: inline-block; margin-bottom: 0.5rem; font-weight: 600; color: #0b1c30; }
.form-control,
.form-select {
    display: block;
    width: 100%;
    min-height: 3rem;
    padding: 0.7rem 0.85rem;
    border: 1px solid #c2c6d2;
    border-radius: 0.75rem;
    background: #fff;
    color: #0b1c30;
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
textarea.form-control { min-height: auto; resize: vertical; }
.form-control:focus,
.form-select:focus {
    border-color: #285f9f;
    outline: 0;
    box-shadow: 0 0 0 4px rgba(165, 200, 255, 0.45);
}
.form-text { font-size: 0.875rem; color: #727781; }
.input-group { display: flex; }
.input-group .form-control { border-radius: 0.75rem 0 0 0.75rem; }
.input-group .btn { border-radius: 0 0.75rem 0.75rem 0; }
.btn {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 9999px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: #fed65b; color: #241a00; box-shadow: 0 8px 18px rgba(116, 92, 0, 0.2); }
.btn-gold:hover { background: #e9c349; }
.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c4a 100%);
    color: #fff;
    box-shadow: 0 10px 22px rgba(18, 140, 74, 0.28);
}
.btn-whatsapp:hover {
    background: linear-gradient(135deg, #2ee875 0%, #128c4a 100%);
    color: #fff;
    box-shadow: 0 14px 26px rgba(18, 140, 74, 0.36);
}
.btn-outline-gold { border-color: #735c00; background: #fff; color: #735c00; }
.btn-lg { min-height: 3.25rem; font-size: 1.05rem; }
.text-decoration-none { text-decoration: none; }
.fw-semibold { font-weight: 600; }
.text-danger { color: #ba1a1a !important; }
.text-warning { color: #735c00 !important; }
.text-success { color: #1e7d4f !important; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.filter-chip {
    border: 1px solid #c2c6d2;
    border-radius: 9999px;
    padding: 0.55rem 1rem;
    color: #424750;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.filter-chip:hover, .filter-chip.active { border-color: #003667; background: #003667; color: #fff; }
.gallery-item {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 1rem;
    aspect-ratio: 1 / 1;
    cursor: zoom-in;
    background: #d3e4fe;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item figcaption {
    position: absolute;
    inset: auto 0 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    color: #fff;
    background: linear-gradient(transparent, rgba(0, 28, 58, 0.85));
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover figcaption { transform: translateY(0); }
.empty-state { padding: 4rem 1.5rem; border: 1px dashed #c2c6d2; border-radius: 1.5rem; }

/* Area akun pelanggan */
.account-nav,
.account-panel {
    border: 1px solid rgba(194, 198, 210, 0.55);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 38px -18px rgba(10, 77, 140, 0.2);
}
.account-nav { overflow: hidden; padding: 0.75rem; }
.account-nav-user { display: flex; align-items: center; gap: 0.8rem; padding: 1rem; border-bottom: 1px solid rgba(194, 198, 210, 0.55); }
.account-nav .avatar { display: grid; width: 2.75rem; height: 2.75rem; flex: 0 0 auto; place-items: center; border-radius: 9999px; background: #d4e3ff; color: #003667; font-size: 1.2rem; }
.account-nav-user strong, .account-nav-user small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.account-nav-user small { margin-top: 0.15rem; max-width: 10rem; }
.account-nav ul { margin: 0.75rem 0 0; }
.account-nav li + li { margin-top: 0.2rem; }
.account-nav a { display: flex; align-items: center; gap: 0.7rem; padding: 0.75rem 0.85rem; border-radius: 0.9rem; color: #424750; font-weight: 600; text-decoration: none; transition: 0.2s ease; }
.account-nav a:hover { background: #eff4ff; color: #003667; }
.account-nav a.active { background: #003667; color: #fff; box-shadow: 0 8px 18px rgba(0, 54, 103, 0.18); }
.account-panel { padding: clamp(1.25rem, 3vw, 2.25rem); }
.account-panel h3 { color: #003667; font-family: 'Be Vietnam Pro', sans-serif; font-weight: 700; }
.mini-stat { display: flex; min-height: 7.5rem; flex-direction: column; justify-content: center; padding: 1.1rem; border: 1px solid #d8e4f3; border-radius: 1.1rem; background: #eff4ff; }
.mini-stat .num { color: #003667; font-size: 1.75rem; font-weight: 800; line-height: 1; }
.mini-stat .label { margin-top: 0.55rem; color: #727781; font-size: 0.8rem; font-weight: 700; }
.mini-stat.pending { background: #fff4d6; border-color: #f6d98e; }.mini-stat.confirmed { background: #e6f3ff; border-color: #a5c8ff; }.mini-stat.done { background: #e4f4e8; border-color: #acd8b5; }
.account-panel .table { margin-bottom: 0; overflow: hidden; border: 1px solid #e0e4ec; border-radius: 1rem; }
.account-panel .table th { border-bottom: 1px solid #d8e4f3; background: #eff4ff; color: #424750; font-size: 0.76rem; letter-spacing: 0.04em; text-transform: uppercase; }
.account-panel .table td, .account-panel .table th { padding: 0.95rem 1rem; vertical-align: middle; }
@media (max-width: 767px) { .account-nav { margin-bottom: 0.25rem; }.account-nav ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.2rem; }.account-nav li + li { margin-top: 0; }.account-nav a { font-size: 0.85rem; }.account-nav-user small { max-width: 16rem; } }
.display-3 { font-size: 3rem; }
.modal-body img { display: block; width: 100%; max-height: 75vh; object-fit: contain; }

.contact-info { padding: clamp(1.5rem, 4vw, 2.5rem); height: 100%; }
.contact-info li { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(194, 198, 210, 0.45); }
.contact-info li:last-child { border-bottom: 0; }
.contact-info p { margin: 0.25rem 0 0; color: #727781; }
.contact-info a { color: #003667; }
.contact-info .btn-whatsapp,
.contact-info .btn-whatsapp:hover { color: #fff; }
.service-search-panel { display: grid; grid-template-columns: minmax(0, 1fr) minmax(10rem, .36fr) auto; gap: .75rem; padding: .8rem; border: 1px solid #d7e3f2; border-radius: 1.2rem; background: rgba(255,255,255,.9); box-shadow: 0 16px 32px -24px rgba(0,54,103,.4); }
.service-search-panel__field { display: flex; align-items: center; gap: .65rem; min-height: 3.25rem; padding: 0 .9rem; border: 1.5px solid #c2cfe0; border-radius: .9rem; background: #fff; color: #0a4d8c; }
.service-search-panel__field input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: #0b1c30; font: inherit; }
.service-search-panel__field:focus-within { border-color: #0a4d8c; box-shadow: 0 0 0 4px rgba(165,200,255,.35); }
.service-search-panel__select { min-height: 3.25rem; border: 1.5px solid #c2cfe0; border-radius: .9rem; background: #fff; color: #0b1c30; padding: .6rem .8rem; font: inherit; }
.service-search-panel__button { display: inline-flex; align-items: center; justify-content: center; gap: .4rem; min-height: 3.25rem; padding: .65rem 1.25rem; border: 0; border-radius: .9rem; background: #003667; color: #fff; font-weight: 700; transition: .2s ease; }
.service-search-panel__button:hover { background: #0a4d8c; transform: translateY(-1px); }
@media (max-width: 640px) { .service-search-panel { grid-template-columns: 1fr; }.service-search-panel__button { width: 100%; } }
.language-switcher { display: inline-flex; align-items: center; gap: .3rem; border: 1px solid #c2c6d2; border-radius: 9999px; background: rgba(255,255,255,.78); color: #003667; padding: .48rem .68rem; font-size: .76rem; font-weight: 700; letter-spacing: .04em; transition: .2s ease; }
.language-switcher:hover { border-color: #0a4d8c; background: #eff4ff; }
.contact-icon { display: grid; flex: 0 0 auto; width: 2.5rem; height: 2.5rem; place-items: center; border-radius: 0.75rem; background: #d4e3ff; color: #003667; }
.contact-form-card { border-color: #dbe5f3; background: linear-gradient(135deg, #ffffff 0%, #ffffff 72%, #fff8df 100%); box-shadow: 0 24px 50px -24px rgba(0, 54, 103, .28); }
.contact-message-form { padding-top: .25rem; }
.contact-message-form .form-label { margin-bottom: .55rem; color: #132a45; font-size: .9rem; font-weight: 700; }
.contact-message-form .form-control { min-height: 3.25rem; border: 1.5px solid #cbd8e9; border-radius: .9rem; background: rgba(250, 252, 255, .94); box-shadow: inset 0 1px 1px rgba(11, 28, 48, .02); }
.contact-message-form .form-control::placeholder { color: #7a8494; opacity: 1; }
.contact-message-form .form-control:focus { border-color: #0a4d8c; background: #fff; box-shadow: 0 0 0 4px rgba(165, 200, 255, .42); }
.contact-message-form .relative > .material-symbols-outlined { color: #416180; transition: color .2s ease; }
.contact-message-form .relative:focus-within > .material-symbols-outlined { color: #003667; }
.contact-message-form textarea.form-control { min-height: 9.25rem; padding-top: .9rem; line-height: 1.6; resize: vertical; }
.contact-message-form .btn-gold { min-height: 3.25rem; border-radius: 1rem; padding-inline: 1.4rem; font-weight: 700; }
@media (max-width: 575.98px) { .contact-form-card { padding: 1.35rem; }.contact-message-form textarea.form-control { min-height: 8rem; } }
.map-section iframe { display: block; width: 100%; min-height: 24rem; border: 0; }

.booking-summary { padding: 1rem; border: 1px solid rgba(194, 198, 210, 0.5); border-radius: 1rem; background: #eff4ff; }
.booking-summary-img { width: 5rem; height: 5rem; border-radius: 0.75rem; object-fit: cover; }
.booking-total { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 0.5rem 1rem; margin: 0.5rem 0 1.5rem; padding: 1.25rem; border-radius: 1rem; background: #eff4ff; color: #003667; }
.booking-total strong { font-size: 1.5rem; }

.blog-detail { padding: clamp(1.5rem, 4vw, 3rem); }
.blog-detail-meta { display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; margin-bottom: 1.5rem; color: #727781; font-size: 0.9rem; }
.blog-detail-hero { width: 100%; max-height: 30rem; border-radius: 1rem; object-fit: cover; }
.blog-detail-share { display: flex; align-items: center; gap: 0.75rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #d3e4fe; }
.blog-detail-share a { display: grid; width: 2.5rem; height: 2.5rem; place-items: center; border-radius: 9999px; background: #eff4ff; color: #003667; text-decoration: none; }
.sidebar { padding: 1.5rem; }
.sidebar h4 { margin: 0 0 1rem; color: #003667; font-family: 'Be Vietnam Pro', sans-serif; }
.sidebar-post { display: flex; gap: 0.75rem; padding: 0.9rem 0; border-top: 1px solid #d3e4fe; color: #0b1c30; text-decoration: none; }
.sidebar-post img { width: 4.5rem; height: 4.5rem; flex: 0 0 auto; border-radius: 0.75rem; object-fit: cover; }
.sidebar-post strong, .sidebar-post small { display: block; }
.sidebar-post small { margin-top: 0.3rem; color: #727781; }

@media (min-width: 576px) {
    .col-6 { width: 50% !important; }
}
@media (min-width: 768px) {
    .section { padding-top: 5rem; padding-bottom: 5rem; }
    .col-md-4 { width: 33.333333% !important; }
    .col-md-6, .col-md-8 { width: 50% !important; }
    .col-md-8 { width: 66.666667% !important; }
    .col-md-3 { width: 25% !important; }
    .col-md-9 { width: 75% !important; }
}
@media (min-width: 992px) {
    .col-lg-3 { width: 25% !important; }
    .col-lg-4 { width: 33.333333% !important; }
    .col-lg-5 { width: 41.666667% !important; }
    .col-lg-6 { width: 50% !important; }
    .col-lg-7 { width: 58.333333% !important; }
    .col-lg-8 { width: 66.666667% !important; }
    .col-lg-9 { width: 75% !important; }
}
