/* ═══════════════════════════════════════════════════════════
   PRIMELINK PROPERTY – MAIN STYLESHEET
   Version 1.0 | Gold & Dark Premium UI
═══════════════════════════════════════════════════════════ */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  /* Gold Accent (ลดความสว่าง) */
  --gold: #d7a65c;
  --gold-light: #f0c675;
  --gold-dark: #c08a3f;
  --gold-pale: #F7F4EC;

  /* Dark Luxury */
  --dark: #111111;
  --dark-2: #1B1B1B;
  --dark-3: #2A2A2A;

  /* Text */
  --text: #1F1F1F;
  --text-muted: #707070;
  --text-light: #9CA3AF;

  /* Base */
  --white: #FFFFFF;
  --bg-light: #F6F6F6;
  --bg-card: #FFFFFF;
  --border: #EAEAEA;

  /* Shadow (soft luxury) */
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 25px 80px rgba(0, 0, 0, 0.18);
  --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.25);

  /* Radius */
  --radius: 18px;
  --radius-sm: 12px;
  --radius-xs: 8px;

  /* Animation */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'IBM Plex Sans Thai', 'Noto Sans Thai', 'Sarabun', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  padding-bottom: 70px;
  /* mobile nav */
}

.text-prompt {
  font-family: "Prompt", sans-serif;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar-top.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon svg {
  display: block;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: 'IBM Plex Sans Thai', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--dark);
}

.logo-sub {
  font-size: 0.55rem;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 600;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item-link {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: var(--radius-xs);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}

.nav-item-link:hover,
.nav-item-link.active {
  color: var(--gold);
  background: rgba(198, 165, 90, 0.08);
  ;
}

.nav-item-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: var(--transition);
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-xs);
  text-decoration: none;
  color: var(--text);
  font-size: 0.88rem;
  transition: var(--transition);
}

.dropdown-panel a i {
  color: var(--gold);
  font-size: 1.1rem;
}

.dropdown-panel a:hover {
  background: rgba(198, 165, 90, 0.08);
  ;
  color: var(--gold-dark);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-nav-ghost {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 10px;
  font-size: 1.1rem;
  color: var(--text-muted);
  border-radius: var(--radius-xs);
  transition: var(--transition);
}

.btn-nav-ghost:hover {
  background: var(--bg-light);
  color: var(--gold);
}

.badge-count {
  position: absolute;
  top: 3px;
  right: 3px;
  background: var(--gold);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Buttons */
.btn-gold-outline {
  padding: 8px 20px;
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  background: none;
  white-space: nowrap;
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: white;
  box-shadow: var(--shadow-gold);
}

.btn-gold-fill {
  padding: 9px 22px;
  background: var(--gold);
  color: white;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.btn-gold-fill:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.45);
  color: white;
}

/* Hamburger */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.open {
  transform: translateX(0);
}

.mobile-menu-inner {
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #333;
}

.mobile-menu-header .logo-main {
  color: white;
  font-size: 1.4rem;
}

.close-menu {
  background: none;
  border: none;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  flex: 1;
}

.mobile-nav-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 12px 8px;
  border-radius: var(--radius-xs);
  transition: var(--transition);
  border-bottom: 1px solid #222;
}

.mobile-nav-links a:hover {
  color: var(--gold);
  padding-left: 16px;
}

.mobile-menu-footer {
  padding-top: 20px;
  border-top: 1px solid #333;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(/images/hero-4.jpg?a6b83eb52fd4234628facb0297ae9bef);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: zoomInOut 8s ease-in-out infinite;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.25));
}

/* Animated particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero-particles::before {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.hero-particles::after {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(100, 180, 255, 0.06) 0%, transparent 70%);
  bottom: 30%;
  left: 5%;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 80px 0 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-gold {
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

/* ── SEARCH BOX ── */
.search-box-container {
  animation: fadeInUp 0.8s ease 0.3s both;
  max-width: 900px;
}

.search-toggle {
  display: flex;
  gap: 4px;
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  width: -moz-fit-content;
  width: fit-content;
}

.toggle-btn {
  padding: 10px 28px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-xs) var(--radius-xs) 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'IBM Plex Sans Thai', sans-serif;
}

.toggle-btn.active,
.toggle-btn:hover {
  background: white;
  color: var(--text);
}

.search-box {
  background: white;
  border-radius: 0 var(--radius) var(--radius) var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.search-fields {
  display: flex;
  align-items: center;
  flex: 1;
  flex-wrap: wrap;
  gap: 0;
}

.search-field {
  display: flex;
  flex-direction: column;
  padding: 4px 16px;
  min-width: 160px;
  flex: 1;
}

.search-field.location-field {
  min-width: 220px;
  flex: 2;
}

.search-field label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.search-field label i {
  color: var(--gold);
}

.search-input {
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--text);
  font-family: 'IBM Plex Sans Thai', sans-serif;
  background: none;
  width: 100%;
  padding-left: 19px;
  /* เว้นที่ให้ icon ซ้าย */
}

.search-input::-moz-placeholder {
  color: var(--text-light);
}

.search-input::placeholder {
  color: var(--text-light);
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 0;
  font-size: 14px;
  color: #999;
  pointer-events: none;
  /* คลิกทะลุไปที่ input ได้ */
  z-index: 1;
}

.search-select {
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--text);
  font-family: 'IBM Plex Sans Thai', sans-serif;
  background: none;
  cursor: pointer;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.search-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.search-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 12px;
  flex-shrink: 0;
}

.btn-advanced-filter {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'IBM Plex Sans Thai', sans-serif;
}

.btn-advanced-filter:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.btn-search-main {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: var(--radius-xs);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'IBM Plex Sans Thai', sans-serif;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
  white-space: nowrap;
}

.btn-search-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.5);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 10;
}

.scroll-dot {
  width: 6px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.3;
  }

  50% {
    transform: scaleY(1.3);
    opacity: 1;
  }
}

/* ═══════════════════════════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════════════════════════ */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(198, 165, 90, 0.08);
  ;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  margin-bottom: 8px;
}

.sponsored-label {
  background: #fff7e0;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  margin: 0;
  line-height: 1.2;
}

.section-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 6px;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 18px;
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-view-all:hover {
  background: var(--gold);
  color: white;
}

/* ═══════════════════════════════════════════════════════════
   PROPERTY TYPES SLIDER
═══════════════════════════════════════════════════════════ */
.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: -50px;
  margin-right: -50px;
}

.slider-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}

.slider-btn:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  color: var(--gold);
}

.slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: var(--border);
  box-shadow: none;
  color: inherit;
}

.slider-btn i {
  font-size: 1.1rem;
}

.property-types-slider {
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin: 0 -16px;
  padding: 0 16px 8px;
}

.property-types-slider::-webkit-scrollbar {
  display: none;
}

.types-track {
  display: flex;
  gap: 16px;
  padding-bottom: 8px;
  width: -moz-max-content;
  width: max-content;
}

