:root {
    --primary: #BDA06B;
    --primary-dark: #162F35;
    --bg: #F8F6F1;
    --text: #162F35;
    --muted: #162F35;
    --white: #ffffff;
    --success: #BDA06B;
    --danger: #c62828;
    --shadow: 0 10px 30px rgba(19, 47, 53, 0.14);
    --surface-soft: rgba(189, 160, 107, 0.18);
    --container-x: 16px;
    --section-y: 44px;
}

* {
    box-sizing: border-box;
}

svg.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    vertical-align: -0.15em;
    fill: currentColor;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
}

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

.container {
    width: min(1140px, calc(100% - (var(--container-x) * 2)));
    margin: 0 auto;
}

.menu-toggle-icons {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 1.125em;
    height: 1.125em;
}

.menu-toggle .icon-menu-close {
    display: none;
    position: absolute;
    inset: 0;
    margin: auto;
}

.menu-toggle[aria-expanded="true"] .icon-menu-open {
    display: none;
}

.menu-toggle[aria-expanded="true"] .icon-menu-close {
    display: block;
}

.submenu-toggle .icon-chevron {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.submenu-toggle[aria-expanded="true"] .icon-chevron {
    transform: rotate(180deg);
}

.topbar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 10px 0;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar-inner p {
    margin: 0;
    font-size: 14px;
}

.topbar-actions {
    display: flex;
    gap: 8px;
}

.navbar {
    background: var(--white);
    border-bottom: 1px solid #e3d8c4;
    position: sticky;
    top: 0;
    z-index: 99;
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 64px;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    width: 250px;
    height: auto;
    display: block;
}

.menu-toggle {
    display: none;
    border: 1px solid rgba(189, 160, 107, 0.55);
    background: #f7f1e6;
    color: var(--primary-dark);
    border-radius: 12px;
    font-weight: 700;
    padding: 9px 12px;
    cursor: pointer;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 18px rgba(22, 47, 53, 0.12);
}

.menu-toggle .menu-toggle-icons svg.icon {
    width: 18px;
    height: 18px;
}

.menu-toggle span {
    font-size: 14px;
}

.menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 6px;
}

.menu-panel {
    display: block;
}

.menu-panel-head {
    display: none;
}

.menu-panel-meta {
    display: none;
}

.menu-close {
    display: none;
}

.menu-panel-footer {
    display: none;
}

.menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-dark);
}

.menu-link-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.menu-count {
    font-size: 11px;
    line-height: 1;
    background: var(--surface-soft);
    color: var(--primary-dark);
    border: 1px solid rgba(189, 160, 107, 0.55);
    border-radius: 999px;
    padding: 3px 6px;
    font-weight: 700;
}

.menu > li {
    position: relative;
}

.has-submenu {
    display: flex;
    align-items: center;
}

.submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #1d5a61;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    margin-right: 4px;
    transition: background 0.2s ease, color 0.2s ease;
}

.submenu-toggle:hover {
    background: #f5ede1;
    color: #133f45;
}

.submenu {
    list-style: none;
    margin: 0;
    padding: 8px;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    max-height: 340px;
    overflow: auto;
    background: #ffffff;
    border: 1px solid #e7dcc9;
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(19, 47, 53, 0.16);
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 120;
}

.submenu li a {
    padding: 9px 10px;
    font-weight: 500;
    border-radius: 8px;
    color: #2f4e53;
}

.submenu-bottom-link {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px dashed #e9dec9;
}

.submenu-bottom-link a {
    font-weight: 600;
    color: #9e7f47;
}

