/*
Theme Name: BCONS Center City
Theme URI: https://drive.google.com/drive/folders/15F5dFrxE5zLkXrFlTHVnyjSv4YstY1f5
Author: Codex
Author URI: https://openai.com
Description: Responsive landing theme for BCONS Center City with project sections, floating contact buttons, lead form, Customizer options, custom CSS, and custom JS.
Version: 1.0.0
Requires at least: 6.5
Requires PHP: 8.1
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bcons-center-city
Tags: custom-logo, custom-menu, featured-images, one-column, theme-options
*/

:root {
  --bcc-ink: #17212f;
  --bcc-ink-soft: #445064;
  --bcc-paper: #f7f5ef;
  --bcc-white: #fff;
  --bcc-line: rgba(23, 33, 47, 0.14);
  --bcc-navy: #043b59;
  --bcc-blue: #075d83;
  --bcc-gold: #f3c63c;
  --bcc-gold-deep: #d9a600;
  --bcc-success: #018c6e;
  --bcc-radius: 8px;
  --bcc-shadow: 0 18px 60px rgba(13, 28, 44, 0.18);
  --bcc-max: 1180px;
  --bcc-header-h: 76px;
  --bcc-font-body: "Roboto", "Arial", sans-serif;
  --bcc-font-display: "Montserrat", "Arial", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--bcc-ink);
  background: var(--bcc-paper);
  font-family: var(--bcc-font-body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.bcc-menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 10000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--bcc-white);
  background: var(--bcc-navy);
}

.bcc-site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--bcc-header-h);
  color: var(--bcc-white);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.admin-bar .bcc-site-header {
  top: 32px;
}

.bcc-scrolled .bcc-site-header,
.bcc-menu-open .bcc-site-header,
body:not(.home) .bcc-site-header {
  background: rgba(4, 59, 89, 0.98);
  box-shadow: 0 12px 32px rgba(4, 31, 49, 0.2);
}

.bcc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, var(--bcc-max));
  height: 100%;
  margin: 0 auto;
  gap: 24px;
}

.bcc-brand {
  display: inline-flex;
  align-items: center;
  min-width: 172px;
  max-width: 242px;
  gap: 12px;
}

.bcc-brand img {
  width: auto;
  max-height: 52px;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.26));
}

.bcc-brand-fallback {
  font-family: var(--bcc-font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.bcc-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.bcc-nav ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 24px;
  list-style: none;
}

.bcc-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--bcc-font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

.bcc-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--bcc-gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.bcc-nav a:hover::after,
.bcc-nav a:focus-visible::after {
  transform: scaleX(1);
}

.bcc-header-cta,
.bcc-button,
.bcc-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--bcc-font-display);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bcc-header-cta {
  color: var(--bcc-ink);
  background: var(--bcc-gold);
  border-color: var(--bcc-gold);
  box-shadow: 0 10px 28px rgba(243, 198, 60, 0.32);
}

.bcc-header-cta:hover,
.bcc-header-cta:focus-visible {
  color: var(--bcc-navy);
  background: var(--bcc-white);
  border-color: var(--bcc-white);
  transform: translateY(-1px);
}

.bcc-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--bcc-white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  cursor: pointer;
}

.bcc-menu-toggle span,
.bcc-menu-toggle span::before,
.bcc-menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.bcc-menu-toggle span {
  position: relative;
}

.bcc-menu-toggle span::before,
.bcc-menu-toggle span::after {
  position: absolute;
  left: 0;
}

.bcc-menu-toggle span::before {
  top: -6px;
}

.bcc-menu-toggle span::after {
  top: 6px;
}

.bcc-menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.bcc-menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.bcc-menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.bcc-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  color: var(--bcc-white);
  background: var(--bcc-navy);
  isolation: isolate;
}

.bcc-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.bcc-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bcc-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 31, 49, 0.78) 0%, rgba(4, 31, 49, 0.44) 34%, rgba(4, 31, 49, 0.08) 68%),
    linear-gradient(180deg, rgba(2, 17, 30, 0.52) 0%, rgba(2, 17, 30, 0.08) 38%, rgba(2, 17, 30, 0.72) 100%);
  content: "";
}

.bcc-hero-inner {
  display: grid;
  align-items: end;
  width: min(100% - 48px, var(--bcc-max));
  min-height: 100svh;
  margin: 0 auto;
  padding: calc(var(--bcc-header-h) + 52px) 0 84px;
}