.type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  min-width: 140px;
  box-shadow: var(--shadow-sm);
}

.type-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.type-card:hover .type-icon-bg {
  background: var(--gold);
  opacity: 1;
}

.type-card:hover i {
  color: white;
}

.type-icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.type-icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(198, 165, 90, 0.08);
  ;
  transition: var(--transition);
}

.type-icon-wrap i {
  position: relative;
  font-size: 1.8rem;
  color: var(--gold);
  transition: var(--transition);
}

.type-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

.type-count {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   PROPERTY CARDS
═══════════════════════════════════════════════════════════ */
.property-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.property-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* Card Image */
.card-image-wrap {
  position: relative;
  overflow: hidden;
}

.card-img {
  height: 260px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.property-card-featured .card-img {
  height: 360px;
}

.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.3);
}

.img-placeholder i {
  font-size: 3rem;
}

.img-placeholder span {
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.img-placeholder.sm i {
  font-size: 2rem;
}

/* Overlay Actions */
.card-actions-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
}

.property-card:hover .card-actions-overlay {
  opacity: 1;
  transform: translateX(0);
}

.action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  color: var(--text-muted);
}

.action-btn:hover {
  transform: scale(1.1);
}

.fav-btn:hover {
  background: #ff4757;
  color: white;
}

.fav-btn.active {
  background: #ff4757;
  color: white;
  opacity: 1;
}

.compare-btn:hover {
  background: var(--gold);
  color: white;
}

/* Badges */
.card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
}

.badge-hot,
.badge-verified,
.badge-new,
.badge-sponsored,
.badge-reduce,
.badge-type-overlay {
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge-hot {
  background: #ff4757;
  color: white;
}

.badge-verified {
  background: rgba(0, 0, 0, 0.7);
  color: #4eff91;
}

.badge-new {
  background: var(--gold);
  color: white;
  position: absolute;
  top: 12px;
  left: 12px;
}

.badge-sponsored {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffd700;
}

.badge-reduce {
  background: #ff6b35;
  color: white;
  position: absolute;
  top: 12px;
  left: 12px;
}

.badge-type-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
}

/* Price Tag */
.card-price-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  padding: 40px 16px 16px;
  display: flex;
  flex-direction: column;
}

.price-main {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
}

.price-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Card Body */
.card-body-custom {
  padding: 18px;
}

.card-meta {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--bg-light);
  color: var(--text-muted);
}

.meta-tag.premium {
  background: rgba(198, 165, 90, 0.08);
  ;
  color: var(--gold-dark);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.card-title-prop {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-title-std {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin: 4px 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.card-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.card-location i {
  color: var(--gold);
}

.card-details {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.card-details span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.card-details i {
  color: var(--gold);
}

.card-details-sm {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.card-details-sm span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Card Footer */
.card-footer-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  gap: 8px;
}

.agent-mini {
  display: flex;
  align-items: center;
  gap: 8px;
}

.agent-avatar-sm {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.agent-name-sm {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}

.agent-badge-sm {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
}

.agent-badge-sm.gold {
  background: rgba(198, 165, 90, 0.08);
  ;
  color: var(--gold-dark);
}

.btn-card-detail {
  padding: 8px 16px;
  background: var(--gold);
  color: white;
  border-radius: var(--radius-xs);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(201, 168, 76, 0.3);
}

.btn-card-detail:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(201, 168, 76, 0.45);
  color: white;
}

/* Horizontal Card */
.property-card-horizontal {
  display: flex;
  height: auto;
}

.card-img-horizontal {
  width: 160px;
  min-height: 160px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-body-h {
  flex: 1;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
}

.card-title-h {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.card-location-h {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 6px 0;
}

.card-location-h i {
  color: var(--gold);
}

.price-badge {
  background: rgba(198, 165, 90, 0.08);
  ;
  color: var(--gold-dark);
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
  border: 1px solid rgba(201, 168, 76, 0.2);
  flex-shrink: 0;
}

.card-footer-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.agent-mini-sm {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.agent-avatar-xs {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: white;
}

.badge-plat {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 50px;
  background: linear-gradient(135deg, #e0e0e0, #b0b0b0);
  color: #333;
}

.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 50px;
  background: rgba(198, 165, 90, 0.08);
  ;
  color: var(--gold-dark);
}

.btn-sm-detail {
  padding: 5px 12px;
  background: var(--gold);
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-sm-detail:hover {
  background: var(--gold-dark);
  color: white;
}

/* Standard Card */
.prop-type-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--bg-light);
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.prop-type-tag.rent {
  background: #e8f5e9;
  color: #2e7d32;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.price-main-sm {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold-dark);
}

.price-original {
  font-size: 0.82rem;
  color: var(--text-light);
  text-decoration: line-through;
}

/* ═══════════════════════════════════════════════════════════
   BILLBOARD
═══════════════════════════════════════════════════════════ */
.section-billboard {
  padding: 0;
  margin: 40px 0;
}

.billboard-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow-lg);
}

.billboard-slides {
  position: relative;
  min-height: 280px;
}

.billboard-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  align-items: center;
  padding: 40px 48px;
  gap: 40px;
  min-height: 280px;
}

.billboard-slide.active {
  opacity: 1;
  position: relative;
}

.billboard-bg {
  position: absolute;
  inset: 0;
}

.billboard-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
}

.billboard-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.billboard-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.billboard-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.billboard-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}

.billboard-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.billboard-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.billboard-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'IBM Plex Sans Thai', sans-serif;
}

.billboard-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.billboard-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'IBM Plex Sans Thai', sans-serif;
}

.billboard-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.billboard-agent-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 24px;
  min-width: 260px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.bb-agent-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  border: 2px solid rgba(201, 168, 76, 0.5);
}

.bb-agent-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
}

.bb-agent-title {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 2px 0 8px;
}

.bb-agent-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bb-agent-stats span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.bb-agent-stats i {
  color: var(--gold);
}

/* Billboard Controls */
.billboard-controls {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.bb-prev,
.bb-next {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.9rem;
}

.bb-prev:hover,
.bb-next:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.bb-dots {
  display: flex;
  gap: 6px;
}

.bb-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  cursor: pointer;
}

.bb-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}

.billboard-ad-label {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
}

.billboard-ad-label a {
  color: rgba(201, 168, 76, 0.7);
}

/* ═══════════════════════════════════════════════════════════
   SPONSORED CARDS
═══════════════════════════════════════════════════════════ */
.sponsored-card {
  position: relative;
}

.sponsored-ribbon {
  position: absolute;
  top: 14px;
  left: -6px;
  background: var(--gold);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 12px 3px 14px;
  z-index: 5;
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 50%, 100% 100%, 0 100%);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

/* ═══════════════════════════════════════════════════════════
   FILTER TABS
═══════════════════════════════════════════════════════════ */
.filter-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-light);
  border-radius: 50px;
  padding: 4px;
}

.filter-tab {
  padding: 7px 16px;
  border: none;
  background: none;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'IBM Plex Sans Thai', sans-serif;
}

