/* ============================================================
   VungTau Stay — Design System
   Ngọc lục bảo · San hô · Kem
   Emerald #0E6E5E + Coral #FF6B4A + Cream #FFF8F0
   ------------------------------------------------------------
   Vì sao KHÔNG dùng xanh lam: Blanca Stay (site anh em, cùng
   địa bàn Vũng Tàu) dùng xanh thép #1E6491. Chỉ đổi sắc độ xanh
   lam thì hai site vẫn bị nhìn ra là một nhà — đã thử và bị bắt
   lỗi. Ngọc lục bảo vẫn là "màu nước" nhưng khác HỌ MÀU nên tách
   bạch ngay từ cái nhìn đầu; san hô làm nút bấm nổi trên feed
   Facebook/Zalo, nơi phần lớn khách nhìn thấy brand lần đầu.

   Tên biến giữ nguyên (--ocean, --sea, --foam…) để không phải
   sửa hàng trăm chỗ dùng trong CSS/blade — chỉ giá trị đổi.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* --- Kem / neutral (nền kem #FFF8F0) --- */
  --sand-50:  #FFFDFA;
  --sand-100: #FFF8F0;
  --sand-200: #F1E4D5;
  --sand-300: #DFCBB4;
  --ink:      #10302B;   /* mực xanh lục đậm cho chữ */
  --ink-soft: #4A5F59;
  --ink-mute: #8B9A94;

  /* --- Ngọc lục bảo (giữ tên "ocean" cho tương thích) --- */
  --ocean-deep: #0A4A3F;  /* đậm nhất — nền tối, tiêu đề */
  --ocean:      #0E6E5E;  /* màu chủ đạo */
  --ocean-600:  #14897A;  /* sáng hơn — link, hover */
  --sea:        #35B79E;  /* xanh ngọc nhạt — viền hover, icon */
  --foam:       #C6E8DF;
  --foam-soft:  #E6F4EF;

  /* --- San hô: điểm nhấn chính (nút hành động, nhãn) ---
     Giữ luôn tên --sun vì CSS/blade cũ tham chiếu tên đó. */
  --coral:      #FF6B4A;
  --coral-deep: #E85535;
  --sun:        #FF6B4A;

  /* Sao đánh giá giữ màu hổ phách — người dùng đã quen sao vàng ở mọi nền tảng
     đặt phòng; đổi sao sang san hô chỉ gây phân vân, không được gì. */
  --star:       #F5A623;

  /* --- Surfaces --- */
  --surface:    #FFFFFF;
  --bg:         var(--sand-50);

  /* --- Type --- */
  --display: 'Fraunces', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --logo: 'Fraunces', Georgia, serif;

  /* Brand wordmark gradient — ngọc lục bảo chuyển sang xanh ngọc nhạt */
  --brand-grad: linear-gradient(178deg, #0A4A3F 0%, #0E6E5E 48%, #35B79E 100%);

  /* --- Radii --- */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* --- Shadows (ám sắc lục thay vì navy) --- */
  --shadow-sm: 0 2px 10px rgba(10, 60, 50, 0.07);
  --shadow-md: 0 12px 34px rgba(10, 60, 50, 0.11);
  --shadow-lg: 0 28px 70px rgba(10, 60, 50, 0.17);

  --maxw: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Fraunces đặc và rộng hơn Cormorant Garamond (font cũ) khá nhiều: cùng cỡ chữ
   và cùng weight 600 sẽ nặng nề. Giảm xuống 600 nhưng siết letter-spacing âm
   hơn và hạ line-height để tiêu đề gọn lại. `opsz` để font tự chọn dáng theo
   cỡ chữ — tiêu đề lớn mảnh nét hơn, tiêu đề nhỏ dày nét hơn cho dễ đọc. */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  font-optical-sizing: auto;
  line-height: 1.06;
  margin: 0;
  letter-spacing: -0.022em;
  color: var(--ocean-deep);
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* --- Eyebrow label --- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ocean-600);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--sea);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--sea);
  display: inline-block;
}

/* secondary language line */
.lang-en { font-style: italic; color: var(--ink-mute); font-family: var(--display); font-size: 1.05em; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--ocean);
  color: #fff;
  box-shadow: 0 10px 24px rgba(14, 110, 94, 0.26);
}
.btn-primary:hover { background: var(--ocean-deep); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(14,110,94,.32); }
/* San hô — dành cho HÀNH ĐỘNG CHÍNH của trang (tìm phòng, gửi form).
   Cố ý chỉ dùng một chỗ mỗi màn hình: nếu mọi nút đều là san hô thì không nút
   nào nổi, và trang mất luôn cảm giác xanh ngọc làm nền. */