.bcc-hero-copy {
  max-width: 760px;
}

.bcc-kicker,
.bcc-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-family: var(--bcc-font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--bcc-gold);
  text-transform: uppercase;
}

.bcc-kicker::before,
.bcc-section-kicker::before {
  width: 38px;
  height: 1px;
  background: currentColor;
  content: "";
}

.bcc-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--bcc-font-display);
  font-size: clamp(2.55rem, 8vw, 6.35rem);
  font-weight: 500;
  line-height: 0.96;
  text-transform: uppercase;
}

.bcc-hero-lead {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: clamp(1.04rem, 2.4vw, 1.45rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.bcc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 34px;
  gap: 14px;
}

.bcc-hero-actions-strong {
  align-items: center;
}

.bcc-button {
  min-height: 48px;
}

.bcc-button-primary,
.bcc-submit {
  color: var(--bcc-ink);
  background: var(--bcc-gold);
  border-color: var(--bcc-gold);
}

.bcc-button-hot {
  min-height: 54px;
  padding-inline: 28px;
  color: var(--bcc-ink);
  background: linear-gradient(135deg, #ffd84e, #f3b018);
  border-color: #ffd84e;
  box-shadow: 0 16px 40px rgba(243, 176, 24, 0.36);
}

.bcc-button-phone {
  min-height: 54px;
  color: var(--bcc-white);
  background: #d9342b;
  border-color: #ef6b64;
  box-shadow: 0 16px 40px rgba(217, 52, 43, 0.32);
}

.bcc-button-zalo {
  min-height: 54px;
  color: var(--bcc-white);
  background: #0068b7;
  border-color: #36a7ff;
  box-shadow: 0 16px 40px rgba(0, 104, 183, 0.32);
}

.bcc-button-primary:hover,
.bcc-button-primary:focus-visible,
.bcc-button-hot:hover,
.bcc-button-hot:focus-visible,
.bcc-button-phone:hover,
.bcc-button-phone:focus-visible,
.bcc-button-zalo:hover,
.bcc-button-zalo:focus-visible,
.bcc-submit:hover,
.bcc-submit:focus-visible {
  background: var(--bcc-white);
  border-color: var(--bcc-white);
  color: var(--bcc-navy);
  transform: translateY(-1px);
}

.bcc-button-ghost {
  color: var(--bcc-white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.68);
}

.bcc-button-ghost:hover,
.bcc-button-ghost:focus-visible {
  color: var(--bcc-ink);
  background: var(--bcc-white);
  border-color: var(--bcc-white);
  transform: translateY(-1px);
}

.bcc-hero-note {
  display: flex;
  flex-wrap: wrap;
  margin-top: 22px;
  gap: 10px;
}

.bcc-hero-note span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-family: var(--bcc-font-display);
  font-size: 0.78rem;
  font-weight: 700;
}

.bcc-scroll-hint {
  position: absolute;
  right: clamp(24px, 6vw, 78px);
  bottom: 96px;
  display: inline-grid;
  place-items: center;
  width: 74px;
  height: 74px;
  color: var(--bcc-white);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
}

.bcc-section {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 112px) 0;
  background: var(--bcc-paper);
  contain: paint;
  isolation: isolate;
}

.bcc-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: none;
}