.filter-tab.active,
.filter-tab:hover {
  background: white;
  color: var(--gold-dark);
  box-shadow: var(--shadow-sm);
}

/* ═══════════════════════════════════════════════════════════
   LATEST CARDS
═══════════════════════════════════════════════════════════ */
.latest-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.latest-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.latest-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.latest-card-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 6px;
  opacity: 0;
  transition: var(--transition);
}

.latest-card:hover .latest-card-actions {
  opacity: 1;
}

.latest-time {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.65);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.68rem;
  padding: 4px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.latest-card-body {
  padding: 14px;
}

.prop-type-mini {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--bg-light);
  color: var(--text-muted);
}

.prop-type-mini.rent {
  background: #e8f5e9;
  color: #2e7d32;
}

.price-mini {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold-dark);
}

.latest-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin: 8px 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.latest-location {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.latest-location i {
  color: var(--gold);
}

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

.latest-details span {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   NEWS SECTION
═══════════════════════════════════════════════════════════ */
.news-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.news-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.news-img {
  height: 260px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-cat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.news-body {
  padding: 20px;
}

.news-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.news-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.news-title-lg {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.5;
}

.news-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}

.news-read-more:hover {
  gap: 10px;
  color: var(--gold);
}

/* News List */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.news-item-small {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  flex: 1;
  transition: var(--transition);
  cursor: pointer;
}

.news-item-small:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.news-img-sm {
  width: 80px;
  min-width: 80px;
  border-radius: var(--radius-xs);
  height: 70px;
}

.news-item-body {
  flex: 1;
}

.news-cat-sm {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(198, 165, 90, 0.08);
  ;
  color: var(--gold-dark);
  padding: 2px 8px;
  border-radius: 50px;
  margin-bottom: 5px;
}

.news-title-sm {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.news-date-sm {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   BANNER ADS
═══════════════════════════════════════════════════════════ */
.banner-ad {
  border-radius: var(--radius);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  min-height: 140px;
}

.banner-wide {
  flex-direction: row;
}

.banner-tall {
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.banner-ad-content h3,
.banner-ad-content h4 {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 800;
  color: white;
  margin: 8px 0;
  line-height: 1.3;
}

.banner-tag {
  display: inline-block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.banner-ad-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.btn-banner-cta {
  display: inline-flex;
  padding: 10px 24px;
  background: var(--gold);
  color: white;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: 'IBM Plex Sans Thai', sans-serif;
}

.btn-banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: white;
}

.btn-banner-cta-sm {
  display: inline-flex;
  padding: 8px 20px;
  background: var(--gold);
  color: white;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.banner-ad-decoration {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.06);
  position: absolute;
  right: 40px;
}

/* ═══════════════════════════════════════════════════════════
   AGENT SPOTLIGHT
═══════════════════════════════════════════════════════════ */
.agent-spotlight-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.agent-spotlight-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold-pale);
}

.agent-card-top {
  padding: 28px 20px 16px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.agent-avatar-lg {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a3a6c, #2a5a9c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  border: 3px solid var(--gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.agent-level-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
}

.agent-level-badge.platinum {
  background: linear-gradient(135deg, #e8e8e8, #c0c0c0);
  color: #333;
}

.agent-level-badge.gold {
  background: var(--gold);
  color: white;
}

.agent-card-info {
  padding: 16px 20px 20px;
}

.agent-card-info h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 2px;
}

.agent-company {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.agent-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
}

.rating-num {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.agent-card-stats {
  display: flex;
  gap: 0;
  margin-bottom: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  overflow: hidden;
}

.agent-card-stats .stat {
  flex: 1;
  padding: 8px 6px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.agent-card-stats .stat:last-child {
  border-right: none;
}

.agent-card-stats .n {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold-dark);
}

.agent-card-stats .l {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
}

.agent-card-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.agent-card-tags span {
  background: var(--bg-light);
  color: var(--text-muted);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
}

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

.btn-agent-contact {
  flex: 1;
  padding: 9px;
  background: var(--dark);
  color: white;
  border: none;
  border-radius: var(--radius-xs);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: var(--transition);
  font-family: 'IBM Plex Sans Thai', sans-serif;
}

.btn-agent-contact:hover {
  background: var(--dark-3);
}

.btn-agent-view {
  flex: 1;
  padding: 9px;
  background: var(--gold);
  color: white;
  border-radius: var(--radius-xs);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-agent-view:hover {
  opacity: 0.9;
  color: white;
}

/* Agent CTA Card */
.agent-cta-card {
  border: 2px dashed var(--gold-pale) !important;
  background: var(--bg-light) !important;
}

.agent-cta-inner {
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.cta-icon-lg {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.agent-cta-inner h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.agent-cta-inner p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer-main {
  background: var(--dark);
}

.footer-top {
  padding: 60px 0 40px;
}

.footer-desc {
  font-size: 0.88rem;
  color: #8a8a8a;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-contact {
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #8a8a8a;
  margin-bottom: 8px;
}

.contact-item i {
  color: var(--gold);
  width: 16px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a8a8a;
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #8a8a8a;
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  color: #666;
  font-size: 0.82rem;
  margin: 0;
}

.footer-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: #666;
  border: 1px solid #333;
  padding: 4px 10px;
  border-radius: 4px;
}

.footer-badge i {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   MOBILE BOTTOM NAV
═══════════════════════════════════════════════════════════ */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: white;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.mob-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-xs);
  position: relative;
  transition: var(--transition);
}

.mob-nav-item i {
  font-size: 1.3rem;
}

.mob-nav-item.active {
  color: var(--gold-dark);
}

.mob-nav-item.active i {
  color: var(--gold);
}

.mob-badge {
  position: absolute;
  top: 4px;
  right: 8px;
  background: var(--gold);
  color: white;
  font-size: 0.55rem;
  font-weight: 700;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   FLOATING ACTIONS
═══════════════════════════════════════════════════════════ */
.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 40px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fab {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.fab-line {
  background: #06C755;
  color: white;
}

.fab-phone {
  background: var(--dark);
  color: white;
}

.fab-top {
  background: white;
  color: var(--text);
  border: 1px solid var(--border);
}

.fab:hover {
  transform: scale(1.1) translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   ADVANCED FILTER MODAL
═══════════════════════════════════════════════════════════ */
.filter-modal-content {
  border-radius: var(--radius);
  border: none;
  box-shadow: var(--shadow-lg);
}

.filter-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-modal-header h5 {
  font-size: 1.05rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.filter-modal-header h5 i {
  color: var(--gold);
}

.btn-close-custom {
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.btn-close-custom:hover {
  background: var(--bg-light);
  color: var(--text);
}

.filter-modal-body {
  padding: 24px;
}

.filter-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.filter-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 0.9rem;
  font-family: 'IBM Plex Sans Thai', sans-serif;
  outline: none;
  transition: var(--transition);
}

.filter-input:focus {
  border-color: var(--gold);
}

.filter-btn-group {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.filter-opt-btn {
  padding: 7px 14px;
  border: 1.5px solid var(--border);
  background: none;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'IBM Plex Sans Thai', sans-serif;
}

.filter-opt-btn.active,
.filter-opt-btn:hover {
  border-color: var(--gold);
  background: rgba(198, 165, 90, 0.08);
  ;
  color: var(--gold-dark);
}

.amenity-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.amenity-check {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.82rem;
  font-weight: 500;
}

.amenity-check:hover {
  border-color: var(--gold);
  background: rgba(198, 165, 90, 0.08);
  ;
}

.amenity-check input[type="checkbox"] {
  accent-color: var(--gold);
}

.filter-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.btn-filter-clear {
  padding: 10px 24px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  font-family: 'IBM Plex Sans Thai', sans-serif;
  transition: var(--transition);
}

.btn-filter-clear:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.btn-filter-apply {
  padding: 10px 28px;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'IBM Plex Sans Thai', sans-serif;
  transition: var(--transition);
}

.btn-filter-apply:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 80px 0 40px;
  }

  .hero-content {
    padding: 40px 0 30px;
  }

  .search-box {
    flex-direction: column;
  }

  .search-fields {
    flex-direction: column;
  }

  .search-field {
    padding: 8px 12px;
    min-width: unset;
    width: 100%;
  }

  .search-divider {
    display: none !important;
  }

  .search-actions {
    padding: 8px 12px 4px;
    width: 100%;
  }

  .btn-search-main {
    width: 100%;
    justify-content: center;
  }

  .billboard-slide {
    flex-direction: column;
    padding: 24px;
  }

  .billboard-agent-card {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-stats {
    gap: 12px;
  }

  .stat-divider {
    display: none;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .property-card-horizontal {
    flex-direction: column;
  }

  .card-img-horizontal {
    width: 100%;
    height: 180px;
  }

  .filter-tabs {
    display: none;
  }

  .banner-ad {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .banner-ad-decoration {
    display: none;
  }

  .footer-top {
    padding: 40px 0 20px;
  }

  .slider-wrapper {
    margin-left: unset;
    margin-right: unset;
  }
}

@media (max-width: 480px) {
  .search-toggle {
    flex-wrap: wrap;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .billboard-title {
    font-size: 1.3rem;
  }
}

/* ── UTILITY ── */
.prop-type-mini {
  display: inline-block;
}

/* ── Section Luxury bg ── */
.section-property-types {
  background: var(--bg-light);
}

.section-luxury {
  background: var(--white);
}

.section-agents {
  background: var(--bg-light);
}

/* ─────────────────────────────────────────────
       BILLBOARD SECTION
    ───────────────────────────────────────────── */
.billboard-section {
  /* background: var(--dark); */
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

/* subtle dot-grid texture */
.billboard-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(215, 166, 92, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* gold top-border line */
/* .billboard-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
} */

/* ─── Section header ─── */
.bb-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}

.bb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(215, 166, 92, 0.1);
  border: 1px solid rgba(215, 166, 92, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.bb-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin: 0 0 12px;
}

.bb-title span {
  color: var(--gold);
  font-style: italic;
}

.text-gold {
  color: var(--gold);
}

.bb-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Main Billboard Card ─── */
.bb-main-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-2);
  /* border: 1px solid rgba(215, 166, 92, 0.2); */
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(215, 166, 92, 0.05);
  transition: var(--transition);
  z-index: 2;
}

.bb-main-card:hover {
  border-color: rgba(215, 166, 92, 0.4);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  /* transform: translateY(-4px); */
}

.bb-main-image {
  position: relative;
  height: 460px;
  overflow: hidden;
}

.bb-main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 8s ease-in-out;
}

.bb-main-card:hover .bb-main-image img {
  transform: scale(1.04);
}

/* overlay gradient on image */
.bb-main-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 30%,
      rgba(17, 17, 17, 0.5) 70%,
      rgba(17, 17, 17, 0.9) 100%);
}

/* floating badge top-left */
.bb-badge-float {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bb-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.bb-badge--premium {
  background: var(--gold);
  color: var(--dark);
}

.bb-badge--live {
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bb-badge--live .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-green 1.5s ease-in-out infinite;
}

@keyframes pulse-green {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

/* info overlay on bottom of image */
.bb-image-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
  z-index: 3;
}

.bb-image-info .price-tag {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.bb-image-info .price-tag sup {
  font-size: 0.9rem;
  font-family: 'IBM Plex Sans Thai', sans-serif;
  font-weight: 400;
  color: var(--gold);
  margin-right: 4px;
}

.bb-image-info .price-unit {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-left: 6px;
}

.bb-image-info .prop-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 4px;
}

/* ─── Content panel (right side) ─── */
.bb-content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bb-ad-label {
  position: absolute;
  /* top: 12px; */
  right: 12px;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: -20px;
}

.bb-ad-label a {
  color: rgba(201, 168, 76, 0.7);
}

.bb-advertiser-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(215, 166, 92, 0.15);
}

.bb-advertiser-logo .logo-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.1rem;
}

.bb-advertiser-logo .logo-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.3;
}

.bb-advertiser-logo .logo-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

.bb-prop-title {
  /* font-family: 'Playfair Display', serif; */
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 6px;
}

.bb-prop-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.bb-prop-desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  margin-bottom: 24px;
  flex: 1;
}

/* stats row */
.bb-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.bb-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(215, 166, 92, 0.1);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
  transition: var(--transition);
}

.bb-stat:hover {
  background: rgba(215, 166, 92, 0.06);
  border-color: rgba(215, 166, 92, 0.25);
}

.bb-stat .stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.bb-stat .stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* CTA buttons */
.bb-cta {
  display: flex;
  gap: 10px;
}

.btn-bb-primary {
  flex: 1;
  padding: 13px 20px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.btn-bb-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-bb-outline {
  padding: 13px 16px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-bb-outline:hover {
  border-color: rgba(215, 166, 92, 0.4);
  color: var(--gold);
  background: rgba(215, 166, 92, 0.05);
}

/* ─── Side slots (small billboard ads) ─── */
.bb-slot-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bb-slot-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.bb-slot-card {
  background: var(--dark-2);
  border: 1px solid rgba(215, 166, 92, 0.12);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  margin-bottom: 16px;
  position: relative;
}

.bb-slot-card:last-child {
  margin-bottom: 0;
}

.bb-slot-card:hover {
  border-color: rgba(215, 166, 92, 0.35);
  transform: translateX(4px);
  box-shadow: -4px 0 0 var(--gold);
}

.bb-slot-card .slot-img {
  width: 100%;
  height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  filter: brightness(0.9);
  transition: var(--transition);
}

.bb-slot-card:hover .slot-img {
  filter: brightness(1);
}

.bb-slot-card .slot-body {
  padding: 14px 16px;
}

.bb-slot-card .slot-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.bb-slot-card .slot-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 4px;
}

.bb-slot-card .slot-price {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.bb-slot-card .slot-price strong {
  color: var(--gold);
  font-weight: 700;
}

/* vacant slot (for-sale ad space) */
.bb-slot-vacant {
  border: 1.5px dashed rgba(215, 166, 92, 0.25);
  border-radius: var(--radius-sm);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.bb-slot-vacant:hover {
  border-color: var(--gold);
  background: rgba(215, 166, 92, 0.04);
}

.bb-slot-vacant .vacant-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(215, 166, 92, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin: 0 auto 12px;
}

.bb-slot-vacant .vacant-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.bb-slot-vacant .vacant-desc {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.6;
}

.bb-slot-vacant .vacant-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Responsive ─── */
@media (max-width: 991px) {
  .bb-main-image {
    height: 280px;
  }

  .bb-content {
    padding: 28px 24px;
  }

  .bb-prop-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .billboard-section {
    padding: 56px 0;
  }

  .bb-main-image {
    height: 240px;
  }

  .bb-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Slides container */
.bb-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.bb-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.bb-slide.active {
  opacity: 1;
}

.bb-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Prev / Next buttons */
.bb-slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  /* ซ่อนไว้ก่อน */
}

/* แสดงปุ่มเมื่อ hover ที่ bb-main-image */
.bb-main-image:hover .bb-slide-btn {
  opacity: 1;
}

.bb-slide-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

.bb-slide-btn--prev {
  left: 12px;
}

.bb-slide-btn--next {
  right: 12px;
}

/* Dots */
.bb-dots {
  position: absolute;
  bottom: 60px;
  /* อยู่เหนือ price overlay */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 4;
}

.bb-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition);
}

.bb-dot.active {
  width: 20px;
  border-radius: 3px;
  background: var(--gold);
}

/* ═══════════════════════════════
      PREMIUM SECTION
    ═══════════════════════════════ */
.pm-section {
  background: var(--white);
  padding: 72px 0 80px;
}

/* ── Header ── */
.pm-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 16px;
  flex-wrap: wrap;
}

.pm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.pm-eyebrow::before,
.pm-eyebrow::after {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.pm-title {
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.text-play-fair {
  font-family: 'Playfair Display', serif;
}

.pm-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.pm-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 380px;
  margin-top: 8px;
}

.pm-head-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.pm-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.pm-nav-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

.pm-nav-btn:disabled {
  opacity: 0.28;
  cursor: not-allowed;
  border-color: var(--border);
  color: var(--text-muted);
}

.pm-viewall {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold-dark);
  text-decoration: none;
  padding: 10px 20px;
  border: 1.5px solid var(--gold);
  border-radius: 100px;
  white-space: nowrap;
  transition: var(--transition);
}

.pm-viewall:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ═══════════════════════════════════════════════
       SCROLL TRACK
    ═══════════════════════════════════════════════ */
.mosaic-track {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.mosaic-track::-webkit-scrollbar {
  display: none;
}

/* ═══════════════════════════════════════════════
       MOSAIC WRAPPER
       Two rows stacked. Each row is a flex of cards.
       Row 1 card widths: W W  N  W  N  W  (W=wide, N=narrow)
       Row 2 card widths: N W  W  N  W  N  (shifted so edges don't align)
       Both rows same height → horizontal stagger visible
    ═══════════════════════════════════════════════ */
.mosaic {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  /* fill full container */
  min-width: 700px;
  /* minimum before scroll kicks in on mobile */
}

/* Each row */
.mc-row {
  display: flex;
  gap: 10px;
  height: 260px;
  width: 100%;
  flex-shrink: 0;
}

/* ── Card ── */
.mc {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}

/*
      Width classes use flex instead of fixed px
      Wide = 2 units, Narrow = 1.3 units → ratio stays consistent at any screen size
      flex: W N; means "take this proportion of remaining space"
    */
.mc--w {
  flex: 2 0 0;
  min-width: 0;
}

.mc--n {
  flex: 1.3 0 0;
  min-width: 0;
}

.mc--m {
  flex: 1.65 0 0;
  min-width: 0;
}

.mc img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 7s ease;
}

.mc:hover img {
  transform: scale(1.06);
}

/* dark gradient over image */
.mc::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(6, 3, 1, 0.84) 0%,
      rgba(6, 3, 1, 0.22) 50%,
      rgba(6, 3, 1, 0.02) 100%);
  transition: var(--transition);
}

.mc:hover::after {
  background: linear-gradient(to top,
      rgba(6, 3, 1, 0.90) 0%,
      rgba(6, 3, 1, 0.35) 55%,
      rgba(6, 3, 1, 0.06) 100%);
}

/* text body */
.mc-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px 18px;
  z-index: 2;
}

.mc-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  backdrop-filter: blur(6px);
}

.mc-badge--gold {
  background: var(--gold);
  color: var(--dark);
}

.mc-badge--glass {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.mc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 3px;
}

.mc--n .mc-title {
  font-size: 0.9rem;
}

.mc-sub {
  font-size: 0.69rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 4px;
}

.mc-price {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(215, 166, 92, 0.3);
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.mc-price-num {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
}

.mc-price-unit {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.36);
}

/* hover actions top-right */
.mc-actions {
  position: absolute;
  top: 11px;
  right: 11px;
  z-index: 3;
  display: flex;
  gap: 6px;
  opacity: 0;
  transition: var(--transition);
}

.mc:hover .mc-actions {
  opacity: 1;
}

.mc-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  cursor: pointer;
  transition: var(--transition);
}

