/* ============================================================
   Simpley.co — Global Stylesheet
   ============================================================ */

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

/* ── Variables ── */
:root {
  --blue:       #1E90FF;
  --light-blue: #5BB8F5;
  --gold:       #F5A623;
  --bg-blue:    #EBF5FF;
  --white:      #FFFFFF;
  --navy:       #0D1B2A;
  --border:     #e5e7eb;
  --body:       #4b5563;
  --dark:       #0D1B2A;
  --grey:       #6b7280;
  --mid-grey:   #374151;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--body);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  background: var(--white);
  border-bottom: 0.5px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}

.nav-inner {
  display: flex;
  align-items: center;
  padding: 13px 28px;
  gap: 20px;
}

.nav-logo img {
  height: 36px;
  width: auto;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--grey);
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--blue); }
.nav-links a.active { color: var(--blue); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--grey);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 20px;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}

.lang-btn.active {
  background: var(--blue);
  color: var(--white);
}

.lang-btn:hover:not(.active) {
  background: var(--bg-blue);
  color: var(--blue);
}

/* Nav WhatsApp pill */
.btn-nav-wa {
  background: var(--blue);
  color: var(--white);
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.15s;
}

.btn-nav-wa:hover { opacity: 0.88; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.2s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 14px;
  border-top: 0.5px solid var(--border);
  background: var(--white);
}

.mobile-menu.open { display: flex; }

.mobile-menu .mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-menu .mobile-nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--grey);
  padding: 4px 0;
}

.mobile-menu .mobile-nav-links a.active { color: var(--blue); }

.mobile-menu .lang-switcher {
  padding-top: 4px;
}

.mobile-menu .btn-nav-wa {
  align-self: flex-start;
}

/* ============================================================
   HERO — Light blue (index, listings, contact)
   ============================================================ */
.hero-light {
  background: var(--bg-blue);
  text-align: center;
  padding: 56px 32px 52px;
}

.hero-line1 {
  color: var(--blue);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-line2 {
  color: var(--gold);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-heading {
  color: var(--blue);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-sub {
  color: var(--body);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub strong, .hero-sub u {
  font-weight: 700;
  text-decoration: underline;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── HERO — Image overlay (detail pages) ── */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}

.hero-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-banner-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a3a5c, #0d1b2a);
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  padding: 36px 32px 40px;
  max-width: 860px;
}

.hero-banner-content h1 {
  color: var(--white);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-banner-content p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 400;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--blue);
  color: var(--white);
  padding: 10px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: none;
  transition: opacity 0.15s;
}

.btn-primary:hover { opacity: 0.88; }

.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border: 1.5px solid var(--blue);
  padding: 10px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  transition: background 0.15s;
}

.btn-secondary:hover { background: var(--bg-blue); }

.btn-wa {
  background: #25D366;
  color: var(--white);
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  transition: opacity 0.15s;
}

.btn-wa:hover { opacity: 0.88; }

.btn-tg {
  background: #229ED9;
  color: var(--white);
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  transition: opacity 0.15s;
}

.btn-tg:hover { opacity: 0.88; }

.btn-email {
  background: var(--mid-grey);
  color: var(--white);
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  transition: opacity 0.15s;
}

.btn-email:hover { opacity: 0.88; }

/* ============================================================
   HOMEPAGE — LISTING CARDS (SMALL)
   ============================================================ */
.listings-section {
  background: var(--white);
  padding: 40px 28px;
}

.section-heading {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  border: 0.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.2s;
}

.card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.card-top-bar { height: 5px; }

.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-img-placeholder {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--grey);
  font-style: italic;
}

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

.card-title {
  font-weight: 600;
  color: var(--dark);
  font-size: 14px;
  margin-bottom: 4px;
}

.card-subtitle {
  font-size: 11px;
  color: var(--grey);
  margin-bottom: 12px;
}

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

.tag {
  border: 0.5px solid #d1d5db;
  color: var(--mid-grey);
  font-size: 10px;
  font-weight: 500;
  border-radius: 4px;
  padding: 3px 8px;
}

