/* Shared frontend page components. Keep page-specific colors and layouts in each view. */
.page-hero {
   position: relative;
   min-height: clamp(400px, 45vw, 440px);
   display: flex;
   align-items: center;
   overflow: hidden;
 
   width: 100%; 
   padding: 0 !important;
   background-color: #0b2430;
   color: #fff
}

.page-hero__background {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   object-fit: cover
}

.page-hero__overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(90deg, rgba(7, 28, 36, .92), rgba(7, 28, 36, .56) 50%, rgba(7, 28, 36, .12)), linear-gradient(0deg, rgba(7, 28, 36, .45), transparent 65%)
}

.page-hero__inner {
   position: relative;
   z-index: 1
}

.page-hero__breadcrumb {
   display: flex;
   align-items: center;
   gap: 10px;
   margin-bottom: 25px;
   color: rgba(255, 255, 255, .72);
   font-size: 12px
}

.page-hero__breadcrumb a {
   color: #fff;
   text-decoration: none
}

.page-hero__breadcrumb i {
   font-size: 9px;
   color: rgba(255, 255, 255, .58)
}

.page-hero__content {
  /* max-width: 770px */
}

.page-hero__kicker {
   display: inline-flex;
   font-size: 10px;
   font-weight: 800;
   letter-spacing: .18em;
   color: #e3aa45;

 
    align-items: center;
    gap: 7px;
    padding: 6px 11px;
    border-radius: 999px;
    background: var(--terracotta);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
 
}

.page-hero__content h1 {
   margin: 8px 0 14px;
   font-size: clamp(40px, 4vw, 55px);

   line-height: 1.12;
   color: #fff;
   font-weight: 700
}

.page-hero__content p {
 /*  max-width: 590px;*/
   margin: 0;
   color: rgba(255, 255, 255, .82);
   font-size: 17px;
   line-height: 1.7
}

.page-hero__features {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   margin-top: 20px
}

.site-hero-share {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 10px;
    background: rgba(7, 28, 37, .34);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: .9rem;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.page-hero__features .site-hero-share,
.hero-actions .site-hero-share {
    margin-top: 0;
}

.page-hero__features .site-hero-share {
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    font-size: 10px;
}

.hero-actions .site-hero-share {
    padding: 11px 15px;
    border-radius: 10px;
    background: rgba(7, 28, 37, .45);
    font-size: 13px;
}

.site-hero-share:hover,
.site-hero-share:focus-visible {
    border-color: var(--terracotta);
    background: var(--terracotta);
    color: #fff;
    outline: 0;
    transform: translateY(-1px);
}

.hero .site-hero-share {
    border-color: rgba(255, 255, 255, .44);
    background: rgba(7, 28, 37, .5);
}

.page-hero__features>span {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 7px 10px;
   border: 1px solid rgba(255, 255, 255, .25);
   border-radius: 999px;
   background: rgba(255, 255, 255, .1);
   font-size: 10px;
   color: rgba(255, 255, 255, .9)
}

.page-hero__features i {
   color: #e3aa45
}

@media(max-width:600px) {
   .page-hero {
      min-height: 390px
   }

   .page-hero__content h1 {
      font-size: clamp(38px, 11vw, 54px)
   }

   .page-hero__content p {
      font-size: 15px
   }
}

/* Canonical hero contract used by every inner page. Page-specific classes only
   provide the background image/decoration; structure and typography stay here. */




.page-hero__background,
.page-hero__image {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   object-fit: cover
}

.page-hero__overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(90deg, rgba(7, 28, 36, .92), rgba(7, 28, 36, .56) 50%, rgba(7, 28, 36, .12)), linear-gradient(0deg, rgba(7, 28, 36, .45), transparent 65%)
}

.page-hero__inner {
   position: relative;
   z-index: 2;
   width: min(calc(100% - 40px), var(--container, 1360px));
   margin-inline: auto;
  /* padding: clamp(72px, 10vw, 140px) 0 clamp(60px, 8vw, 92px);*/
   color: #fff
}

.page-hero__breadcrumb {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 10px;
   margin-bottom: 25px;
   color: rgba(255, 255, 255, .72);
   font-size: 12px
}

.page-hero__breadcrumb a {
   color: #fff;
   text-decoration: none
}