.bcc-section-dark {
  color: var(--bcc-white);
  background:
    linear-gradient(135deg, #043b59 0%, #08283a 54%, #075d83 100%);
}

.bcc-section-soft {
  background:
    linear-gradient(180deg, #fbfaf5 0%, #eef3f2 100%);
}

.bcc-section-clean {
  background: #f8f6ef;
}

.bcc-section-gradient {
  background:
    linear-gradient(135deg, #f8f6ef 0%, #eef5f3 52%, #fff5d8 100%);
}

.bcc-section-vector::before,
.bcc-section-vector-light::before,
.bcc-section-photo::before,
.bcc-section-price-bg::before,
.bcc-section-dark-focus::before {
  content: "";
}

.bcc-section-vector::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='720'%20height='520'%20viewBox='0%200%20720%20520'%3E%3Cpath%20d='M80%20420L360%2080l280%20340H80Z'%20fill='none'%20stroke='%23043B59'%20stroke-opacity='.20'%20stroke-width='2'/%3E%3Cpath%20d='M180%20420l180-220%20180%20220H180Z'%20fill='none'%20stroke='%23F3C63C'%20stroke-opacity='.35'%20stroke-width='3'/%3E%3Cpath%20d='M0%20520h720M0%20460h720M0%20400h720'%20stroke='%23043B59'%20stroke-opacity='.08'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right -120px top 38px;
  background-size: min(720px, 76vw) auto;
  opacity: 0.52;
}

.bcc-section-vector-light::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='760'%20height='420'%20viewBox='0%200%20760%20420'%3E%3Cpath%20d='M40%20340h680L560%2080H200L40%20340Z'%20fill='none'%20stroke='%23043B59'%20stroke-opacity='.14'%20stroke-width='2'/%3E%3Cpath%20d='M180%20340h400L500%20200H260L180%20340Z'%20fill='none'%20stroke='%23D9A600'%20stroke-opacity='.30'%20stroke-width='3'/%3E%3Cpath%20d='M80%20340l120-260M680%20340L560%2080'%20stroke='%23075D83'%20stroke-opacity='.10'%20stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left -150px bottom 12px;
  background-size: min(760px, 82vw) auto;
  opacity: 0.4;
}

.bcc-section-photo-location::before {
  background:
    linear-gradient(90deg, rgba(248, 246, 239, 0.96) 0%, rgba(248, 246, 239, 0.9) 48%, rgba(248, 246, 239, 0.76) 100%),
    url("assets/img/map-location.jpg") center / cover no-repeat;
}

.bcc-section-dark-focus::before {
  background-image:
    linear-gradient(110deg, rgba(243, 198, 60, 0.16) 0%, rgba(243, 198, 60, 0) 28%),
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='720'%20height='520'%20viewBox='0%200%20720%20520'%3E%3Cpath%20d='M80%20420L360%2080l280%20340H80Z'%20fill='none'%20stroke='%23FFFFFF'%20stroke-opacity='.18'%20stroke-width='2'/%3E%3Cpath%20d='M180%20420l180-220%20180%20220H180Z'%20fill='none'%20stroke='%23F3C63C'%20stroke-opacity='.26'%20stroke-width='3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left top, right -110px bottom -60px;
  background-size: auto, min(720px, 76vw) auto;
}

.bcc-section-price-bg {
  background:
    linear-gradient(135deg, #eef3f2 0%, #f8f6ef 54%, #f8e7b0 100%);
}

.bcc-section-price-bg::before {
  background:
    linear-gradient(112deg, rgba(4, 59, 89, 0) 0%, rgba(4, 59, 89, 0.08) 56%, rgba(4, 59, 89, 0.12) 100%);
}

.bcc-container {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, var(--bcc-max));
  margin: 0 auto;
}

.bcc-section-head {
  max-width: 770px;
  margin-bottom: 34px;
}

.bcc-section-title {
  margin: 0;
  font-family: var(--bcc-font-display);
  font-size: clamp(2rem, 4.2vw, 4.65rem);
  font-weight: 500;
  line-height: 1.02;
  color: inherit;
  text-transform: uppercase;
}

.bcc-section-lead {
  margin: 18px 0 0;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  color: var(--bcc-ink-soft);
}

.bcc-section-dark .bcc-section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.bcc-overview-grid,
.bcc-location-grid,
.bcc-contact-grid,
.bcc-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.bcc-proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.bcc-proof-list div {
  min-height: 138px;
  padding: 24px;
  background: var(--bcc-white);
  border: 1px solid var(--bcc-line);
  border-radius: var(--bcc-radius);
  box-shadow: 0 10px 32px rgba(13, 28, 44, 0.08);
}

.bcc-proof-list strong {
  display: block;
  font-family: var(--bcc-font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  color: var(--bcc-navy);
}

.bcc-proof-list span {
  display: block;
  margin-top: 10px;
  color: var(--bcc-ink-soft);
}

.bcc-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
  border-top: 1px solid var(--bcc-line);
  border-left: 1px solid var(--bcc-line);
}

.bcc-fact {
  min-height: 124px;
  padding: 24px;
  border-right: 1px solid var(--bcc-line);
  border-bottom: 1px solid var(--bcc-line);
}

.bcc-fact strong {
  display: block;
  font-family: var(--bcc-font-display);
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  line-height: 1;
  color: var(--bcc-navy);
}

.bcc-fact span {
  display: block;
  margin-top: 10px;
  color: var(--bcc-ink-soft);
}

.bcc-image-frame {
  position: relative;
  overflow: hidden;
  background: #dce3e6;
  border-radius: var(--bcc-radius);
  box-shadow: var(--bcc-shadow);
}

.bcc-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.bcc-zoom-frame {
  cursor: zoom-in;
}

.bcc-zoom-frame span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  color: var(--bcc-white);
  background: rgba(4, 59, 89, 0.86);
  border-radius: 999px;
  font-family: var(--bcc-font-display);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.bcc-location-list,
.bcc-check-list {
  display: grid;
  margin: 24px 0 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.bcc-location-list li,
.bcc-check-list li {
  position: relative;
  padding-left: 24px;
}

.bcc-location-list li::before,
.bcc-check-list li::before {
  position: absolute;
  top: 0.74em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--bcc-gold);
  border-radius: 999px;
  content: "";
}

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

.bcc-gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  color: var(--bcc-white);
  background: var(--bcc-navy);
  border: 0;
  border-radius: var(--bcc-radius);
  cursor: zoom-in;
  box-shadow: 0 12px 36px rgba(13, 28, 44, 0.12);
}