.mc-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* center arrow on hover */
.mc-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(215, 166, 92, 0.14);
  border: 1.5px solid rgba(215, 166, 92, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.9rem;
  z-index: 3;
  opacity: 0;
  transition: var(--transition);
}

.mc:hover .mc-arrow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ═══════════════════════════════════════════════
       TABLET (max 991px)
       Keep 2-row stagger layout, switch to fixed px widths
       so the whole mosaic scrolls as one block
    ═══════════════════════════════════════════════ */
@media (max-width: 991px) {
  .mosaic {
    width: -moz-max-content;
    width: max-content;
    min-width: unset;
  }

  .mc-row {
    width: -moz-max-content;
    width: max-content;
    height: 220px;
  }

  .mc--w {
    flex: 0 0 240px;
    width: 240px;
  }

  .mc--n {
    flex: 0 0 160px;
    width: 160px;
  }

  .mc--m {
    flex: 0 0 200px;
    width: 200px;
  }
}

/* ═══════════════════════════════════════════════
       MOBILE (max 575px)
       Same 2-row scroll, just slightly smaller cards
    ═══════════════════════════════════════════════ */
@media (max-width: 575px) {
  .pm-section {
    padding: 52px 0 64px;
  }

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

  .pm-head-right {
    width: 100%;
    justify-content: flex-start;
  }

  .mc-row {
    height: 185px;
  }

  .mc--w {
    flex: 0 0 195px;
    width: 195px;
  }

  .mc--n {
    flex: 0 0 130px;
    width: 130px;
  }

  .mc--m {
    flex: 0 0 162px;
    width: 162px;
  }
}