.page-hero__breadcrumb i {
   font-size: 9px;
   color: rgba(255, 255, 255, .58)
}

.page-hero__content {
 /*  max-width: 770px*/
}

.page-hero__kicker {
   display: inline-flex;
   margin-bottom: 8px;
   color: #e3aa45;
   font-size: 10px;
   font-weight: 800;
   letter-spacing: .18em
}

.page-hero h1,
.page-hero__content h1 {
  /* max-width: 900px;*/
   margin: 8px 0 14px;
   color: #fff; 
    font-size: clamp(40px, 4vw, 55px);
   font-weight: 700;
   line-height: 1.12
}

.page-hero h1 small,
.page-hero h1 span,
.page-hero__content h1 small,
.page-hero__content h1 span {
   display: block;
   font-size: .55em;
   font-weight: 500
}

.page-hero__intro,
.page-hero__content p {
 /*  max-width: 680px;*/
   margin: 0;
   color: rgba(255, 255, 255, .82);
   font-size: 17px;
   line-height: 1.7
}

.page-hero__meta {
   display: flex;
   flex-wrap: wrap;
   gap: 10px 25px;
   margin-top: 18px;
   color: rgba(255, 255, 255, .82);
   font-size: 14px
}

.page-hero__meta span {
   display: inline-flex;
   align-items: center;
   gap: 7px
}

.page-hero__meta i,
.page-hero__features i {
   color: #e3aa45
}

.page-hero__features {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   margin-top: 20px
}

.page-hero__features>span,
.page-hero__features>a {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 7px 10px;
   border: 1px solid rgba(255, 255, 255, .25);
   border-radius: 999px;
   background: rgba(255, 255, 255, .1);
   font-size: 10px;
   color: rgba(255, 255, 255, .9)
}