.bcc-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bcc-gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 31, 49, 0) 42%, rgba(4, 31, 49, 0.72) 100%);
  content: "";
}

.bcc-gallery-item span {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  font-family: var(--bcc-font-display);
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}

.bcc-gallery-item:hover img,
.bcc-gallery-item:focus-visible img {
  transform: scale(1.045);
}

.bcc-map-grid,
.bcc-interior-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bcc-interior-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
}

.bcc-map-card,
.bcc-zoom-card {
  text-align: left;
  cursor: zoom-in;
}

.bcc-map-card {
  overflow: hidden;
  padding: 0;
  color: var(--bcc-ink);
  background: var(--bcc-white);
  border: 1px solid var(--bcc-line);
  border-radius: var(--bcc-radius);
  box-shadow: 0 14px 44px rgba(13, 28, 44, 0.12);
}

.bcc-map-card img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  background: #f4f4f2;
  transition: transform 0.35s ease;
}

.bcc-map-card span,
.bcc-map-card small {
  display: block;
  padding-inline: 18px;
}

.bcc-map-card span {
  padding-top: 16px;
  font-family: var(--bcc-font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.bcc-map-card small {
  padding-top: 6px;
  padding-bottom: 18px;
  color: var(--bcc-ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.bcc-map-card:hover img,
.bcc-map-card:focus-visible img,
.bcc-zoom-card:hover img,
.bcc-zoom-card:focus-visible img {
  transform: scale(1.035);
}

.bcc-interior-card img {
  aspect-ratio: 16 / 9;
}

.bcc-amenity-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 58px);
}

.bcc-amenity-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--bcc-radius);
}

button.bcc-amenity-card,
button.bcc-plan-card,
button.bcc-product-card,
.bcc-brochure button {
  width: 100%;
  padding: 0;
  font: inherit;
  text-align: left;
  border: 0;
  cursor: zoom-in;
}

.bcc-amenity-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.bcc-amenity-card h3 {
  margin: 0;
  padding: 16px 18px 18px;
  font-family: var(--bcc-font-display);
  font-size: 1rem;
  text-transform: uppercase;
}

.bcc-amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.bcc-plan-tabs {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px;
  gap: 10px;
}