.btn-accent {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 107, 74, 0.30);
}
.btn-accent:hover { background: var(--coral-deep); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(255,107,74,.36); }
.btn-ghost {
  background: transparent;
  color: var(--ocean-deep);
  border-color: var(--sand-300);
}
.btn-ghost:hover { border-color: var(--ocean); color: var(--ocean); background: #fff; }
.btn-light {
  background: rgba(255,255,255,0.92);
  color: var(--ocean-deep);
  backdrop-filter: blur(6px);
}
.btn-light:hover { background: #fff; transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 34px; font-size: 16px; }

/* --- Header / Nav --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 250, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(241, 228, 213, 0.9);
}
.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}
/* Chữ ký thương hiệu.
   Font logo cũ là Anton — chữ in hoa, hẹp, weight 400 là đã rất đậm. Fraunces
   ngược lại: chữ thường mới đẹp, và weight 400 ở cỡ 28px trông mảnh yếu. Nên
   bỏ uppercase, đẩy lên 700, siết tracking âm. */
.brand { display: inline-flex; flex-direction: column; gap: 3px; line-height: 1; }
.brand-word {
  font-family: var(--logo);
  font-weight: 700;
  font-optical-sizing: auto;
  font-size: 27px;
  letter-spacing: -0.025em;
  line-height: 0.95;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.brand-name { font-family: var(--logo); font-weight: 700; font-optical-sizing: auto; font-size: 27px; letter-spacing: -.025em; line-height: .95; background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.brand-sub { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-mute); font-weight: 700; padding-left: 2px; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-weight: 600; font-size: 15px; color: var(--ink-soft);
  padding: 10px 14px; border-radius: var(--r-pill); white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ocean-deep); background: rgba(198, 232, 223, 0.55); }
.nav-links a.active { color: var(--ocean-deep); background: var(--foam); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-weight: 700; color: var(--ocean-deep); font-size: 15px; display: inline-flex; align-items: center; gap: 8px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .25s; }

/* --- Section scaffolding --- */
section { position: relative; }
.section { padding: 96px 0; }
.section-head { max-width: 660px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-title { font-size: clamp(34px, 4.6vw, 54px); margin-top: 18px; }
.section-lead { color: var(--ink-soft); font-size: 18px; margin-top: 18px; }

/* --- Cards (apartment) --- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.apt-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sand-200);
  transition: transform .25s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.apt-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.apt-card .media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.apt-card .media image-slot { width: 100%; height: 100%; }
/* Nhãn trên ảnh căn ("Bán chạy", "Gia đình yêu thích"…) dùng san hô đặc thay
   vì nền trắng mờ: trên ảnh biển xanh, nhãn trắng bị chìm; san hô thì nổi bật
   và lặp lại đúng màu nhấn của thương hiệu. */
.apt-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--coral);
  color: #fff;
  font-weight: 700; font-size: 12.5px;
  letter-spacing: .01em;
  padding: 7px 14px; border-radius: var(--r-pill);
  box-shadow: 0 4px 14px rgba(255, 107, 74, 0.34);
}
.apt-body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.apt-name { font-size: 26px; }
.apt-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--ink-soft); font-size: 14px; font-weight: 600; }
.apt-meta span { display: inline-flex; align-items: center; gap: 7px; }
.apt-foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding-top: 8px; border-top: 1px solid var(--sand-200); }
.price { line-height: 1; }
.price b { font-family: var(--sans); font-size: 24px; font-weight: 800; color: var(--ocean-deep); }
.price .unit { color: var(--ink-mute); font-size: 13px; font-weight: 600; }

/* chips / amenity tags */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--foam-soft); color: var(--ocean);
  font-weight: 600; font-size: 13.5px;
  padding: 7px 14px; border-radius: var(--r-pill);
}

/* --- Image placeholder slot styling fallback --- */
image-slot { background: var(--foam-soft); }