/* ══════════════════════════════════
      JUST LIST SECTION
    ══════════════════════════════════ */
.jl-section {
  background: var(--white);
  padding: 32px 0 40px;
}

/* ─── Section Header ─────────────────────────────── */
.jl-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.jl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.jl-eyebrow::before,
.jl-eyebrow::after {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.jl-title {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.jl-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.jl-subtitle {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.7;
}

.jl-head-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.jl-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
}

.jl-live .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .35
  }
}

.jl-viewall {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .77rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-decoration: none;
  padding: 10px 20px;
  border: 1.5px solid var(--gold);
  border-radius: 100px;
  white-space: nowrap;
  transition: all .3s var(--ease);
}

.jl-viewall:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ─── Nav Buttons (shared: grid + mobile tracks) ─── */
.jl-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--gold-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all .3s var(--ease);
  flex-shrink: 0;
}

.jl-nav-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

.jl-nav-btn:disabled {
  opacity: .28;
  cursor: not-allowed;
  border-color: var(--border);
  color: var(--text-muted);
}

/* ─── Filter Tabs ────────────────────────────────── */
.jl-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.jl-filter {
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .76rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .3s var(--ease);
}

.jl-filter.active,
.jl-filter:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-pale);
}

/* ─── Desktop Grid ───────────────────────────────── */
/*
      Bootstrap .row.align-items-stretch makes every col the same height.
      Each col is display:flex so .h-100 on the card wrapper works correctly.
    */