.bcc-tab-button {
  min-height: 42px;
  padding: 0 16px;
  color: var(--bcc-ink);
  background: var(--bcc-white);
  border: 1px solid var(--bcc-line);
  border-radius: 999px;
  font-family: var(--bcc-font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.bcc-tab-button[aria-selected="true"] {
  color: var(--bcc-ink);
  background: var(--bcc-gold);
  border-color: var(--bcc-gold);
}

.bcc-plan-panel[hidden] {
  display: none;
}

.bcc-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.bcc-plan-card {
  overflow: hidden;
  background: var(--bcc-white);
  border: 1px solid var(--bcc-line);
  border-radius: var(--bcc-radius);
}

.bcc-plan-card img {
  width: 100%;
  aspect-ratio: 1.38 / 1;
  object-fit: contain;
  background: #f4f4f2;
}

.bcc-plan-card h3 {
  margin: 0;
  padding: 16px 18px;
  font-family: var(--bcc-font-display);
  font-size: 0.98rem;
  text-transform: uppercase;
}

.bcc-plan-note {
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 38px);
  background: var(--bcc-white);
  border: 1px solid var(--bcc-line);
  border-radius: var(--bcc-radius);
}

.bcc-plan-note strong {
  font-family: var(--bcc-font-display);
  font-size: 1.2rem;
  color: var(--bcc-navy);
  text-transform: uppercase;
}

.bcc-plan-note ul {
  display: grid;
  margin: 16px 0 0;
  padding-left: 20px;
  gap: 10px;
  color: var(--bcc-ink-soft);
}

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

.bcc-product-card {
  overflow: hidden;
  background: var(--bcc-white);
  border-radius: var(--bcc-radius);
  box-shadow: 0 14px 44px rgba(13, 28, 44, 0.12);
}

.bcc-product-card img {
  width: 100%;
  aspect-ratio: 0.72 / 1;
  object-fit: cover;
  object-position: top center;
  background: #f4f4f2;
}

.bcc-product-card div {
  padding: 18px;
}

.bcc-product-card h3 {
  margin: 0;
  font-family: var(--bcc-font-display);
  font-size: 1rem;
  text-transform: uppercase;
}

.bcc-product-card p {
  margin: 8px 0 0;
  color: var(--bcc-ink-soft);
}

.bcc-product-grid-compact {
  margin-top: 16px;
}

.bcc-unit-carousel {
  margin-top: 18px;
}

.bcc-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.bcc-carousel-head strong {
  display: block;
  font-family: var(--bcc-font-display);
  font-size: 1.05rem;
  color: var(--bcc-navy);
  text-transform: uppercase;
}

.bcc-carousel-head span {
  display: block;
  margin-top: 4px;
  color: var(--bcc-ink-soft);
}

.bcc-carousel-controls {
  display: flex;
  gap: 8px;
}

.bcc-carousel-button {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--bcc-white);
  background: var(--bcc-navy);
  border: 1px solid rgba(4, 59, 89, 0.18);
  border-radius: 999px;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.bcc-carousel-button:hover,
.bcc-carousel-button:focus-visible {
  background: var(--bcc-blue);
  transform: translateY(-1px);
}

.bcc-product-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 4px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--bcc-navy) rgba(4, 59, 89, 0.12);
}

.bcc-product-carousel::-webkit-scrollbar {
  height: 10px;
}

.bcc-product-carousel::-webkit-scrollbar-track {
  background: rgba(4, 59, 89, 0.12);
  border-radius: 999px;
}

.bcc-product-carousel::-webkit-scrollbar-thumb {
  background: var(--bcc-navy);
  border-radius: 999px;
}

.bcc-carousel-card {
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: 0;
  scroll-snap-align: start;
}

.bcc-pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: clamp(24px, 4vw, 42px);
}

.bcc-pricing-panel {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 54px);
  color: var(--bcc-white);
  background: var(--bcc-navy);
  border-radius: var(--bcc-radius);
}

.bcc-pricing-panel h2 {
  margin: 0;
  font-family: var(--bcc-font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1.04;
  text-transform: uppercase;
}

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

.bcc-brochure img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  background: var(--bcc-white);
  border-radius: var(--bcc-radius);
  box-shadow: 0 14px 44px rgba(13, 28, 44, 0.12);
}

.bcc-brochure button {
  overflow: hidden;
  background: transparent;
  border-radius: var(--bcc-radius);
}