/* --- Footer --- */
.site-footer {
  background: var(--ocean-deep);
  color: #C9DCE6;
  padding: 72px 0 36px;
  margin-top: 0;
}
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-grid a { color: #C9DCE6; display: block; padding: 5px 0; font-size: 15px; transition: color .2s; }
.footer-grid a:hover { color: #fff; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { color: #9FBACB; margin-top: 16px; font-size: 15px; max-width: 280px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 48px; padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: #7E9BAD; font-size: 14px; }

/* --- Utility --- */
.muted { color: var(--ink-mute); }
.center { text-align: center; }
.divider { height: 1px; background: var(--sand-200); border: 0; }
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* --- Responsive --- */
@media (max-width: 980px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
/* Header → menu hamburger sớm (tablet + laptop nhỏ): thanh nav ngang không đủ
   chỗ cho logo 2 dòng + 6 mục tiếng Việt + SĐT + nút Đặt phòng + bộ chọn ngôn
   ngữ, khiến các mục bị ép xuống 2 dòng (giao diện "hỏng"). Dưới 1180px dùng
   menu bung dọc cho gọn gàng. */
@media (max-width: 1180px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--sand-50); padding: 14px 18px 22px; gap: 6px;
    border-bottom: 1px solid var(--sand-200); box-shadow: var(--shadow-md);
  }
  .nav.open .nav-links li { width: 100%; }
  .nav.open .nav-links a { display: block; padding: 14px 16px; border-radius: 12px; font-size: 16px; }
  .nav.open .nav-links a:hover,
  .nav.open .nav-links a.active { background: var(--foam); color: var(--ocean-deep); }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .wrap { padding: 0 20px; }

  /* Logo + CTA header quá chật trên mobile (Đặt phòng + bộ chọn ngôn ngữ +
     hamburger cùng hiển thị) khiến khối logo 2 dòng bị ép xuống ~84px, làm
     "VUNGTAU STAY" và dòng phụ đề tự xuống dòng rồi tràn lên trên header
     78px, bị cắt mất phần trên chữ. Thu gọn CTA + ẩn phụ đề để logo có đủ
     chỗ hiển thị 1 dòng, không còn tràn/cắt chữ. */
  .brand-sub { display: none; }
  .brand-word { font-size: 20px; white-space: nowrap; }
  .nav-cta .btn { padding: 10px 18px; font-size: 14px; }
  .lang-btn { padding: 8px 10px; gap: 5px; }
  .lang-btn span { display: none; }

  /* Logo footer to hơn ~20% so với header trên mobile (footer thoáng hơn, không bị ép chỗ như nav) */
  .footer-brand .brand-word { font-size: 24px; }
}

/* ============================================================
   SHARED ADDITIONS — Laravel build (vungtau.css only).
   These classes are shared site-wide. Page templates must NOT
   re-declare them in their @push("styles") blocks.
   ============================================================ */

/* --- Icons (shared chrome: header phone, footer, page templates) --- */
.icon { width: 22px; height: 22px; stroke: var(--ocean); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.icon-lg { width: 26px; height: 26px; }

/* --- Page hero (sub-page header band) ---
   Ported from apartments.html / contact.html inline styles (deduplicated). */
.page-hero { background: linear-gradient(160deg, var(--foam-soft), var(--sand-50)); padding: 56px 0 48px; border-bottom: 1px solid var(--sand-200); }
.page-hero h1 { font-size: clamp(40px, 5.4vw, 64px); }

/* --- Breadcrumb ---
   Ported from the duplicated .crumb rules (apartments / contact / detail).
   `.crumb` kept as an alias for markup copied verbatim from the static site.
   detail-style pages (breadcrumb outside .page-hero) may override
   margin/padding inline. */
.breadcrumb, .crumb { color: var(--ink-mute); font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.breadcrumb a:hover, .crumb a:hover { color: var(--ocean); }

/* --- Image placeholder (apartments have no photos yet) ---
   Foam background + centered muted caption. Fills its parent box. */
.ph-media {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(150deg, var(--foam) 0%, var(--foam-soft) 55%, #DCEAF1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean-600);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 12px;
}
.ph-media.circle { border-radius: 50%; overflow: hidden; flex: none; }

/* --- Form card + fields ---
   Ported from contact.html inline styles (.form-card / .form-grid /
   .form-field → shared names .form-card / .f-grid / .f-field). */
.form-card { background: #fff; border: 1px solid var(--sand-200); border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: 36px; }
.form-card h3 { font-size: 30px; margin-bottom: 6px; }
.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.f-field { display: flex; flex-direction: column; gap: 7px; }
.f-field.full { grid-column: 1 / -1; }
.f-field label { font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.f-field input, .f-field select, .f-field textarea {
  font-family: var(--sans); font-size: 15.5px; font-weight: 500; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--sand-200); border-radius: var(--r-sm);
  background: var(--sand-50); transition: border-color .2s, box-shadow .2s; width: 100%;
}
.f-field textarea { resize: vertical; min-height: 90px; }
.f-field input:focus, .f-field select:focus, .f-field textarea:focus { outline: none; border-color: var(--sea); box-shadow: 0 0 0 3px var(--foam); background: #fff; }

/* --- Validation error under a field --- */
.field-error { color: #B33; font-size: 13px; margin-top: 6px; }

/* --- Flash success banner ---
   Ported from contact.html .form-success, made always-visible/reusable. */
.flash-success {
  background: #E7F5EC;
  border: 1px solid #BFE5CC;
  color: #1E6B3F;
  border-radius: var(--r-md);
  padding: 18px 20px;
  font-weight: 600;
  margin-top: 20px;
}

/* --- Sticky Zalo button — ripple sóng biển + rung nhẹ (giống Celadon) --- */
.zalo-fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(14, 110, 94, 0.30), 0 0 0 1px rgba(10, 60, 50, 0.05);
  z-index: 90;
  animation: zalo-tada 3s ease-in-out infinite;
  transition: transform .2s ease, box-shadow .25s ease;
}
.zalo-fab img { position: relative; z-index: 1; width: 72%; height: 72%; object-fit: contain; display: block; }
/* Hai vòng sóng lan toả liên tục phía sau nút (lệch pha 1s) */
.zalo-fab::before,
.zalo-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--sea);
  z-index: -1;
  animation: zalo-ripple 2s ease-out infinite;
}
.zalo-fab::after { animation-delay: 1s; }
.zalo-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 36px rgba(14, 110, 94, 0.38), 0 0 0 1px rgba(10, 60, 50, 0.05);
  animation: none; /* dừng rung khi hover cho dễ bấm */
}

@keyframes zalo-ripple {
  0%   { transform: scale(0.92); opacity: 0.5; }
  70%  { transform: scale(1.5);  opacity: 0.1; }
  100% { transform: scale(1.7);  opacity: 0; }
}
@keyframes zalo-tada {
  0%, 72%, 100% { transform: scale(1)   rotate(0deg); }
  76%           { transform: scale(0.9) rotate(-8deg); }
  80%, 88%      { transform: scale(1.1) rotate(8deg); }
  84%, 92%      { transform: scale(1.1) rotate(-8deg); }
  96%           { transform: scale(1)   rotate(0deg); }
}
/* Tôn trọng người dùng tắt hiệu ứng chuyển động */
@media (prefers-reduced-motion: reduce) {
  .zalo-fab,
  .zalo-fab::before,
  .zalo-fab::after { animation: none; }
}

/* --- Owner-lead popup (ký gửi căn hộ) ---
   Include từ layout nên CSS phải nằm ở đây, không @push được trong partial. */
.olp-bg { position: fixed; inset: 0; background: rgba(10,48,43,0.55); backdrop-filter: blur(4px); z-index: 220; display: none; align-items: center; justify-content: center; padding: 20px; }
.olp-bg.show { display: flex; }
.olp { background: #fff; border-radius: var(--r-lg); max-width: 480px; width: 100%; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; max-height: calc(100dvh - 40px); overflow-y: auto; }
.olp-head { background: linear-gradient(150deg, var(--ocean-deep), var(--ocean)); color: #fff; padding: 26px 30px 22px; }
.olp-head .eyebrow { color: #BCE0F2; }
.olp-head .eyebrow::before { background: var(--sea); }
.olp-head h3 { color: #fff; font-size: 28px; margin-top: 10px; }
.olp-head p { color: #D7EAF4; font-size: 14.5px; margin-top: 8px; line-height: 1.6; }
.olp-body { padding: 24px 30px 28px; }
.olp-form { display: flex; flex-direction: column; gap: 13px; }
.olp-close { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,0.18); border: none; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 17px; color: #fff; line-height: 1; transition: background .2s; }
.olp-close:hover { background: rgba(255,255,255,0.32); }
.olp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.olp-note { font-size: 12.5px; color: var(--ink-mute); text-align: center; margin-top: 12px; line-height: 1.55; }
.olp-success { text-align: center; padding: 14px 0 6px; display: none; }
.olp-success .ok-badge { width: 64px; height: 64px; border-radius: 50%; background: #E7F5EC; display: grid; place-items: center; margin: 0 auto 16px; }
.olp-success h4 { font-size: 24px; color: var(--ocean-deep); }
.olp-success p { color: var(--ink-soft); font-size: 15px; margin-top: 8px; }
.olp-err { color: #B33; font-size: 13.5px; font-weight: 600; display: none; }

/* --- Banner chủ nhà (section trang chủ) --- */
.owner-band { background: var(--sand-100); border-top: 1px solid var(--sand-200); border-bottom: 1px solid var(--sand-200); }
.owner-band .inner { display: grid; grid-template-columns: 1.5fr auto; gap: 28px; align-items: center; padding: 44px 0; }
.owner-band h3 { font-size: clamp(26px, 3vw, 36px); }
.owner-band p { color: var(--ink-soft); margin-top: 8px; max-width: 56ch; }

@media (max-width: 760px) {
  .form-card { padding: 26px; }
  .f-grid { grid-template-columns: 1fr; }
  .zalo-fab { width: 50px; height: 50px; bottom: 20px; right: 20px; }
  .olp-row { grid-template-columns: 1fr; }
  .olp-head { padding: 22px 22px 18px; }
  .olp-body { padding: 20px 22px 24px; }
  .owner-band .inner { grid-template-columns: 1fr; gap: 18px; padding: 36px 0; }
}