#jlGrid {
  display: none;
}

@media (min-width: 576px) {
  #jlGrid {
    display: flex;
  }
}

/* ─── Mobile Scroll Tracks ───────────────────────── */
.jl-mobile {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 576px) {
  .jl-mobile {
    display: none;
  }
}

.jl-track-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.jl-track-label {
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.jl-track-label.gold {
  color: var(--gold-dark);
}

.jl-track-nav {
  display: flex;
  gap: 8px;
}

.jl-track-nav .jl-nav-btn {
  width: 34px;
  height: 34px;
  font-size: .9rem;
}

.jl-mobile-track {
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.jl-mobile-track::-webkit-scrollbar {
  display: none;
}

.jl-mobile-row {
  display: flex;
  gap: 12px;
  width: -moz-max-content;
  width: max-content;
  align-items: stretch;
}

.jl-mobile-row>div {
  width: 260px;
  flex-shrink: 0;
  display: flex;
}

/* ─── Empty State ────────────────────────────────── */
.jl-empty {
  width: 100%;
  text-align: center;
  padding: 48px 0;
  color: var(--text-muted);
  font-size: .88rem;
  display: none;
}

/* ─── Load More ──────────────────────────────────── */
.jl-loadmore {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.btn-loadmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: transparent;
  color: var(--text-muted);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s var(--ease);
}

.btn-loadmore:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-pale);
}

/* ═══════════════════════════════════════════════════
       PROPERTY CARD
       Layout: flex-column so footer always sticks to bottom.
       All cards in a Bootstrap row are the same height because
       the row uses align-items-stretch and every col is d-flex.
    ═══════════════════════════════════════════════════ */
.pc {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  /* fill whatever wrapper it's in */
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.pc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(215, 166, 92, .3);
}

/* Sponsored variant */
.pc--sponsored {
  border-color: rgba(215, 166, 92, .35);
  background: linear-gradient(160deg, #fffdf8 0%, var(--white) 100%);
  box-shadow: 0 2px 12px rgba(215, 166, 92, .08);
}

.pc--sponsored::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold-light), var(--gold-dark));
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  z-index: 1;
}

.pc--sponsored:hover {
  border-color: rgba(215, 166, 92, .55);
  box-shadow: var(--shadow-gold);
}

/* ─── Image Slider ───────────────────────────────── */
.pc-slider {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

/* Slide strip — one flex row; translate to reveal current slide */
.pc-slides {
  display: flex;
  height: 100%;
  transition: transform .42s var(--ease);
  will-change: transform;
}

.pc-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

.pc-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.pc-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .45) 0%, transparent 55%);
}

/* Prev / next arrows — visible on hover */
.pc-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--dark);
  opacity: 0;
  transition: opacity .25s var(--ease);
}

.pc-slider:hover .pc-arrow {
  opacity: 1;
}

.pc-arrow:hover {
  background: var(--white);
}

.pc-arrow--prev {
  left: 8px;
}

.pc-arrow--next {
  right: 8px;
}

/* Dots */
.pc-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 4px;
}

.pc-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  transition: all .25s var(--ease);
  cursor: pointer;
}

.pc-dot.active {
  width: 14px;
  border-radius: 3px;
  background: var(--white);
}

/* "View more photos" chip — shown when photos > SHOW_SLIDES */
.pc-more-chip {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 4;
  display: none;
  /* JS sets display:flex when needed */
  align-items: center;
  gap: 5px;
  background: rgba(0, 0, 0, .58);
  color: rgba(255, 255, 255, .9);
  font-size: .62rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  text-decoration: none;
  transition: background .2s var(--ease);
}

.pc-more-chip:hover {
  background: rgba(215, 166, 92, .85);
  color: var(--dark);
}

/* Badges */
.pc-img-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 5px;
  z-index: 3;
}

.pc-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.pc-badge--new {
  background: var(--dark);
  color: var(--white);
}

.pc-badge--sale {
  background: rgba(255, 255, 255, .18);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .3);
}

.pc-badge--rent {
  background: rgba(34, 197, 94, .85);
  color: var(--white);
}

.pc-badge--spon {
  background: rgba(215, 166, 92, .92);
  color: var(--dark);
}

/* Fav button */
.pc-fav {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .88);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--text-muted);
  opacity: 0;
  transition: all .25s var(--ease);
}

.pc-slider:hover .pc-fav {
  opacity: 1;
}

.pc-fav:hover {
  background: #fef2f2;
  color: #ef4444;
}

/* ─── Card Body ──────────────────────────────────── */
.pc-body {
  padding: 12px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pc-type {
  font-size: .63rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 4px;
}

/* Reserve 2-line height so cards with 1-line titles align with 2-line ones */
.pc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pc-location {
  font-size: .71rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}

.pc-location i {
  font-size: .77rem;
  color: var(--text-light);
}

.pc-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 10px;
}

.pc-stats {
  display: flex;
  gap: 12px;
  margin-top: 4px;
  margin-bottom: 10px;
}

.pc-stat {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .7rem;
  color: var(--text-muted);
}

.pc-stat i {
  font-size: .78rem;
  color: var(--text-light);
}

/* Footer always pinned to bottom of card body */
.pc-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
}

.pc-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
}

.pc-price small {
  font-family: 'IBM Plex Sans Thai', sans-serif;
  font-size: .66rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 2px;
}

.pc-time {
  font-size: .66rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 3px;
}

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 575px) {
  .jl-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .jl-head-right {
    width: 100%;
    flex-wrap: wrap;
  }
}