.page-hero--light {
   background: linear-gradient(120deg, #fbfaf5, #eef3ef);
   color: var(--navy, #0b2430)
}

.page-hero--light .page-hero__overlay {
   display: none
}

.page-hero--light .page-hero__inner {
   color: var(--navy, #0b2430)
}

.page-hero--light .page-hero__breadcrumb {
   color: #77878b
}

.page-hero--light .page-hero__breadcrumb a {
   color: var(--green, #0d665e)
}

.page-hero--light h1,
.page-hero--light .page-hero__content h1 {
   color: var(--navy, #0b2430)
}

.page-hero--light .page-hero__intro,
.page-hero--light .page-hero__content p {
   color: #697b81
}

@media(max-width:680px) {
   .page-hero__inner {
      width: min(calc(100% - 32px), var(--container, 1360px));
      padding: 62px 0 70px
   }

   .page-hero h1,
   .page-hero__content h1 {
      font-size: clamp(34px, 10vw, 52px)
   }

   .page-hero__intro,
   .page-hero__content p {
      font-size: 15px
   }

   .page-hero__meta {
      gap: 8px 14px;
      font-size: 13px
   }
}

/* Shared frontend layout styles moved from layouts/frontend.blade.php */
:root {
            --navy: #0b2430;
            --navy-2: #102f3c;
            --green: #3f6245;
            --cream: #f7f2e9;
            --cream-2: #fffaf2;
            --gold: #c89238;
            --gold-2: #e0ad55;
            --terracotta: #b75c37;
            --text: #202621;
            --muted: #6d746e;
            --line: #e8e0d3;
            --shadow: 0 12px 35px rgba(28, 38, 32, .08);
            --shadow-lg: 0 28px 70px rgba(11, 36, 48, .18);
            --radius: 18px;
            --container: 1360px
        }

        * {
            box-sizing: border-box
        }

        html {
            scroll-behavior: smooth
        }

        body {
            margin: 0;
            font-family: "Noto Sans Thai", system-ui, sans-serif;
            color: var(--text);
            background: #fffdfa;
            line-height: 1.65
        }

        body.modal-open {
            overflow: hidden
        }

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

        button,
        input,
        textarea {
            font: inherit
        }

        .container {
            width: min(calc(100% - 40px), var(--container));
            margin-inline: auto
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 82px;
            background: rgba(11, 36, 48, .97);
            color: #fff;
            box-shadow: 0 5px 24px rgba(11, 36, 48, .16);
            transition: .25s
        }

        .site-header.scrolled {
            height: 72px;
            background: rgba(11, 36, 48, .985)
        }

        .nav-wrap {
            height: 100%;
            display: flex;
            align-items: center;
            gap: 28px
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 11px;
            flex: 0 0 auto
        }

        .brand-mark {
            width: 45px;
            height: 45px;
            border: 1px solid rgba(224, 173, 85, .6);
            border-radius: 50%;
            display: grid;
            place-items: center;
            color: var(--gold-2);
            font-size: 22px
        }

        .brand-text {
            display: flex;
            align-items: baseline;
            gap: 4px;
            letter-spacing: 1px
        }

        .brand-text strong {
            font-family: "Playfair Display", serif;
            font-size: 24px
        }

        .brand-text span {
            color: var(--gold-2);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 3px
        }

        .main-nav {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 5px
        }

        .nav-link,
        .nav-dropdown>button {
            border: 0;
            background: transparent;
            color: rgba(255, 255, 255, .85);
            padding: 28px 9px;
            white-space: nowrap;
            font-size: 14px;
            cursor: pointer
        }

        .nav-link:hover,
        .nav-link.active,
        .nav-dropdown>button.active,
        .nav-dropdown>button:hover {
            color: var(--gold-2)
        }

        .nav-dropdown {
            position: relative
        }

        .nav-dropdown-menu {
            position: absolute;
            top: calc(100% - 8px);
            left: 0;
            width: 250px;
            padding: 9px;
            background: #fff;
            color: var(--text);
            border-radius: 14px;
            box-shadow: var(--shadow-lg);
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: .2s
        }

        .nav-dropdown:hover .nav-dropdown-menu,
        .nav-dropdown:focus-within .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: none
        }

        .nav-dropdown-menu a {
            display: block;
            padding: 9px 12px;
            border-radius: 9px;
            font-size: 13px
        }

        .nav-dropdown-menu a:hover,
        .nav-dropdown-menu a.active {
            background: var(--cream);
            color: var(--terracotta)
        }

        .mobile-language-switch {
            display: none
        }

        .mobile-account-switch {
            display: none
        }

        .nav-compact-actions {
            display: none
        }

        .nav-compact-service {
            display: none !important
        }


        .nav-actions {
            display: flex;
            align-items: center;
            gap: 6px
        }

        .icon-btn,
        .mobile-toggle {
            width: 40px;
            height: 40px;
            border: 0;
            border-radius: 50%;
            background: transparent;
            color: #fff;
            display: grid;
            place-items: center;
            cursor: pointer
        }

        .icon-btn:hover,
        .mobile-toggle:hover {
            background: rgba(255, 255, 255, .1);
            color: var(--gold-2)
        }

        .lang-switch {
            display: flex;
            align-items: center;
            margin-left: 2px;
            border: 1px solid rgba(255, 255, 255, .18);
            border-radius: 999px;
            overflow: hidden
        }

        .lang-switch a {
            padding: 7px 8px;
            font-size: 11px;
            font-weight: 700
        }

        .lang-switch a:hover {
            background: var(--gold);
            color: #fff
        }

        .mobile-toggle {
            display: none;
            align-items: center;
            width: auto;
            height: auto;
            min-width: 0;
            padding: 8px 4px;
            border-radius: 0;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: .08em;
            line-height: 1;
            white-space: nowrap;
            transition: color .18s ease
        }

        .mobile-toggle:hover {
            background: transparent
        }

        .mobile-toggle:focus-visible {
            outline: 2px solid var(--gold-2);
            outline-offset: 3px
        }

        .page-content {
            min-height: 45vh
        }

        .share-strip {
            padding: 28px 20px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            background: var(--cream-2);
            border-top: 1px solid var(--line)
        }

        .share-strip a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            border-radius: 999px;
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            transition: .2s
        }

        .share-strip a:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow)
        }

        .facebook {
            background: #1877f2
        }

        .twitter {
            background: #111
        }

        .line {
            background: #06c755
        }

        .site-footer {
            background: var(--navy);
            color: rgba(255, 255, 255, .75);
            padding: 64px 0 20px
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 48px
        }

        .footer-logo {
            color: var(--gold-2)
        }

        .footer-brand p {
            max-width: 360px;
            margin: 18px 0;
            font-size: 13px
        }

        .socials {
            display: flex;
            gap: 9px
        }

        .socials a {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, .15);
            display: grid;
            place-items: center;
            transition: .2s
        }

        .socials a:hover {
            color: var(--gold-2);
            border-color: var(--gold-2)
        }

        .footer-col {
            display: flex;
            flex-direction: column;
            gap: 8px;
            font-size: 13px
        }

        .footer-col h4 {
            margin: 0 0 8px;
            color: var(--gold-2);
            font-size: 15px
        }

        .footer-col a:hover {
            color: #fff
        }

        .footer-contact p {
            margin: 0
        }

        .footer-contact i {
            width: 22px;
            color: var(--gold-2)
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .1);
            margin-top: 45px;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            gap: 24px;
            font-size: 11px;
            color: rgba(255, 255, 255, .5)
        }

        .footer-bottom div {
            display: flex;
            gap: 24px
        }

        .footer-bottom a:hover {
            color: #fff
        }

        .language-selection-modal {
            position: fixed;
            inset: 0;
            z-index: 2100;
            display: grid;
            place-items: center;
            padding: 20px;
            background: rgba(7, 24, 31, .82);
            backdrop-filter: blur(8px);
            opacity: 0;
            visibility: hidden;
            transition: .25s
        }

        .language-selection-modal.show {
            opacity: 1;
            visibility: visible
        }

        .language-selection-panel {
            width: min(440px, 100%);
            padding: 38px 34px;
            border-radius: 24px;
            background: #fff;
            box-shadow: var(--shadow-lg);
            text-align: center;
            transform: translateY(18px);
            transition: .25s
        }

        .language-selection-modal.show .language-selection-panel {
            transform: none
        }

        .language-selection-kicker {
            margin: 0 0 9px;
            color: var(--gold);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .18em
        }

        .language-selection-panel h2 {
            margin: 0;
            color: var(--navy);
            font-size: 25px
        }

        .language-selection-description {
            margin: 12px 0 24px;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.7
        }

        .language-selection-actions {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px
        }

        .language-choice {
            display: flex;
            min-height: 78px;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 3px;
            border: 1px solid var(--line);
            border-radius: 14px;
            color: var(--navy);
            transition: border-color .18s ease, background-color .18s ease, transform .18s ease
        }

        .language-choice strong {
            font-size: 17px
        }

        .language-choice span {
            color: var(--muted);
            font-size: 12px
        }

        .language-choice:hover,
        .language-choice:focus-visible {
            border-color: var(--gold);
            background: var(--cream);
            transform: translateY(-2px);
            outline: none
        }
        .search-modal {
            position: fixed;
            inset: 0;
            z-index: 2000;
            background: rgba(7, 24, 31, .82);
            backdrop-filter: blur(8px);
            display: grid;
            place-items: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: .25s
        }

        .search-modal.show {
            opacity: 1;
            visibility: visible
        }

        .search-modal-panel {
            width: min(720px, 100%);
            background: #fff;
            border-radius: 24px;
            padding: 35px;
            box-shadow: var(--shadow-lg);
            transform: translateY(18px);
            transition: .25s
        }

        .search-modal.show .search-modal-panel {
            transform: none
        }

        .modal-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px
        }

        .modal-head h2 {
            margin: 0;
            color: var(--navy)
        }

        .modal-close {
            width: 40px;
            height: 40px;
            border: 0;
            border-radius: 50%;
            background: var(--cream);
            cursor: pointer
        }

        .search-form {
            display: flex;
            gap: 9px
        }

        .search-form input {
            flex: 1;
            min-width: 0;
            border: 1px solid var(--line);
            border-radius: 999px;
            padding: 13px 20px;
            outline: none
        }

        .search-form button {
            border: 0;
            border-radius: 999px;
            background: var(--gold);
            color: #fff;
            padding: 0 24px;
            cursor: pointer
        }

        .admin-panel {
            max-width: 480px
        }

        .admin-panel p {
            color: var(--muted)
        }

        .admin-panel>a {
            display: inline-flex;
            padding: 11px 20px;
            border-radius: 999px;
            background: var(--gold);
            color: #fff;
            font-weight: 700
        }

        @media (min-width:1181px) and (max-width:1439px) {
    .nav-actions .nav-account-action,
    .nav-actions .lang-switch {
        display: none
    }

    .main-nav > .nav-service-link {
        display: none
    }

    .nav-dropdown-menu a.nav-compact-service {
        display: block !important
    }

    .nav-compact-actions {
        display: block;
        margin-top: 6px;
        padding-top: 6px;
        border-top: 1px solid var(--line)
    }

    .nav-compact-action {
        display: block;
        width: 100%;
        border: 0;
        border-radius: 9px;
        background: transparent;
        color: var(--text);
        padding: 9px 12px;
        text-align: left;
        font-size: 13px;
        cursor: pointer
    }

    .nav-compact-action:hover {
        background: var(--cream);
        color: var(--terracotta)
    }

    .nav-compact-language {
        display: flex;
        gap: 8px;
        padding: 6px 12px 3px
    }

    .nav-compact-language a {
        flex: 1;
        border: 1px solid rgba(11, 36, 48, .25);
        border-radius: 8px;
        padding: 6px 8px;
        text-align: center;
        font-size: 12px;
        font-weight: 700
    }

    .nav-compact-language a:hover {
        border-color: var(--gold);
        color: var(--gold)
    }
}
@media(max-width:1180px) {
            .main-nav {
                position: fixed;
                top: 82px;
                left: 20px;
                right: 20px;
                display: none;
                flex-direction: column;
                align-items: stretch;
                background: #fff;
                color: var(--text);
                padding: 12px;
                border-radius: 0 0 18px 18px;
                box-shadow: var(--shadow-lg);
                max-height: calc(100vh - 110px);
                overflow: auto
            }

            .main-nav.open {
                display: flex
            }

            .nav-link,
            .nav-dropdown>button {
                display: block;
                width: 100%;
                text-align: left;
                color: var(--text);
                padding: 11px 13px
            }

            .nav-dropdown-menu {
                position: static;
                width: 100%;
                display: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: var(--cream-2);
                margin: 3px 0
            }

            .nav-dropdown.open .nav-dropdown-menu {
                display: block
            }

            .mobile-language-switch {
                display: block;
                margin: 10px 0 2px;
                padding: 16px 13px 2px;
                border-top: 1px solid var(--line)
            }

            .mobile-language-switch__title {
                margin: 0 0 10px;
                color: var(--navy);
                font-size: 14px;
                font-weight: 700
            }

            .mobile-language-switch__options {
                display: flex;
                gap: 8px
            }

            .mobile-language-switch__option {
                display: inline-flex;
                flex: 1;
                align-items: center;
                justify-content: center;
                min-height: 42px;
                border: 1px solid rgba(11, 36, 48, .3);
                border-radius: 8px;
                color: var(--navy);
                font-size: 14px;
                font-weight: 700;
                transition: background-color .18s ease, border-color .18s ease, color .18s ease
            }

            .mobile-language-switch__option:hover {
                border-color: var(--gold);
                color: var(--gold)
            }

            .mobile-language-switch__option.is-active {
                border-color: var(--gold);
                background: rgba(200, 146, 56, .12);
                color: var(--navy)
            }

            .mobile-language-switch__option:focus-visible {
                outline: 2px solid var(--gold);
                outline-offset: 2px
            }

            .mobile-toggle {
                display: flex
            }
            .nav-actions {
                margin-left: auto
            }

            .footer-grid {
                grid-template-columns: 2fr repeat(2, 1fr)
            }
        }

        /* Tablet and mobile navigation: use the available width instead of
           forcing the desktop list into a narrow vertical dropdown. */
        @media (max-width:1180px) {
            .main-nav.open {
                display: grid !important;
                grid-template-columns: repeat(3, minmax(0, 1fr));
                grid-auto-flow: row;
                gap: 0 18px;
                align-content: start;
                padding: 18px;
            }

            .main-nav > .nav-link,
            .main-nav > .nav-dropdown {
                min-width: 0;
                border-bottom: 1px solid rgba(11, 36, 48, .1);
            }

            .main-nav > .nav-link,
            .main-nav > .nav-dropdown > button {
                min-height: 54px;
                padding: 13px 2px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 8px;
                font-size: 14px;
                font-weight: 600;
            }

            .main-nav > .nav-dropdown > button i {
                flex: 0 0 auto;
                font-size: 11px;
            }

            .main-nav > .nav-dropdown .nav-dropdown-menu {
                margin: 0 0 8px;
                padding: 5px;
                border-radius: 10px;
                background: var(--cream-2);
            }

            .main-nav > .nav-dropdown .nav-dropdown-menu a {
                padding: 9px 8px;
                font-size: 12px;
                white-space: normal;
            }

            .mobile-language-switch,
            .mobile-account-switch {
                grid-column: 1 / -1;
            }

            .mobile-account-switch {
                display: block;
            }

            .mobile-language-switch {
                margin-top: 16px;
                padding: 16px 2px 0;
            }

            .mobile-account-switch {
                padding: 10px 2px 0;
            }

            .mobile-account-switch__link {
                width: 100%;
                min-height: 48px;
                display: flex;
                align-items: center;
                gap: 10px;
                padding: 10px 0;
                border: 0;
                border-top: 1px solid var(--line);
                background: transparent;
                color: var(--navy);
                font-size: 14px;
                font-weight: 700;
                text-align: left;
                cursor: pointer;
            }

            .mobile-account-switch__link .fa-chevron-right {
                margin-left: auto;
                font-size: 11px;
            }

            .mobile-account-switch__link:hover {
                color: var(--gold);
            }
        }

        @media (max-width:720px) {
            .main-nav.open {
                display: grid !important;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0 14px;
                padding: 14px;
            }

            .main-nav > .nav-link,
            .main-nav > .nav-dropdown > button {
                min-height: 52px;
                font-size: 13px;
            }

            .main-nav > .nav-dropdown .nav-dropdown-menu a {
                font-size: 11px;
            }
        }

        @media(max-width:980px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            .footer-brand {
                grid-column: 1/-1
            }
        }

        @media(max-width:720px) {
            .container {
                width: min(calc(100% - 28px), var(--container))
            }

            .site-header {
                height: 70px
            }

            .main-nav {
                top: 70px;
                left: 14px;
                right: 14px
            }

            .brand-mark {
                width: 40px;
                height: 40px
            }

            .brand-text strong {
                font-size: 20px
            }

            .brand-text span {
                display: none
            }

            .nav-actions>.icon-btn:nth-of-type(2) {
                display: none
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 34px
            }

            .footer-bottom {
                flex-direction: column;
                gap: 12px
            }

            .search-modal-panel {
                padding: 25px 18px
            }

            .search-form {
                flex-direction: column
            }

            .search-form button {
                padding: 12px
            }

            .share-strip {
                justify-content: stretch
            }

            .share-strip a {
                flex: 1;
                justify-content: center;
                font-size: 0
            }

            .share-strip i {
                font-size: 18px
            }

            .lang-switch {
                display: none
            }
        }

        @media(max-width:520px) {
            .footer-grid {
                grid-template-columns: 1fr
            }

            .footer-brand {
                grid-column: auto
            }

            .footer-bottom div {
                flex-direction: column;
                gap: 6px
            }
        }