.card-link {
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.card-link:hover { text-decoration: underline; }

/* ============================================================
   LISTINGS PAGE — FULL LISTING CARDS
   ============================================================ */
.listings-page-section {
  background: var(--white);
  padding: 32px 28px 48px;
}

.filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--white);
  color: var(--grey);
  border: 0.5px solid #d1d5db;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  min-height: 38px;
  transition: all 0.15s;
}

.filter-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.filter-btn:hover:not(.active) {
  border-color: var(--blue);
  color: var(--blue);
}

.listing-cards-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.listing-card {
  border: 0.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  display: grid;
  grid-template-columns: 260px 1fr;
  transition: box-shadow 0.2s;
}

.listing-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

.listing-card.hidden { display: none; }

.listing-img-wrapper {
  position: relative;
  overflow: hidden;
}

.listing-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}

.listing-img-placeholder {
  width: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--grey);
  font-style: italic;
}

.listing-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}

.badge-sale { background: var(--blue); color: var(--white); }
.badge-rent { background: var(--gold); color: var(--white); }

.listing-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.listing-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.listing-location {
  font-size: 12px;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 4px;
}

.listing-specs {
  font-size: 12px;
  color: var(--body);
  background: var(--bg-blue);
  padding: 6px 10px;
  border-radius: 5px;
  font-weight: 500;
}

.listing-desc {
  font-size: 13px;
  color: var(--body);
  line-height: 1.65;
}

.listing-price-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 10px 0;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.price-item { display: flex; flex-direction: column; gap: 2px; }

.price-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

.listing-body .btn-primary { align-self: flex-start; margin-top: 4px; }

/* ============================================================
   DETAIL PAGES — PHOTO GRID
   ============================================================ */
.photo-section {
  padding: 32px 28px;
  background: var(--white);
}

.photo-section-heading {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.photo-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

.photo-placeholder {
  width: 100%;
  height: 200px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--grey);
  font-style: italic;
}

/* ============================================================
   DETAIL PAGES — HIGHLIGHTS GRID
   ============================================================ */
.highlights-section {
  padding: 32px 28px;
  background: #fafafa;
}

.highlights-section h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

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

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 8px;
}

.highlight-icon {
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.highlight-text {
  font-size: 13px;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.5;
}

/* ============================================================
   DETAIL PAGES — TABLES
   ============================================================ */
.table-section {
  padding: 32px 28px;
  background: var(--white);
}

.table-section h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.data-table th {
  background: var(--blue);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
}

.data-table td {
  padding: 11px 16px;
  border-bottom: 0.5px solid var(--border);
  color: var(--body);
}

.data-table tr:last-child td { border-bottom: none; }

.data-table tr:nth-child(even) td { background: #f9fafb; }

.data-table tfoot td {
  background: var(--bg-blue);
  font-weight: 600;
  color: var(--dark);
}

.table-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--grey);
  font-style: italic;
}

/* ============================================================
   DETAIL PAGES — INVESTMENT / PRICING BOXES
   ============================================================ */
.invest-box {
  margin: 0 28px 32px;
  background: var(--gold);
  border-radius: 10px;
  padding: 24px 28px;
  color: var(--white);
}

.invest-box h2 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
}

.invest-box-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.invest-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.invest-row-icon { font-size: 16px; }

.invest-pay-section h3 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.invest-pay-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.invest-pay-list li {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.invest-pay-list li::before {
  content: '›';
  font-weight: 700;
  font-size: 16px;
}

.pricing-box {
  margin: 0 28px 32px;
  background: var(--blue);
  border-radius: 10px;
  padding: 24px 28px;
  color: var(--white);
}

.pricing-box h2 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
}

.pricing-box-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.pricing-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.pricing-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.25);
  font-size: 13px;
  font-weight: 600;
  opacity: 0.92;
}

/* ============================================================
   DETAIL PAGES — DEVELOPER LINE & CTA
   ============================================================ */
.developer-line {
  padding: 0 28px 20px;
  font-size: 12px;
  color: var(--grey);
  line-height: 1.6;
}

.detail-cta {
  padding: 32px 28px 40px;
  background: var(--bg-blue);
  text-align: center;
}

.detail-cta h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.detail-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   BKK1 PAGE — DESCRIPTION
   ============================================================ */