/* ═══════════════════════════════════
       AUTH MODAL — OVERLAY
    ═══════════════════════════════════ */
.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.auth-overlay.show {
  opacity: 1;
  pointer-events: all;
}

/* ── MODAL SHELL ── */
.auth-modal {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  /* border: 1px solid rgba(215, 166, 92, .2); */
  box-shadow: 0 40px 100px rgba(0, 0, 0, .15), 0 0 0 1px rgba(215, 166, 92, .06);
  transform: translateY(24px) scale(.97);
  transition: transform .35s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
}

.auth-overlay.show .auth-modal {
  transform: translateY(0) scale(1);
}

/* ── LEFT PANEL ── */
/* Left panel ไม่เปลี่ยน — มีรูป bg + dark overlay อยู่แล้ว ข้อความสีขาวยังอ่านได้ปกติ */
.auth-panel-left {
  flex: 0 0 340px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 36px;
  background: #0a0a0a;
}

.auth-panel-left .left-bg {
  position: absolute;
  inset: 0;
  background: url(/images/hero-4.jpg?a6b83eb52fd4234628facb0297ae9bef) center/cover;
  opacity: .45;
}

.auth-panel-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .3) 60%, rgba(0, 0, 0, .1) 100%);
}

.auth-left-content {
  position: relative;
  z-index: 2;
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.auth-brand-icon {
  width: 38px;
  height: 38px;
  background: #d7a65c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 1rem;
}

.auth-brand-text .main {
  display: block;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 2px;
}

.auth-brand-text .sub {
  display: block;
  color: #d7a65c;
  font-size: .55rem;
  letter-spacing: 3px;
  font-weight: 600;
}

.auth-left-heading {
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin: 0 0 12px;
}

.auth-left-heading em {
  font-style: italic;
  color: #d7a65c;
}

.auth-left-desc {
  font-size: .8rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.75;
  margin-bottom: 28px;
}

.auth-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.auth-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
}

.auth-perks li .perk-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(215, 166, 92, .15);
  border: 1px solid rgba(215, 166, 92, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d7a65c;
  font-size: .65rem;
  flex-shrink: 0;
}

/* ── RIGHT PANEL ── */
.auth-panel-right {
  flex: 1;
  padding: 40px 40px 36px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  position: relative;
  overflow-y: auto;
}

/* close btn */
.auth-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .04);
  border: 1px solid rgba(0, 0, 0, .08);
  color: rgba(0, 0, 0, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: .2s;
  z-index: 10;
}

.auth-close:hover {
  background: rgba(0, 0, 0, .08);
  color: var(--dark);
}

/* tab switcher */
.auth-tabs {
  display: flex;
  background: var(--bg-light);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 32px;
  gap: 4px;
}

.auth-tab {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: 'IBM Plex Sans Thai', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  border-radius: 9px;
  cursor: pointer;
  transition: .2s;
}

.auth-tab.active {
  background: rgba(215, 166, 92, .12);
  color: var(--gold-dark);
  border: 1px solid rgba(215, 166, 92, .25);
}

.auth-tab:hover:not(.active) {
  color: var(--text);
}

/* forms */
.auth-form {
  display: none;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.auth-form.active {
  display: flex;
}

.auth-form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 4px;
}

.auth-form-subtitle {
  font-size: .8rem;
  color: var(--text-muted);
  margin: 0 0 28px;
}

/* field group */
.auth-field {
  margin-bottom: 16px;
}

.auth-label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}

.auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-input-wrap .field-icon {
  position: absolute;
  left: 14px;
  color: var(--text-light);
  font-size: .9rem;
  pointer-events: none;
}

.auth-input {
  width: 100%;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px 12px 40px;
  color: var(--text);
  font-family: 'IBM Plex Sans Thai', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: .2s;
  box-sizing: border-box;
}

.auth-input::-moz-placeholder {
  color: var(--text-light);
}

.auth-input::placeholder {
  color: var(--text-light);
}

.auth-input:focus {
  border-color: rgba(215, 166, 92, .5);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(215, 166, 92, .1);
}

.auth-input.error {
  border-color: rgba(239, 68, 68, .5);
  background: rgba(239, 68, 68, .03);
}

/* eye toggle on password */
.auth-input-wrap .eye-btn {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  font-size: .9rem;
  transition: .15s;
  padding: 4px;
}

.auth-input-wrap .eye-btn:hover {
  color: var(--text-muted);
}

/* error message */
.auth-error-msg {
  font-size: .72rem;
  color: #ef4444;
  margin-top: 5px;
  display: none;
}

.auth-error-msg.show {
  display: block;
}

/* row-2 for side-by-side fields */
.auth-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* forgot */
.auth-forgot {
  display: block;
  text-align: right;
  font-size: .75rem;
  color: var(--gold-dark);
  text-decoration: none;
  margin-top: -8px;
  margin-bottom: 16px;
  transition: .15s;
  opacity: .75;
}

.auth-forgot:hover {
  opacity: 1;
  color: var(--gold-dark);
}

/* checkbox */
.auth-check-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.auth-check-wrap input[type=checkbox] {
  accent-color: #d7a65c;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.auth-check-wrap label {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.auth-check-wrap a {
  color: var(--gold-dark);
  text-decoration: none;
}

/* primary button */
.auth-btn-primary {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: 'IBM Plex Sans Thai', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .03em;
  transition: .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.auth-btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(215, 166, 92, .3);
  color: var(--white);
}

.auth-btn-primary:active {
  transform: translateY(0);
}

/* divider */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.auth-divider span {
  font-size: .72rem;
  color: var(--text-light);
  white-space: nowrap;
}

/* social buttons */
.auth-social-btns {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.auth-social-btn {
  flex: 1;
  padding: 5px 0px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 12px;
  color: var(--text-muted);
  font-family: 'IBM Plex Sans Thai', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: .2s;
}

.auth-social-btn:hover {
  background: var(--bg-light);
  border-color: rgba(215, 166, 92, .3);
  color: var(--text);
}

.auth-social-btn .fab {
  font-size: .95rem;
}

.auth-social-btn .fa-google {
  color: #ea4335;
}

.auth-social-btn .fa-facebook-f {
  color: #1877f2;
}

/* switch prompt */
.auth-switch {
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: auto;
}

.auth-switch a {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 600;
  margin-left: 4px;
}

.auth-switch a:hover {
  color: var(--gold);
}

/* success state */
.auth-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 20px 0;
  flex: 1;
}

.auth-success.show {
  display: flex;
}

.success-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(34, 197, 94, .1);
  border: 1px solid rgba(34, 197, 94, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
  font-size: 1.8rem;
}

.auth-success h3 {
  margin: 0;
  color: var(--dark);
  font-size: 1.1rem;
}

.auth-success p {
  margin: 0;
  font-size: .82rem;
  color: var(--text-muted);
}