.bcc-payment-list {
  display: grid;
  margin: 18px 0 0;
  padding-left: 20px;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.bcc-lead-alert {
  margin: 0 0 18px;
  padding: 12px 14px;
  color: #0d513f;
  background: #dff7ee;
  border: 1px solid #ace9d5;
  border-radius: var(--bcc-radius);
}

.bcc-contact-card {
  padding: clamp(28px, 4vw, 42px);
  background: var(--bcc-white);
  border-radius: var(--bcc-radius);
  box-shadow: var(--bcc-shadow);
}

.bcc-contact-lines {
  display: grid;
  margin: 24px 0 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.bcc-contact-lines strong {
  display: block;
  font-family: var(--bcc-font-display);
  font-size: 0.78rem;
  color: var(--bcc-navy);
  text-transform: uppercase;
}

.bcc-form {
  display: grid;
  gap: 14px;
}

.bcc-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.bcc-field label {
  display: block;
  margin: 0 0 6px;
  font-family: var(--bcc-font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.bcc-field input,
.bcc-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--bcc-ink);
  background: #f7f7f4;
  border: 1px solid var(--bcc-line);
  border-radius: 6px;
}

.bcc-field textarea {
  min-height: 118px;
  resize: vertical;
}

.bcc-submit {
  width: fit-content;
  border-radius: 999px;
}

.bcc-contact-cta {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
  gap: 12px;
}

.bcc-floating-actions {
  position: fixed;
  z-index: 999;
  right: 22px;
  bottom: 22px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 10px;
  max-width: min(92vw, 720px);
  pointer-events: none;
}

.bcc-float-button {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 8px 15px 8px 10px;
  gap: 9px;
  color: var(--bcc-ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(4, 59, 89, 0.14);
  border-radius: 999px;
  font-family: var(--bcc-font-display);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(4, 31, 49, 0.18);
  pointer-events: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.bcc-float-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--bcc-white);
  background: var(--bcc-blue);
  border-radius: 999px;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}

.bcc-float-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

.bcc-float-icon-text {
  font-size: 0.76rem;
  font-weight: 800;
}

.bcc-float-label {
  white-space: nowrap;
}

.bcc-float-quote .bcc-float-icon {
  color: var(--bcc-navy);
  background: linear-gradient(135deg, #ffe071, var(--bcc-gold));
}

.bcc-float-zalo .bcc-float-icon {
  background: #0878d1;
}

.bcc-float-call {
  color: var(--bcc-white);
  background: var(--bcc-navy);
  border-color: rgba(255, 255, 255, 0.28);
}

.bcc-float-call .bcc-float-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #40d94e, #15a92e);
  box-shadow: 0 10px 24px rgba(21, 169, 46, 0.32);
}

.bcc-float-messenger .bcc-float-icon {
  background: linear-gradient(135deg, #4f92ee, #245db8);
}

.bcc-float-sms .bcc-float-icon {
  background: linear-gradient(135deg, #46e779, #12a94f);
}

.bcc-float-button:hover,
.bcc-float-button:focus-visible {
  color: var(--bcc-navy);
  background: var(--bcc-white);
  box-shadow: 0 18px 42px rgba(4, 31, 49, 0.22);
  transform: translateY(-2px);
}

.bcc-site-footer {
  padding: 34px 0 42px;
  color: rgba(255, 255, 255, 0.76);
  background: #08283a;
}

.bcc-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, var(--bcc-max));
  margin: 0 auto;
  gap: 18px;
}

.bcc-footer-inner strong {
  display: block;
  color: var(--bcc-white);
  font-family: var(--bcc-font-display);
  text-transform: uppercase;
}

.bcc-lightbox {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(2, 17, 30, 0.86);
}

.bcc-lightbox.is-open {
  display: flex;
}

.bcc-lightbox img {
  max-width: min(100%, 1280px);
  max-height: 88vh;
  object-fit: contain;
  background: var(--bcc-white);
  border-radius: var(--bcc-radius);
}

.bcc-lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--bcc-white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  cursor: pointer;
}

.bcc-content-wrap {
  width: min(100% - 48px, var(--bcc-max));
  margin: 120px auto 70px;
}

.bcc-post {
  padding: 34px;
  background: var(--bcc-white);
  border-radius: var(--bcc-radius);
}

@media (max-width: 1060px) {
  .bcc-menu-toggle {
    display: inline-flex;
  }

  .bcc-nav {
    position: fixed;
    top: var(--bcc-header-h);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    width: 100%;
    max-height: calc(100svh - var(--bcc-header-h));
    padding: 16px 24px 28px;
    overflow: auto;
    background: rgba(4, 59, 89, 0.98);
  }

  .admin-bar .bcc-nav {
    top: calc(var(--bcc-header-h) + 32px);
  }

  .bcc-menu-open .bcc-nav {
    display: grid;
    gap: 18px;
  }

  .bcc-nav ul {
    display: grid;
    align-items: stretch;
    gap: 4px;
  }

  .bcc-nav a {
    min-height: 48px;
  }

  .bcc-header-cta {
    width: fit-content;
  }

  .bcc-scroll-hint {
    display: none;
  }

  .bcc-gallery-grid,
  .bcc-product-grid,
  .bcc-map-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bcc-carousel-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 860px) {
  :root {
    --bcc-header-h: 68px;
  }

  .admin-bar .bcc-site-header {
    top: 46px;
  }

  .admin-bar .bcc-nav {
    top: calc(var(--bcc-header-h) + 46px);
  }

  .bcc-header-inner,
  .bcc-container,
  .bcc-hero-inner,
  .bcc-footer-inner,
  .bcc-content-wrap {
    width: min(100% - 32px, var(--bcc-max));
  }

  .bcc-brand {
    min-width: 136px;
    max-width: 190px;
  }

  .bcc-brand img {
    max-height: 44px;
  }

  .bcc-hero-inner {
    align-items: center;
    padding: calc(var(--bcc-header-h) + 36px) 0 64px;
  }

  .bcc-hero::before {
    background:
      linear-gradient(180deg, rgba(2, 17, 30, 0.38) 0%, rgba(2, 17, 30, 0.64) 48%, rgba(2, 17, 30, 0.86) 100%),
      linear-gradient(90deg, rgba(4, 31, 49, 0.58), rgba(4, 31, 49, 0.18));
  }

  .bcc-overview-grid,
  .bcc-location-grid,
  .bcc-amenity-layout,
  .bcc-pricing,
  .bcc-contact-grid,
  .bcc-proof-grid {
    grid-template-columns: 1fr;
  }

  .bcc-image-frame img {
    min-height: 300px;
  }

  .bcc-fact-grid,
  .bcc-plan-grid,
  .bcc-amenity-grid,
  .bcc-form-row,
  .bcc-proof-list,
  .bcc-interior-grid {
    grid-template-columns: 1fr;
  }

  .bcc-brochure {
    grid-template-columns: 1fr;
  }

  .bcc-footer-inner {
    display: grid;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }

  .bcc-hero h1 {
    font-size: clamp(2.35rem, 16vw, 4.8rem);
  }

  .bcc-hero-actions,
  .bcc-plan-tabs {
    display: grid;
  }

  .bcc-button,
  .bcc-tab-button,
  .bcc-submit {
    width: 100%;
  }

  .bcc-gallery-grid,
  .bcc-product-grid,
  .bcc-map-grid {
    grid-template-columns: 1fr;
  }

  .bcc-carousel-head {
    display: grid;
  }

  .bcc-carousel-controls {
    justify-content: end;
  }

  .bcc-carousel-card {
    flex-basis: 100%;
  }

  .bcc-hero-note {
    display: grid;
  }

  .bcc-floating-actions {
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    max-width: none;
    padding: 8px max(8px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(4, 59, 89, 0.14);
    box-shadow: 0 -12px 34px rgba(4, 31, 49, 0.18);
  }

  .bcc-float-button {
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    min-height: 68px;
    padding: 5px 2px 3px;
    gap: 5px;
    color: var(--bcc-ink);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 0.67rem;
    line-height: 1.05;
    text-align: center;
    text-transform: none;
  }

  .bcc-float-button:hover,
  .bcc-float-button:focus-visible {
    color: var(--bcc-navy);
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .bcc-float-icon {
    width: 38px;
    height: 38px;
    box-shadow: 0 8px 18px rgba(4, 31, 49, 0.16);
  }

  .bcc-float-icon svg {
    width: 20px;
    height: 20px;
  }

  .bcc-float-icon-text {
    font-size: 0.76rem;
  }

  .bcc-float-label {
    display: block;
    width: 100%;
    overflow: hidden;
    color: var(--bcc-ink);
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .bcc-float-call {
    margin-top: -18px;
    transform: translateY(-20px);
  }

  .bcc-float-call:hover,
  .bcc-float-call:focus-visible {
    transform: translateY(-20px);
  }

  .bcc-float-call .bcc-float-icon {
    width: 58px;
    height: 58px;
    border: 4px solid var(--bcc-white);
    box-shadow: 0 14px 30px rgba(21, 169, 46, 0.34);
  }

  .bcc-float-call .bcc-float-label {
    margin-top: -8px;
    color: var(--bcc-navy);
    font-weight: 800;
  }
}