.bkk1-desc-section {
  padding: 48px 28px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.bkk1-desc-section p {
  font-size: 16px;
  color: var(--body);
  line-height: 1.8;
  margin-bottom: 40px;
}

.bkk1-cta h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.bkk1-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-cards-section {
  padding: 40px 28px;
  background: var(--white);
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.contact-card {
  border: 0.5px solid var(--border);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: box-shadow 0.2s;
}

.contact-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 6px;
}

.icon-wa { background: #e8faf0; }
.icon-tg { background: #e8f4fb; }
.icon-em { background: #fff3e0; }

.contact-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.contact-card p {
  font-size: 13px;
  color: var(--grey);
}

/* Contact form */
.contact-form-section {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 28px 48px;
}

.contact-form-section h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 22px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s;
  min-height: 44px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,144,255,0.1);
}

.form-textarea { min-height: 110px; resize: vertical; }

.form-submit {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  min-height: 48px;
  width: 100%;
  transition: opacity 0.15s;
  margin-top: 6px;
}

.form-submit:hover { opacity: 0.88; }

.form-note {
  font-size: 12px;
  color: var(--grey);
  margin-top: 10px;
  text-align: center;
}

.contact-office-note {
  text-align: center;
  padding: 0 28px 40px;
  font-size: 13px;
  color: var(--grey);
  line-height: 1.7;
}

/* ============================================================
   CONTACT BANNER
   ============================================================ */
.contact-banner {
  background: var(--blue);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.banner-left { flex: 1; min-width: 200px; }

.banner-heading {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.banner-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.85);
}

.banner-right {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-banner-wa {
  background: var(--white);
  color: var(--blue);
  padding: 9px 20px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.15s;
}

.btn-banner-wa:hover { opacity: 0.9; }

.btn-banner-tg {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 9px 20px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  transition: background 0.15s;
}

.btn-banner-tg:hover { background: rgba(255,255,255,0.1); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 18px 28px;
}

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

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #475569;
  font-size: 11px;
}

.footer-logo { height: 24px; width: auto; opacity: 0.75; }

.footer-right {
  display: flex;
  gap: 18px;
  color: #475569;
  font-size: 11px;
  flex-wrap: wrap;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.divider {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 0 28px;
}

/* ============================================================
   RESPONSIVE — TABLET (≤900px)
   ============================================================ */
@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

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

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

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-light { padding: 40px 20px 36px; }
  .hero-line1, .hero-line2 { font-size: 28px; }
  .hero-heading { font-size: 26px; }

  /* Banner hero */
  .hero-banner-content h1 { font-size: 24px; }
  .hero-banner-content p { font-size: 13px; }
  .hero-banner { min-height: 220px; }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; }
  .listings-section { padding: 28px 16px; }

  /* Listing cards */
  .listing-card { grid-template-columns: 1fr; }
  .listing-img { min-height: 180px; height: 180px; }
  .listing-img-placeholder { min-height: 180px; }
  .listings-page-section { padding: 24px 16px 40px; }

  /* Photo grid */
  .photo-grid { grid-template-columns: 1fr; }
  .photo-section { padding: 24px 16px; }

  /* Highlights */
  .highlights-section { padding: 24px 16px; }
  .highlights-grid { grid-template-columns: 1fr; }

  /* Tables */
  .table-section { padding: 24px 16px; }
  .data-table { font-size: 12px; }
  .data-table th, .data-table td { padding: 9px 10px; }

  /* Boxes */
  .invest-box, .pricing-box { margin: 0 16px 24px; }

  /* Developer + CTA */
  .developer-line { padding: 0 16px 16px; }
  .detail-cta { padding: 28px 16px 36px; }

  /* BKK1 */
  .bkk1-desc-section { padding: 36px 16px; }

  /* Contact */
  .contact-cards-grid { grid-template-columns: 1fr; }
  .contact-cards-section { padding: 28px 16px; }
  .contact-form-section { padding: 0 16px 40px; }

  /* Banner */
  .contact-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
  }
  .banner-right { justify-content: center; }

  /* Footer */
  .footer { padding: 16px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-right { flex-direction: column; gap: 5px; }

  /* Listing price row */
  .listing-price-row { flex-direction: column; gap: 10px; }

  /* Detail page CTA */
  .detail-cta-btns, .bkk1-cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 12px 16px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-line1, .hero-line2 { font-size: 24px; }
}