.review-lightbox-trigger { cursor: zoom-in; display: inline-block; transition: opacity .18s ease, transform .18s ease; }
        .review-lightbox-trigger:hover { opacity: .88; transform: scale(1.03); }
        .review-lightbox { position: fixed; inset: 0; z-index: 99999; display: flex; align-items: center; justify-content: center; padding: 5vh 5vw; background: rgba(0,0,0,.93); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .18s ease, visibility .18s ease; }
        .review-lightbox.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
        .review-lightbox__image { display: block; max-width: 92vw; max-height: 90vh; width: auto; height: auto; object-fit: contain; border-radius: 8px; box-shadow: 0 18px 60px rgba(0,0,0,.45); transform: scale(.98); transition: transform .18s ease; }
        .review-lightbox.is-open .review-lightbox__image { transform: scale(1); }
        .review-lightbox__close, .review-lightbox__nav { position: absolute; display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(0,0,0,.48); color: #fff; cursor: pointer; }
        .review-lightbox__close { top: 20px; right: 22px; font-size: 20px; }
        .review-lightbox__prev { left: 22px; top: 50%; transform: translateY(-50%); }
        .review-lightbox__next { right: 22px; top: 50%; transform: translateY(-50%); }
        .review-lightbox__nav:hover, .review-lightbox__close:hover { background: rgba(200,146,56,.85); }
        .review-lightbox__counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 14px; background: rgba(0,0,0,.5); padding: 5px 12px; border-radius: 999px; }
        .review-lightbox__loading, .review-lightbox__error { position: absolute; color: #fff; font-size: 14px; }
        .review-lightbox__loading { font-size: 25px; }
        .review-lightbox__error { display: none; bottom: 58px; }
        .review-lightbox.is-error .review-lightbox__error { display: block; }
        .review-lightbox.is-error .review-lightbox__loading { display: none; }
        body.review-lightbox-open { overflow: hidden; }
        @media (max-width: 600px) { .review-lightbox { padding: 7vh 2.5vw; } .review-lightbox__image { max-width: 95vw; max-height: 85vh; } .review-lightbox__close { top: 12px; right: 12px; } .review-lightbox__prev { left: 10px; } .review-lightbox__next { right: 10px; } .review-lightbox__nav { width: 44px; height: 44px; } }

        /* Responsive menu mockup: grouped columns on tablets and a compact
           two-column touch menu on phones. */
        .responsive-menu-panel {
            display: none;
        }

        @media (max-width:1180px) {
            .main-nav.open {
                display: block !important;
                padding: 0 !important;
                overflow: auto;
            }

            .main-nav.open > :not(.responsive-menu-panel) {
                display: none !important;
            }

            .responsive-menu-panel {
                display: block;
                padding: 22px 24px 20px;
                background: #fff;
            }

            .responsive-menu-tablet {
                display: grid;
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 0 28px;
            }

            .responsive-menu-column {
                min-width: 0;
                padding: 0 0 4px;
            }

            .responsive-menu-column:not(:last-child) {
                padding-right: 28px;
                border-right: 1px solid #eadfcf;
            }

            .responsive-menu-column h3 {
                margin: 0 0 14px;
                color: var(--navy);
                font-size: 17px;
                font-weight: 800;
            }

            .responsive-menu-column h3::after {
                content: '';
                display: block;
                width: 58px;
                height: 2px;
                margin-top: 10px;
                background: var(--gold);
            }

            .responsive-menu-item {
                width: 100%;
                min-width: 0;
                min-height: 52px;
                display: flex;
                align-items: center;
                gap: 10px;
                padding: 9px 0;
                border: 0;
                border-bottom: 1px solid rgba(11, 36, 48, .1);
                background: transparent;
                color: var(--navy);
                font-size: 15px;
                font-weight: 600;
                line-height: 1.35;
                text-align: left;
                text-decoration: none;
                cursor: pointer;
            }

            .responsive-menu-item > span {
                min-width: 0;
                flex: 1;
                overflow-wrap: anywhere;
            }

            .responsive-menu-item > .fa-chevron-right:last-child {
                flex: 0 0 auto;
                margin-left: auto;
                font-size: 11px;
                transition: transform .18s ease;
            }

            .responsive-menu-item:hover,
            .responsive-menu-item:focus-visible {
                color: var(--gold);
            }

            .responsive-menu-item--button.is-open > .fa-chevron-right:last-child {
                transform: rotate(90deg);
            }

            .responsive-menu-item--static {
                cursor: default;
            }

            .responsive-menu-submenu {
                display: none;
                padding: 4px 0 8px 12px;
                border-bottom: 1px solid rgba(11, 36, 48, .1);
            }

            .responsive-menu-submenu.is-open {
                display: block;
            }

            .responsive-menu-submenu a {
                display: flex;
                align-items: center;
                gap: 8px;
                padding: 7px 0;
                color: var(--text);
                font-size: 12px;
                line-height: 1.4;
                text-decoration: none;
            }

            .responsive-menu-submenu a .responsive-menu-item__icon {
                flex: 0 0 18px;
                width: 18px;
                color: var(--gold);
                font-size: 12px;
                text-align: center;
            }

            .responsive-menu-submenu a span {
                min-width: 0;
                overflow-wrap: anywhere;
            }

            .responsive-menu-submenu a:hover {
                color: var(--gold);
            }

            .responsive-menu-mobile {
                display: none;
            }

            .responsive-menu-footer {
                display: grid;
                grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
                gap: 32px;
                align-items: end;
                margin-top: 20px;
                padding-top: 18px;
                border-top: 1px solid #eadfcf;
            }

            .responsive-menu-signin .responsive-menu-item {
                border-bottom: 0;
                font-size: 16px;
            }

            .responsive-menu-item__icon {
                flex: 0 0 24px;
                width: 24px;
                color: var(--gold);
                text-align: center;
            }

            .responsive-menu-language p {
                margin: 0 0 10px;
                color: var(--navy);
                font-size: 16px;
                font-weight: 800;
            }

            .responsive-menu-language > div {
                display: flex;
                gap: 8px;
            }

            .responsive-menu-language a {
                flex: 1;
                display: flex;
                align-items: center;
                justify-content: center;
                min-height: 48px;
                border: 1px solid rgba(11, 36, 48, .28);
                border-radius: 8px;
                color: var(--navy);
                font-size: 14px;
                font-weight: 700;
                text-decoration: none;
            }

            .responsive-menu-language a.is-active,
            .responsive-menu-language a:hover {
                border-color: var(--gold);
                background: rgba(200, 146, 56, .12);
            }
        }

        @media (max-width:720px) {
            .responsive-menu-panel {
                padding: 10px 14px 14px;
            }

            .responsive-menu-tablet {
                display: none;
            }

            .responsive-menu-mobile {
                display: grid;
                grid-template-columns: minmax(0, 1fr);
                gap: 0;
            }

            .responsive-menu-mobile .responsive-menu-item {
                min-height: 72px;
                padding: 10px 0;
                font-size: 13px;
            }

            .responsive-menu-mobile .responsive-menu-item__icon {
                flex-basis: 22px;
                width: 22px;
                font-size: 17px;
            }

            .responsive-menu-mobile .responsive-menu-submenu {
                grid-column: 1;
            }

            .responsive-menu-mobile__home { order: 1; }
            .responsive-menu-mobile__travel { order: 2; }
            .responsive-menu-mobile__travel-submenu { order: 3; }
            .responsive-menu-mobile__attraction { order: 4; }
            .responsive-menu-mobile__accommodation { order: 5; }
            .responsive-menu-mobile__food { order: 6; }
            .responsive-menu-mobile__food-submenu { order: 7; }
            .responsive-menu-mobile__service { order: 8; }
            .responsive-menu-mobile__calendar { order: 9; }
            .responsive-menu-mobile__calendar-submenu { order: 10; }
            .responsive-menu-mobile__more-heading { order: 11; }
            .responsive-menu-mobile__more-submenu { order: 12; }

            .responsive-menu-mobile-heading {
                grid-column: 1;
                margin: 16px 0 2px;
                padding-top: 14px;
                border-top: 1px solid #eadfcf;
                color: var(--navy);
                font-size: 15px;
                font-weight: 800;
            }

            .responsive-menu-footer {
                display: block;
                margin-top: 14px;
                padding-top: 0;
            }

            .responsive-menu-signin .responsive-menu-item {
                min-height: 58px;
                border-top: 1px solid #eadfcf;
                font-size: 14px;
            }

            .responsive-menu-language {
                margin-top: 4px;
                padding-top: 14px;
                border-top: 1px solid #eadfcf;
            }

            .responsive-menu-language p {
                font-size: 14px;
            }
        }

        /* Keep every responsive menu label readable even when page-specific
           navigation styles are loaded after the shared stylesheet. */
        @media (max-width:1180px) {
            .responsive-menu-panel .responsive-menu-item,
            .responsive-menu-panel .responsive-menu-item span {
                color: var(--navy) !important;
                font-size: 15px !important;
                font-weight: 600 !important;
            }

            .responsive-menu-panel .responsive-menu-submenu a,
            .responsive-menu-panel .responsive-menu-submenu a span {
                color: var(--text) !important;
                font-size: 14px !important;
                font-weight: 500 !important;
            }

            .responsive-menu-panel .responsive-menu-item__icon,
            .responsive-menu-panel .responsive-menu-submenu a .responsive-menu-item__icon {
                color: var(--gold) !important;
            }
        }

        @media (max-width:720px) {
            .responsive-menu-panel .responsive-menu-item,
            .responsive-menu-panel .responsive-menu-item span {
                font-size: 14px !important;
            }
        }