/* ── MOBILE ── */
@media (max-width: 700px) {
  .auth-modal {
    flex-direction: column;
    border-radius: 20px;
    max-height: 96vh;
  }

  .auth-panel-left {
    flex: 0 0 auto;
    padding: 28px 24px 28px;
  }

  .auth-panel-left .left-bg {
    opacity: .3;
  }

  .auth-left-heading {
    font-size: 1.2rem;
  }

  .auth-perks {
    display: none;
  }

  .auth-panel-right {
    padding: 28px 24px 24px;
  }

  .auth-row2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .auth-brand {
    margin-bottom: 16px;
  }

  .auth-left-desc {
    display: none;
  }
}

@media (max-width: 400px) {
  .auth-social-btns {
    flex-direction: column;
  }
}

/* ════════════════════════════════════════════════════
   AUTH ADDITIONAL CSS — validation, strength, modals
   เพิ่มต่อท้าย CSS เดิม (auth-modal-light.css)
════════════════════════════════════════════════════ */

/* ── Input valid state ── */
.auth-input.valid {
  border-color: rgba(34, 197, 94, .5);
  background: var(--white);
}

.auth-input.valid:focus {
  border-color: rgba(34, 197, 94, .6);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .1);
}

/* ── Error message ── */
.auth-error-msg {
  font-size: .72rem;
  color: #ef4444;
  margin-top: 5px;
  display: none;
  align-items: center;
  gap: 4px;
}

.auth-error-msg.show {
  display: flex;
}

.auth-error-msg::before {
  content: '\ea7f';
  /* tabler icon ti-alert-circle via font */
  font-family: 'tabler-icons';
  font-size: .75rem;
  flex-shrink: 0;
}

/* Checkbox error */
.auth-check-error {
  font-size: .72rem;
  color: #ef4444;
  margin-top: 4px;
  display: none;
  padding-left: 25px;
}

.auth-check-error.show {
  display: block;
}

/* ── Password strength bar ── */
.auth-strength {
  margin-top: 8px;
}

.auth-strength-track {
  height: 4px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 4px;
}

.auth-strength-bar {
  height: 100%;
  width: 0%;
  border-radius: 99px;
  transition: width .3s ease, background .3s ease;
}

.auth-strength-label {
  font-size: .68rem;
  font-weight: 600;
  transition: color .3s;
}

/* ── Email verify screen ── */
.auth-verify-email {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
  padding: 8px 0 4px;
  flex: 1;
}

.auth-verify-email.show {
  display: flex;
}

.verify-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(215, 166, 92, .1);
  border: 1px solid rgba(215, 166, 92, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.verify-icon-wrap i {
  font-size: 2rem;
  color: var(--gold-dark);
}

.verify-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(215, 166, 92, .25);
  animation: verifyPulse 2s ease-in-out infinite;
}

@keyframes verifyPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .6;
  }

  50% {
    transform: scale(1.08);
    opacity: .2;
  }
}

.verify-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 8px;
}

.verify-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 4px;
}

.verify-email-highlight {
  display: inline-block;
  background: rgba(215, 166, 92, .1);
  border: 1px solid rgba(215, 166, 92, .2);
  color: var(--gold-dark);
  font-weight: 600;
  font-size: .82rem;
  padding: 4px 12px;
  border-radius: 6px;
  margin: 8px 0 20px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.verify-steps {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  text-align: left;
  width: 100%;
  max-width: 320px;
  background: var(--bg-light);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.verify-steps li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.verify-steps li .step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.verify-btn-primary {
  width: 100%;
  max-width: 320px;
  padding: 13px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: 'IBM Plex Sans Thai', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  text-decoration: none;
}

.verify-btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(215, 166, 92, .3);
  color: var(--white);
}

.verify-resend {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

#resendBtn {
  background: none;
  border: none;
  color: var(--gold-dark);
  font-family: 'IBM Plex Sans Thai', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: .15s;
  padding: 0;
}

#resendBtn:hover {
  color: var(--gold);
}

#resendBtn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

#resendNote {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 4px;
  min-height: 18px;
}

.verify-back {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.verify-back a {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 500;
}

.verify-back a:hover {
  color: var(--gold);
}

/* ════════════════════════════════════
   TERMS / PRIVACY MODAL
════════════════════════════════════ */
.doc-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.doc-modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.doc-modal {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 680px;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .2);
  transform: translateY(16px);
  transition: transform .3s cubic-bezier(.25, .46, .45, .94);
  overflow: hidden;
}

.doc-modal-overlay.show .doc-modal {
  transform: translateY(0);
}

.doc-modal-header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.doc-modal-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.doc-modal-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(215, 166, 92, .1);
  border: 1px solid rgba(215, 166, 92, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1rem;
  flex-shrink: 0;
}

.doc-modal-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  line-height: 1.3;
}

.doc-modal-date {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.doc-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .04);
  border: 1px solid rgba(0, 0, 0, .08);
  color: rgba(0, 0, 0, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: .95rem;
  transition: .2s;
  flex-shrink: 0;
}

.doc-modal-close:hover {
  background: rgba(0, 0, 0, .08);
  color: var(--dark);
}

.doc-modal-body {
  padding: 24px 28px;
  overflow-y: auto;
  flex: 1;
  line-height: 1.8;
  color: var(--text);
  font-size: .88rem;
  scroll-behavior: smooth;
}

.doc-modal-body h2 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

.doc-modal-body h2:first-child {
  margin-top: 0;
}

.doc-modal-body p {
  margin: 0 0 12px;
  color: var(--text-muted);
}

.doc-modal-body ul {
  margin: 0 0 12px;
  padding-left: 20px;
  color: var(--text-muted);
}

.doc-modal-body ul li {
  margin-bottom: 6px;
}

.doc-modal-body strong {
  color: var(--text);
  font-weight: 600;
}

.doc-modal-footer {
  padding: 16px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}

.btn-doc-close {
  padding: 10px 28px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: 'IBM Plex Sans Thai', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
}

.btn-doc-close:hover {
  background: var(--gold-dark);
  box-shadow: 0 4px 16px rgba(215, 166, 92, .3);
}

/* ── Mobile doc modal ── */
@media (max-width: 600px) {
  .doc-modal {
    max-height: 90vh;
    border-radius: 20px 20px 0 0;
    align-self: flex-end;
    margin: 0 -16px -16px;
    width: calc(100% + 32px);
    max-width: none;
  }

  .doc-modal-header {
    padding: 20px 20px 16px;
  }

  .doc-modal-body {
    padding: 16px 20px;
  }

  .doc-modal-footer {
    padding: 12px 20px;
  }
}

/* ═══════════════════════════════════════════════════════════
   resources/css/app.css
   Global CSS Entry Point for Laravel Mix
   ─────────────────────────────────────────────────────────
   นำเข้า style.css หลักของโปรเจ็กต์
   หากใช้ SASS ในอนาคต ให้เปลี่ยนนามสกุลเป็น .scss
   และเปลี่ยนการเรียกใน webpack.mix.js เป็น .sass()
═══════════════════════════════════════════════════════════ */