.submenu li a:hover {
    background: #f8f0e4;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.menu a.active,
.menu a:hover {
    background: #f4eadb;
    color: var(--primary-dark);
}

.menu-backdrop {
    display: none;
}

body.menu-open {
    overflow: hidden;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    border: 0;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn:hover {
    background: var(--primary-dark);
}

@keyframes breathe-call {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 24px rgba(191, 160, 106, 0.32);
    }
    50% {
        transform: scale(1.045);
        box-shadow: 0 16px 34px rgba(191, 160, 106, 0.46);
    }
}

.btn svg.icon {
    margin-right: 7px;
}

.btn-small {
    padding: 8px 14px;
    font-size: 14px;
}

.btn-icon-only {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 999px;
}

.btn-icon-only svg.icon {
    margin-right: 0;
    width: 18px;
    height: 18px;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-light {
    border: 1px solid #b8aa91;
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: #13383e;
}

.btn-block {
    width: 100%;
}

section {
    padding: var(--section-y) 0;
}

.hero {
    padding-top: 44px;
}

.hero-v2 {
    position: relative;
    padding: 52px 0;
    background:
        linear-gradient(100deg, rgba(19, 47, 53, 0.88) 0%, rgba(19, 47, 53, 0.72) 52%, rgba(19, 47, 53, 0.44) 100%),
        url("klasik-masaj.png") center/cover no-repeat;
    color: #f7f2e9;
}

.hero-v2-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: stretch;
}

.hero-v2 .badge {
    background: #efe4d2;
}

.hero-v2-tagline {
    margin: 8px 0 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.3px;
    color: #e8d7ba;
}

.hero-v2 h1 {
    color: #ffffff;
}

.hero-v2 .lead {
    color: #f0e8dc;
}

.hero-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.hero-points li {
    position: relative;
    padding-left: 28px;
    font-weight: 500;
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, #d6bf93 0%, #265d64 100%);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16);
}

.hero-v2-panel {
    border: 1px solid rgba(189, 160, 107, 0.45);
    background: rgba(255, 255, 255, 0.94);
    color: var(--text);
    backdrop-filter: blur(6px);
}

.hero-v2-kicker {
    margin: 0;
    color: #3f5e62;
    font-size: 12px;
    letter-spacing: 1.1px;
    font-weight: 700;
}

.hero-v2-panel h2 {
    margin-top: 6px;
}

.hero-v2-note {
    display: block;
    margin-top: 12px;
    color: #6b7f82;
    font-weight: 500;
}

.intro-video-section {
    border-top: 1px solid rgba(38, 93, 100, 0.1);
    border-bottom: 1px solid rgba(38, 93, 100, 0.08);
    background: linear-gradient(180deg, #fbf8f3 0%, #ffffff 55%);
}

.intro-video-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(220px, 320px);
    gap: 32px 48px;
    align-items: center;
}

.intro-video-copy {
    text-align: left;
    max-width: 520px;
}

.intro-video-copy .badge {
    display: inline-block;
    margin-bottom: 10px;
}

.intro-video-copy h2 {
    margin: 0 0 10px;
}

.intro-video-copy .section-text {
    margin-bottom: 0;
}

.intro-video-stage {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 4px 0;
}

.intro-video-frame {
    margin: 0;
    padding: 12px;
    max-width: 100%;
    border: 1px solid rgba(38, 93, 100, 0.12);
    box-shadow: 0 14px 36px rgba(19, 47, 53, 0.1);
    background: linear-gradient(165deg, #faf6ef 0%, #ffffff 55%);
}

.intro-video-frame video {
    display: block;
    margin: 0 auto;
    width: auto;
    height: auto;
    max-width: min(288px, 86vw);
    max-height: min(480px, 56vh);
    object-fit: contain;
    border-radius: 12px;
    background: #0d1a1c;
    vertical-align: middle;
}

.stats-v2-wrap {
    padding-top: 22px;
}

.stats-v2-head {
    max-width: 700px;
    margin-bottom: 14px;
}

.stats-v2-head h2 {
    margin-bottom: 8px;
}

.stats-v2-head .section-text {
    margin-bottom: 0;
}

.about-v2 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    align-items: start;
}

.about-v2-cards {
    display: grid;
    gap: 14px;
}

.about-v2-images {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-v2-metrics {
    margin-top: 12px;
    display: grid;
    gap: 10px;
}

.about-metric {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--surface-soft);
    border: 1px solid rgba(189, 160, 107, 0.45);
}

.about-metric svg.icon {
    width: 15px;
    height: 15px;
    padding: 8.5px;
    box-sizing: content-box;
    border-radius: 999px;
    background: rgba(189, 160, 107, 0.35);
    color: var(--primary-dark);
    flex-shrink: 0;
}

.about-metric strong {
    display: block;
    color: #0c4248;
    line-height: 1.25;
}

.about-metric span {
    display: block;
    color: #4a7f86;
    font-size: 13px;
}

.about-image-card {
    margin: 0;
    background: #ffffff;
    border: 1px solid rgba(189, 160, 107, 0.45);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.about-image-card figcaption {
    padding: 9px 10px;
    font-size: 13px;
    color: var(--primary-dark);
    background: var(--surface-soft);
}

.about-point-card svg.icon {
    width: 18px;
    height: 18px;
    padding: 12px;
    box-sizing: content-box;
    border-radius: 10px;
    margin-bottom: 12px;
    color: #fff;
    background: linear-gradient(180deg, #d6bf93 0%, #b89257 100%);
}

.service-v2-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-v2-card {
    padding: 14px;
    display: grid;
    grid-template-columns: 116px 1fr;
    gap: 14px;
    align-items: center;
}

.service-v2-card img {
    width: 100%;
    height: 92px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.service-v2-card h3 {
    margin: 0 0 8px;
}

.service-v2-card p {
    margin: 0;
    color: var(--muted);
}

.services-v3-section {
    background: linear-gradient(180deg, #f7f1e6 0%, #f2e8d7 100%);
}

.services-v3-head {
    max-width: 740px;
}

.services-v3-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 16px;
    align-items: stretch;
}

.services-v3-feature {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
    min-height: 420px;
    box-shadow: var(--shadow);
}

.services-v3-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-v3-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(19, 47, 53, 0.08) 0%, rgba(19, 47, 53, 0.82) 75%);
}

.services-v3-feature-overlay {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    color: #ffffff;
}

.services-v3-feature-overlay .badge {
    background: rgba(247, 241, 230, 0.95);
}

.services-v3-feature-overlay h3 {
    margin: 12px 0 8px;
    font-size: 30px;
    color: #ffffff;
}

.services-v3-feature-overlay p {
    margin: 0;
    color: #dbf0f4;
}

.service-v3-link {
    display: inline-block;
    margin-top: 10px;
    color: #ffffff;
    text-decoration: underline;
}

.services-v3-list {
    display: grid;
    gap: 12px;
}

.packages-home {
    background: linear-gradient(180deg, #f7f1e6 0%, #f2e8d7 100%);
}

.packages-grid,
.packages-extra {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.packages-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.packages-extra {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.package-card {
    text-align: center;
    border: 1px solid rgba(189, 160, 107, 0.45);
    background: #fff;
}

.package-card h3 {
    margin: 0 0 8px;
}

.package-card p {
    margin: 0;
    font-weight: 800;
    color: var(--primary);
}

.package-card-price {
    font-size: 1.15rem;
    margin-bottom: 8px !important;
}

.package-card-summary {
    font-weight: 500 !important;
    color: var(--muted) !important;
    font-size: 0.95rem;
    line-height: 1.45;
    margin-bottom: 10px !important;
}

.package-card-includes {
    margin: 0 0 12px;
    padding-left: 18px;
    text-align: left;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.4;
}

.package-card-includes li {
    margin-bottom: 4px;
}

.package-card .text-link {
    display: inline-block;
    margin-top: 4px;
}

.packages-home-foot {
    text-align: center;
    margin: 18px 0 0;
}

.listing-card-price {
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 8px;
}

.package-price-lead {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 8px;
}

.package-duration-note {
    margin: 14px 0 0;
    font-size: 0.95rem;
    color: var(--muted);
}

.services-v3-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
    padding: 12px;
    align-items: center;
}

.services-v3-item img {
    width: 100%;
    height: 95px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.services-v3-item h3 {
    margin: 0 0 6px;
    font-size: 21px;
}

.services-v3-item h3 svg.icon {
    color: #b89257;
    margin-right: 6px;
}

.services-v3-item p {
    margin: 0;
    color: var(--muted);
}

.home-before-after {
    background: #ffffff;
}

.home-before-after-head,
.home-work-video-head {
    max-width: 720px;
    margin-bottom: 6px;
}

.before-after-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.before-after-card {
    padding: 16px;
    border: 1px solid #d5f0f4;
    overflow: hidden;
}

.before-after-title {
    margin: 0 0 12px;
    font-size: 18px;
    color: var(--primary-dark);
}

.before-after-figure {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(189, 160, 107, 0.45);
    background: #f0f9fa;
}

.before-after-img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

.before-after-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.before-after-cell {
    position: relative;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #e6f6f8;
    border: 1px solid rgba(189, 160, 107, 0.45);
}

.before-after-cell img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.before-after-label {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    color: #fff;
}

.before-after-label--before {
    background: rgba(198, 40, 40, 0.92);
}

.before-after-label--after {
    background: rgba(10, 143, 85, 0.94);
}

.home-work-video {
    background: linear-gradient(180deg, #f7fcfd 0%, #f8f0e4 100%);
    overflow-x: hidden;
}

.work-video-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.work-video-card {
    padding: 16px;
    border: 1px solid #d5f0f4;
    display: flex;
    flex-direction: column;
    min-width: 0;
    max-width: 100%;
}

.work-video-card-title {
    margin: 0 0 6px;
    font-size: 18px;
    color: var(--primary-dark);
}

.work-video-card-desc {
    margin: 0 0 12px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.45;
}

.work-video-frame {
    margin-top: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #c8eef2;
    border-radius: 12px;
    background: #0a2a30;
    line-height: 0;
    max-width: 100%;
}

.work-video-frame--native {
    margin-top: 0;
    align-self: stretch;
}

.work-video-el {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    vertical-align: bottom;
    background: #0a2a30;
}

.work-video-placeholder {
    margin-top: 16px;
    padding: 28px 22px;
    text-align: center;
    border: 1px dashed #b0dce2;
    background: linear-gradient(180deg, #ffffff 0%, #f7f1e6 100%);
}

.work-video-placeholder-text {
    margin: 0;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.listing-hero {
    background: linear-gradient(180deg, #f7f1e6 0%, #f2e8d7 100%);
}

.listing-service-grid,
.listing-district-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.listing-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 14px;
    align-items: center;
}

.listing-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
}

.listing-card h2 {
    margin: 0 0 8px;
    font-size: 23px;
}

.listing-card h2 svg.icon {
    color: #b89257;
    margin-right: 6px;
}

.listing-card p {
    margin: 0 0 8px;
    color: var(--muted);
}

.detail-hero {
    padding-top: 44px;
    background: linear-gradient(180deg, #f8f0e4 0%, #ffffff 100%);
}

.detail-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 18px;
    align-items: center;
}

.detail-hero-image {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.detail-hero-image img {
    display: block;
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.detail-benefit-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: stretch;
}

.detail-benefit-card {
    border: 1px solid #d5f0f4;
    background: linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
}

.detail-benefit-card h2 {
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dff4f6;
}

.detail-list,
.detail-order-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.detail-list li,
.detail-order-list li {
    color: #28606c;
}

.detail-list li svg.icon {
    margin-right: 6px;
    color: var(--primary);
}

.detail-list li {
    padding: 10px 12px;
    border: 1px solid rgba(189, 160, 107, 0.35);
    border-radius: 10px;
    background: #f7f2e9;
    margin: 0;
}

.detail-order-list {
    counter-reset: step;
}

.detail-order-list li {
    position: relative;
    padding: 10px 12px 10px 40px;
    border: 1px solid rgba(189, 160, 107, 0.35);
    border-radius: 10px;
    background: #f7f2e9;
}

.detail-order-list li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: -1px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(189, 160, 107, 0.35);
    color: #13383e;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.detail-benefit-card .text-link {
    display: inline-block;
    margin-top: 10px;
}

.mini-faq-list {
    display: grid;
    gap: 8px;
}

.mini-faq-list details {
    border: 1px solid #e9dec9;
    border-radius: 10px;
    padding: 10px 12px;
    background: var(--surface-soft);
}

.mini-faq-list summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-dark);
}

.mini-faq-list p {
    margin: 8px 0 0;
    color: var(--muted);
}

.contact-highlight {
    background: linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
}

.contact-hero-grid {
    align-items: start;
}

.contact-point-list {
    list-style: none;
    margin: 10px 0 14px;
    padding: 0;
    display: grid;
    gap: 8px;
}

.contact-point-list li {
    color: #2b5b88;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.contact-point-list svg.icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #b89257;
}

.contact-quick-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.contact-form-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 14px;
}

.contact-form-steps span {
    background: #f8f0e4;
    border: 1px solid #e9dec9;
    color: #275f68;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-form-steps b {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #b89257;
    color: #fff;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-region-card .section-text {
    margin-bottom: 12px;
}

.about-page-hero {
    background: linear-gradient(180deg, #f2e8d7 0%, #ffffff 100%);
    padding-top: 42px;
}

.about-page-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 18px;
    align-items: center;
}

.about-page-hero-image {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-page-hero-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.about-page-kpis {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.about-page-kpis article {
    background: #f7f2e9;
    border: 1px solid #e9dec9;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
}

.about-page-kpis strong {
    display: block;
    font-size: 22px;
    color: #13383e;
}

.about-page-kpis span {
    font-size: 13px;
    color: var(--muted);
}

.about-story p {
    margin: 0 0 10px;
    color: var(--muted);
}

.about-values {
    background: var(--surface-soft);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.about-values-grid h3 {
    font-size: 21px;
}

.about-values-grid h3 svg.icon {
    margin-right: 7px;
    color: #b89257;
}

.about-links {
    text-align: center;
}

.about-links .cta-row {
    justify-content: center;
}

.region-highlight-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.region-highlight-grid h3 {
    margin-bottom: 6px;
    font-size: 20px;
}

.region-highlight-grid h3 svg.icon {
    margin-right: 6px;
    color: #b89257;
}

.region-highlight-grid p {
    margin: 0;
    color: #4a8085;
}

.faq-page-hero .section-text {
    max-width: 860px;
}

.faq-top-badges {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 0.85fr;
    gap: 14px;
    align-items: start;
}

.faq-group h2,
.faq-side h3 {
    margin-bottom: 10px;
}

.faq-group h2 svg.icon,
.faq-side h3 svg.icon {
    margin-right: 6px;
    color: #b89257;
}

.faq-group details {
    border: 1px solid #e9dec9;
    border-radius: 10px;
    padding: 11px 12px;
    margin-bottom: 8px;
    background: var(--surface-soft);
}

.faq-group summary {
    cursor: pointer;
    font-weight: 600;
}

.faq-group p {
    margin: 8px 0 0;
    color: var(--muted);
}

.faq-side {
    position: sticky;
    top: 90px;
}

.faq-side p {
    color: var(--muted);
}

.faq-side .detail-list li {
    font-size: 14px;
}

.contact-info-grid h3 svg.icon {
    margin-right: 6px;
    color: #b89257;
}

.process-v2 {
    background: var(--surface-soft);
}

.rating-box {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.rating-score {
    min-width: 170px;
    text-align: center;
    border-radius: 12px;
    padding: 12px;
    background: var(--surface-soft);
    border: 1px solid #e7dcc9;
}

.rating-score strong {
    display: block;
    font-size: 42px;
    line-height: 1;
    color: var(--primary-dark);
}

.rating-score span {
    display: block;
    margin-top: 6px;
    font-weight: 700;
    color: var(--primary-dark);
}

.rating-score small {
    color: #6b7f82;
}

.final-cta {
    padding-top: 14px;
}

.final-cta-box {
    border-radius: 18px;
    background: linear-gradient(140deg, var(--primary-dark) 0%, #0f2328 100%);
    color: #f7f1e6;
    text-align: center;
    padding: 34px 24px;
}

.final-cta-box h2 {
    color: #ffffff;
    margin-bottom: 8px;
}

.final-cta-box p {
    margin: 0 0 18px;
    color: #efe4d2;
}

.final-cta-box .cta-row {
    justify-content: center;
    margin-bottom: 0;
}


.trust-strip-wrap {
    padding: 8px 0 0;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.trust-strip p {
    margin: 0;
    background: #f4eadb;
    border: 1px solid #cce8d5;
    border-radius: 12px;
    padding: 14px 16px;
    color: #0d5058;
    font-size: 15px;
}

.home-slider-section {
    padding: 0;
}

.home-slider {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    overflow: hidden;
    min-height: min(76vh, 760px);
    box-shadow: 0 18px 55px rgba(19, 47, 53, 0.2);
}

.home-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(circle at 82% 18%, rgba(64, 205, 215, 0.25) 0%, rgba(64, 205, 215, 0) 42%);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease;
}

.slide.is-active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(95deg, rgba(19, 47, 53, 0.82) 0%, rgba(19, 47, 53, 0.35) 52%, rgba(19, 47, 53, 0.1) 100%);
}

.slide-content {
    position: absolute;
    left: clamp(14px, 7vw, 86px);
    right: 14px;
    bottom: clamp(18px, 5vw, 54px);
    z-index: 4;
    max-width: 620px;
    color: var(--white);
    padding: clamp(14px, 3vw, 26px);
    border-radius: 18px;
    border: 1px solid rgba(170, 230, 238, 0.45);
    background: rgba(19, 47, 53, 0.3);
    backdrop-filter: blur(8px);
}

.slide-content h2 {
    color: var(--white);
    margin: 10px 0 10px;
}

.slide-content p {
    margin: 0 0 16px;
    color: #e9f8fa;
    font-size: clamp(15px, 2.2vw, 18px);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    border: 0;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: rgba(19, 47, 53, 0.44);
    border: 1px solid rgba(222, 240, 255, 0.46);
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.slider-nav:hover {
    transform: translateY(-50%) scale(1.05);
    background: rgba(19, 47, 53, 0.72);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.is-active {
    background: #ffffff;
    width: 28px;
    border-radius: 999px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: start;
}

.hero-panel {
    background: linear-gradient(160deg, #ffffff 0%, var(--surface-soft) 100%);
    border: 1px solid #e3d4bc;
}

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

.check-list {
    list-style: none;
    padding: 0;
    margin: 14px 0;
}

.check-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    color: #1a5e68;
    font-weight: 500;
}

.check-list li::before {
    content: "";
    width: 13px;
    height: 13px;
    border-radius: 999px;
    position: absolute;
    left: 0;
    top: 6px;
    background: linear-gradient(180deg, #cbb07f 0%, #b89257 100%);
}

.cta-column {
    display: grid;
    gap: 10px;
}

.panel-link {
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(189, 160, 107, 0.35);
    color: #13383e;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 999px;
}

.badge svg.icon {
    flex-shrink: 0;
}

h1, h2, h3 {
    line-height: 1.25;
    margin-top: 0;
}

h1 {
    font-size: clamp(28px, 5vw, 42px);
    margin: 12px 0 10px;
    font-weight: 700;
}

h2 {
    font-size: clamp(22px, 4vw, 32px);
    margin-bottom: 12px;
    font-weight: 600;
}

h3 {
    font-weight: 600;
}

.lead,
.section-text {
    color: var(--muted);
    font-size: 18px;
    margin-top: 0;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.features {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
}

.card {
    background: var(--white);
    border-radius: 14px;
    padding: 22px;
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(19, 47, 53, 0.16);
}

.form-card h2 {
    margin-bottom: 8px;
}

label {
    display: block;
    font-weight: 700;
    margin: 12px 0 6px;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #c2dccf;
    border-radius: 8px;
    padding: 11px 12px;
    font: inherit;
}

textarea {
    resize: vertical;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.alert {
    border-radius: 8px;
    padding: 10px 12px;
    margin: 12px 0;
}

.alert-error {
    background: #ffe8e8;
    color: var(--danger);
}

.alert-success {
    background: #e5fff2;
    color: var(--success);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #ffffff;
    background: linear-gradient(180deg, #d6bf93 0%, #b89257 100%);
}

.stat-icon svg.icon {
    width: 1.125rem;
    height: 1.125rem;
}

.stat h3 {
    margin-bottom: 6px;
    font-size: 30px;
    color: var(--primary-dark);
}

.stat p {
    margin: 0;
    color: var(--muted);
}

.stat {
    border: 1px solid #eadfcd;
    background: linear-gradient(180deg, #ffffff 0%, #fbf7ef 100%);
}

.review-card p {
    margin-top: 0;
    color: var(--muted);
}

.proof-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.proof-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 270px;
    box-shadow: var(--shadow);
}

.proof-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: transform 0.35s ease;
}

.proof-item:hover img {
    transform: scale(1.06);
}

.proof-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 16px;
    color: #fff;
    background: linear-gradient(180deg, rgba(19, 47, 53, 0) 0%, rgba(19, 47, 53, 0.85) 78%);
}

.proof-overlay h3 {
    margin: 0 0 4px;
    color: #fff;
    font-size: 20px;
}

.proof-overlay p {
    margin: 0;
    color: #dbe9ff;
}

.trust-badge-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.trust-card {
    border: 1px solid #d2eef2;
    background: linear-gradient(165deg, #ffffff 0%, #f1faf5 100%);
}

.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(180deg, #d6bf93 0%, #b89257 100%);
    margin-bottom: 10px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.step-card {
    position: relative;
    overflow: hidden;
}

.step-no {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #13383e;
    background: rgba(189, 160, 107, 0.35);
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.areas p {
    color: var(--muted);
}

.areas-v2 {
    background: linear-gradient(180deg, #f7f1e6 0%, #f2e8d7 100%);
}

.areas-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
}

.areas-v2-content,
.areas-v2-list {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e7dcc9;
    box-shadow: var(--shadow);
    padding: 20px;
}

.areas-v2-content .cta-row {
    margin-bottom: 0;
}

.areas-v2-list {
    background: linear-gradient(180deg, #ffffff 0%, #f7f1e6 100%);
}

.areas-v2-list h3 {
    margin: 0 0 12px;
    font-size: 20px;
}

.areas-v2-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.areas-v2-highlights {
    list-style: none;
    margin: 14px 0 16px;
    padding: 0;
    display: grid;
    gap: 8px;
}

.areas-v2-highlights li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-weight: 500;
}

.areas-v2-highlights svg.icon {
    width: 10px;
    height: 10px;
    padding: 6px;
    box-sizing: content-box;
    border-radius: 999px;
    background: rgba(189, 160, 107, 0.35);
    color: var(--primary-dark);
    flex-shrink: 0;
}

.text-link {
    color: #b89257;
    font-weight: 700;
}

.chip-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    background: #f4eadb;
    color: #13383e;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.chip svg.icon {
    color: #0c8490;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.faq details {
    background: var(--white);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 10px;
    box-shadow: var(--shadow);
}

.faq summary {
    cursor: pointer;
    font-weight: 700;
}

.faq-preview {
    background: linear-gradient(180deg, #f7f1e6 0%, #f2e8d7 100%);
}

.faq-preview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.faq-preview-head h2 {
    margin: 0;
}

.faq-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.faq-preview-card {
    background: #ffffff;
    border: 1px solid #e7dcc9;
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 16px;
}

.faq-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: linear-gradient(180deg, #d6bf93 0%, #b89257 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.faq-icon svg.icon {
    width: 22px;
    height: 22px;
}

.faq-preview-card h3 {
    font-size: 18px;
    margin: 0 0 8px;
    color: #0c4248;
}

.faq-preview-card p {
    margin: 0;
    color: var(--muted);
}

.reviews-v2 {
    padding-top: 26px;
}

.review-slider {
    position: relative;
    padding: 24px 56px 50px;
}

.review-viewport {
    overflow: hidden;
    width: 100%;
    touch-action: pan-y;
}

.review-track {
    display: flex;
    transition: transform 0.35s ease;
    will-change: transform;
}

.review-slider .review-card {
    flex: 0 0 calc(100% / 3);
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 14px;
}

.review-slider .review-card p {
    margin: 8px 0 12px;
    color: var(--muted);
}

.review-slider .review-card strong {
    color: var(--primary-dark);
}

.review-stars {
    display: flex;
    gap: 4px;
    color: #f6b301;
}

.review-stars svg.icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.review-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(189, 160, 107, 0.55);
    background: #f7f1e6;
    color: var(--primary-dark);
    cursor: pointer;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.review-nav svg.icon {
    width: 18px;
    height: 18px;
}

.review-nav.prev {
    left: 10px;
}

.review-nav.next {
    right: 10px;
}

.review-nav:hover {
    background: var(--surface-soft);
}

.review-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: rgba(189, 160, 107, 0.45);
    cursor: pointer;
}

.review-dot.active {
    width: 26px;
    background: #b89257;
}

.footer {
    background: var(--primary-dark);
    color: #f2e6d1;
    padding: 34px 0 16px;
    margin-top: 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr 0.9fr;
    gap: 24px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px 14px;
}

.footer-links a,
.footer-links span {
    display: block;
}

.small {
    font-size: 14px;
    color: #d7c19a;
}

.footer-bottom {
    border-top: 1px solid rgba(189, 160, 107, 0.35);
    margin-top: 18px;
    padding-top: 12px;
    font-size: 14px;
    color: #d7c19a;
}

.footer-brand {
    margin: 0 0 8px;
}

.footer-logo {
    width: 280px;
    max-width: 100%;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.services-poster-section {
    padding: 14px 0 28px;
}

.services-poster {
    margin: 0;
    padding: 10px;
    border-radius: 16px;
    overflow: hidden;
}

.services-poster img {
    width: 100%;
    max-width: 714px;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
}

.whatsapp-float {
    position: fixed;
    right: 16px;
    bottom: 20px;
    z-index: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    border-radius: 999px;
    width: 52px;
    height: 52px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.whatsapp-float .icon {
    width: 22px;
    height: 22px;
}

.whatsapp-float:hover {
    transform: translateY(-1px);
}

.mobile-sticky-cta {
    display: none;
}

/* Final palette lock: dark + gold */
body,
.card,
.menu-panel,
.submenu,
.faq-preview-card,
.about-point-card,
.detail-benefit-card {
    color: var(--primary-dark);
}

.topbar,
.footer,
.hero-v2,
.final-cta-box {
    background-color: var(--primary-dark);
}

.badge,
.menu-count,
.stat-icon,
.faq-icon,
.chip,
.step-no {
    background: var(--primary) !important;
    color: #ffffff !important;
    border-color: var(--primary) !important;
}

.btn,
.sticky-call {
    background: var(--primary) !important;
    color: var(--primary-dark) !important;
    border-color: var(--primary) !important;
}

.btn:hover,
.sticky-call:hover {
    background: var(--primary-dark) !important;
    color: #ffffff !important;
}

.btn-outline {
    color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    background: transparent !important;
}

.btn-outline:hover {
    background: var(--primary-dark) !important;
    color: #ffffff !important;
}

.final-cta-box .btn-outline {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.92) !important;
    background: transparent !important;
}

.final-cta-box .btn-outline:hover {
    background: #ffffff !important;
    color: var(--primary-dark) !important;
    border-color: #ffffff !important;
}

@media (max-width: 768px) {
    .whatsapp-float {
        display: none;
    }

    .intro-video-frame video {
        max-width: min(260px, 88vw);
        max-height: min(400px, 48vh);
    }
}

@media (max-width: 940px) {
    :root {
        --section-y: 34px;
    }

    .navbar {
        z-index: 420;
    }

    .hero-grid,
    .hero-v2-grid,
    .intro-video-grid,
    .about-v2,
    .service-grid,
    .packages-grid,
    .packages-extra,
    .footer-grid,
    .stats-grid,
    .process-grid,
    .trust-strip,
    .proof-gallery,
    .trust-badge-grid {
        grid-template-columns: 1fr;
    }

    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 6px 0;
    }

    .brand {
        margin-left: 0;
    }

    .areas-v2-grid {
        grid-template-columns: 1fr;
    }

    .intro-video-stage {
        justify-content: center;
    }

    .intro-video-copy {
        max-width: none;
    }

    .areas-v2-chips {
        grid-template-columns: 1fr;
    }

    .faq-preview-grid {
        grid-template-columns: 1fr;
    }

    .faq-preview-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu {
        gap: 0;
        display: grid;
        grid-template-columns: 1fr;
        margin: 0;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        z-index: auto;
        overflow-y: auto;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        transition: none;
    }

    .menu-panel {
        --drawer-pad-x: 14px;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(88vw, 370px);
        background: #ffffff;
        border-left: 1px solid #e9dec9;
        border-radius: 18px 0 0 18px;
        box-shadow: -16px 0 36px rgba(19, 47, 53, 0.22);
        z-index: 430;
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.24s ease, opacity 0.24s ease;
        overflow: hidden;
    }

    .menu-panel.is-open {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .menu-panel-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 16px var(--drawer-pad-x);
        border-bottom: 1px solid #e3d4bc;
        background: linear-gradient(180deg, #f7f1e6 0%, #f8f0e4 100%);
    }

    .menu-panel-head-text strong {
        display: block;
        color: var(--primary-dark);
        font-size: 17px;
        font-weight: 600;
    }

    .menu-panel-head-text small {
        color: #6f746f;
        font-size: 12px;
    }

    .menu-panel-meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 10px var(--drawer-pad-x) 0;
    }

    .menu-panel-meta a {
        border: 1px solid #e9dec9;
        background: #f7f1e6;
        color: var(--primary-dark);
        border-radius: 10px;
        padding: 8px 10px;
        font-size: 13px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .menu-panel-meta a svg.icon {
        color: #b89257;
    }

    .menu-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 10px;
        border: 1px solid #c5eaf0;
        background: #ffffff;
        color: var(--primary-dark);
        cursor: pointer;
    }

    .menu-close:hover {
        background: var(--surface-soft);
    }

    .menu-panel .menu {
        padding: 10px var(--drawer-pad-x) 16px;
        max-height: calc(100vh - 214px);
        overflow-y: auto;
    }

    .menu li {
        width: 100%;
        margin-bottom: 8px;
        border-radius: 12px;
        background: #ffffff;
        border: 1px solid #edf7f1;
        overflow: hidden;
    }

    .menu a {
        width: 100%;
        padding: 12px 12px;
        border-radius: 12px;
        background: transparent;
        border: 0;
        font-weight: 600;
    }

    .menu a.active {
        background: #f8f0e4;
    }

    .menu-link-main {
        justify-content: space-between;
    }

    .has-submenu {
        flex-wrap: wrap;
        align-items: center;
    }

    .has-submenu > a {
        width: auto;
        flex: 1;
    }

    .submenu-toggle {
        width: 34px;
        height: 34px;
        margin-left: auto;
        margin-right: 6px;
        border: 1px solid #d5f0f4;
        background: #f7fcfd;
    }

    .submenu {
        flex-basis: 100%;
        position: static;
        width: 100%;
        min-width: 0;
        max-height: none;
        border-radius: 10px;
        box-shadow: none;
        border: 1px solid #d5f0f4;
        margin: 0 var(--drawer-pad-x) 8px;
        background: #f7fcfd;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .submenu::-webkit-scrollbar,
    .menu-panel .menu::-webkit-scrollbar {
        width: 8px;
    }

    .submenu::-webkit-scrollbar-thumb,
    .menu-panel .menu::-webkit-scrollbar-thumb {
        background: #c3e5e8;
        border-radius: 999px;
    }

    .has-submenu.is-open .submenu {
        display: block;
    }

    .menu > li:last-child {
        margin-bottom: 0;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        margin-right: 15px;
        width: auto;
        max-width: none;
        flex-shrink: 0;
    }

    .home-slider {
        min-height: 430px;
    }

    .service-v2-grid {
        grid-template-columns: 1fr;
    }

    .services-v3-grid {
        grid-template-columns: 1fr;
    }

    .listing-service-grid,
    .listing-district-grid,
    .detail-hero-grid,
    .detail-benefit-wrap,
    .about-page-hero-grid,
    .about-values-grid,
    .region-highlight-grid,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .services-v3-feature {
        min-height: 300px;
    }

    .services-v3-list {
        grid-template-columns: 1fr;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .work-video-grid {
        grid-template-columns: 1fr;
    }

    .slide-content {
        left: 14px;
        right: 14px;
        bottom: 16px;
    }

    .slide-content p {
        font-size: 15px;
    }

    .brand-logo {
        width: 230px;
    }

    .menu-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(8, 72, 80, 0.45);
        border: 0;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.24s ease;
        z-index: 410;
    }

    .menu-backdrop.is-visible {
        opacity: 1;
        pointer-events: auto;
    }

    .menu-panel-footer {
        display: block;
        border-top: 1px solid #e3d4bc;
        padding: 12px var(--drawer-pad-x) 14px;
        background: linear-gradient(180deg, #ffffff 0%, #f7f1e6 100%);
    }

    .menu-panel-footer p {
        margin: 0 0 10px;
        color: var(--primary-dark);
        font-size: 13px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .menu-panel-footer p svg.icon {
        color: #b89257;
    }

    .menu-panel-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .menu-panel-actions .btn {
        text-align: center;
        border-radius: 10px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .about-v2-images {
        grid-template-columns: 1fr;
    }

    .service-v2-card {
        grid-template-columns: 1fr;
    }

    .service-v2-card img {
        height: 170px;
    }

    .services-v3-item {
        grid-template-columns: 1fr;
    }

    .listing-card {
        grid-template-columns: 1fr;
    }

    .listing-card img {
        height: 180px;
    }

    .services-v3-item img {
        height: 170px;
    }

    .detail-hero-image img {
        height: 250px;
    }

    .about-page-hero-image img {
        height: 250px;
    }

    .about-page-kpis {
        grid-template-columns: 1fr;
    }

    .faq-side {
        position: static;
    }

    .contact-quick-grid {
        grid-template-columns: 1fr;
    }

    .rating-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-slider {
        padding: 16px 12px 36px;
    }

    .review-nav {
        display: none !important;
    }

    .review-slider .review-card {
        flex: 0 0 100%;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .hero-v2 {
        background:
            linear-gradient(100deg, rgba(19, 47, 53, 0.92) 0%, rgba(19, 47, 53, 0.82) 100%),
            url("klasik-masaj.png") center/cover no-repeat;
    }

    body {
        padding-bottom: 84px;
    }

    .topbar-actions {
        display: none;
    }

    .slider-nav {
        display: none;
    }

    .home-slider {
        min-height: 360px;
    }

    .mobile-sticky-cta {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 0;
        z-index: 120;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 8px;
        padding: 8px 2px calc(8px + env(safe-area-inset-bottom));
        pointer-events: none;
    }

    .sticky-call {
        pointer-events: auto;
        width: 60%;
        justify-self: start;
        text-align: center;
        font-weight: 700;
        border-radius: 10px;
        padding: 9px 10px;
        font-size: 13px;
        line-height: 1.2;
        box-shadow: 0 10px 22px rgba(19, 47, 53, 0.22);
        background: #ffffff !important;
        color: var(--primary-dark) !important;
        border: 1px solid rgba(189, 160, 107, 0.75) !important;
        animation: breathe-call 2.2s ease-in-out infinite;
    }

    .sticky-call svg.icon {
        margin-right: 6px;
    }

    .sticky-wa {
        pointer-events: auto;
        width: 44px;
        height: 44px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #25D366;
        color: #fff;
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
    }

    .sticky-wa svg.icon {
        width: 22px;
        height: 22px;
    }

    .review-slider {
        padding-bottom: 40px;
    }

    .review-slider .review-card {
        flex: 0 0 100%;
    }

    .before-after-pair {
        grid-template-columns: 1fr;
    }

    .before-after-cell img {
        height: 220px;
    }

    .work-video-grid {
        grid-template-columns: 1fr;
    }

    .topbar-inner p {
        font-size: 13px;
    }
}
