:root {
  --navy: #062f4f;
  --navy-dark: #032844;
  --navy-soft: #0c4168;
  --yellow: #ffc62a;
  --yellow-dark: #efb400;
  --green: #25d366;
  --white: #ffffff;
  --ink: #10243d;
  --muted: #5c6675;
  --line: #dce2e8;
  --surface: #f7f8fa;
  --shadow: 0 7px 20px rgba(11, 36, 62, .12);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.container { width: min(calc(100% - 56px), var(--container)); margin-inline: auto; }

.site-header {
  height: 76px;
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 3px 14px rgba(0, 22, 40, .14);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; color: #fff; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: Montserrat, sans-serif; font-size: 20px; letter-spacing: -.5px; }
.brand-text small { margin-top: 5px; font-family: Montserrat, sans-serif; font-size: 9px; letter-spacing: 5.3px; opacity: .78; }
.primary-nav { margin-left: auto; display: flex; align-items: center; gap: clamp(20px, 2.5vw, 36px); }
.primary-nav a {
  position: relative;
  padding: 28px 0 25px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 17px; height: 2px; background: var(--yellow); transition: right .25s ease; }
.primary-nav a:hover::after, .primary-nav a.active::after { right: 0; }
.header-wa {
  min-height: 40px;
  padding: 0 17px;
  border-radius: 5px;
  background: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.12);
  transition: transform .2s ease, filter .2s ease;
  white-space: nowrap;
}
.header-wa:hover { transform: translateY(-1px); filter: brightness(1.05); }
.header-wa i { font-size: 20px; }
.menu-toggle { display: none; margin-left: auto; width: 44px; height: 42px; border: 1px solid rgba(255,255,255,.2); border-radius: 5px; background: transparent; padding: 9px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: #fff; transition: .25s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; height: 450px; overflow: hidden; background: #102d45; }
.hero-track, .hero-slide { position: absolute; inset: 0; }
.hero-slide {
  opacity: 0;
  visibility: hidden;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center 55%;
  transition: opacity .75s ease, visibility .75s ease, transform 5s ease;
  transform: scale(1.025);
}
.hero-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); z-index: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2, 22, 37, .84) 0%, rgba(3, 28, 46, .68) 32%, rgba(3, 31, 49, .13) 64%, rgba(3, 31, 49, .06) 100%); }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-left: 72px; color: #fff; }
.hero h1, .hero h2 { margin: 0 0 12px; font-family: Montserrat, sans-serif; font-size: clamp(40px, 4.35vw, 58px); line-height: 1.08; letter-spacing: -.9px; text-transform: uppercase; font-weight: 800; text-shadow: 0 2px 10px rgba(0,0,0,.18); }
.hero p { margin: 0 0 25px; font-size: 16px; line-height: 1.45; color: rgba(255,255,255,.94); }
.btn { min-height: 46px; padding: 0 24px; border-radius: 7px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; font-family: Montserrat, sans-serif; font-weight: 800; font-size: 12px; text-transform: uppercase; transition: transform .2s ease, filter .2s ease; }
.btn:hover { transform: translateY(-2px); filter: brightness(1.03); }
.btn-yellow { background: var(--yellow); color: #17253a; box-shadow: inset 0 -3px 0 rgba(183, 126, 0, .2), 0 8px 18px rgba(0,0,0,.18); }
.hero-arrow { position: absolute; z-index: 5; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border: 0; border-radius: 50%; display: grid; place-items: center; background: #fff; color: #33485e; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,.2); transition: transform .2s ease, background .2s ease; }
.hero-arrow:hover { transform: translateY(-50%) scale(1.06); background: var(--yellow); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }
.hero-dots { position: absolute; z-index: 5; left: 50%; bottom: 15px; transform: translateX(-50%); display: flex; gap: 10px; }
.hero-dots button { width: 10px; height: 10px; border: 2px solid rgba(255,255,255,.76); border-radius: 50%; padding: 0; background: transparent; cursor: pointer; }
.hero-dots button.is-active { background: #fff; }

.section { padding: 22px 0 18px; }
.properties { background: #fff; }
.section-heading { text-align: center; margin-bottom: 22px; }
.section-heading h2 { margin: 0; font-family: Montserrat, sans-serif; font-size: 32px; line-height: 1.15; text-transform: uppercase; letter-spacing: 1.2px; color: var(--ink); }
.section-heading p { margin: 4px 0 6px; color: #777d86; font-size: 15px; }
.section-heading span { display: block; width: 48px; height: 3px; margin: auto; background: var(--yellow); border-radius: 99px; }
.property-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px 22px; }
.property-card { overflow: hidden; background: #fff; border: 1px solid #dfe4e9; border-radius: 7px; box-shadow: 0 2px 8px rgba(19,44,70,.09); transition: transform .25s ease, box-shadow .25s ease; }
.property-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.property-image { position: relative; aspect-ratio: 1.52 / 1; overflow: hidden; background: #dce4ea; }
.property-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.property-card:hover .property-image img { transform: scale(1.035); }
.favorite { position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; border: 0; border-radius: 50%; color: #fff; background: rgba(9,46,73,.24); font-size: 22px; cursor: pointer; text-shadow: 0 1px 4px rgba(0,0,0,.35); }
.favorite.is-active { color: #ff5a6a; background: #fff; }
.property-body { padding: 11px 13px 13px; }
.property-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: #5f6670; font-size: 10px; white-space: nowrap; }
.property-meta .rating { color: #202b3b; }
.property-meta .rating i { color: var(--yellow); font-size: 12px; margin-right: 1px; }
.property-meta .rating b { margin-left: 5px; }
.property-meta > span:last-child { overflow: hidden; text-overflow: ellipsis; }
.property-meta > span:last-child i { color: #475565; margin-right: 4px; }
.property-body h3 { margin: 10px 0 5px; font-family: Montserrat, sans-serif; font-size: 15px; line-height: 1.3; }
.price { font-family: Montserrat, sans-serif; font-size: 18px; color: #142b49; }

.company-info { padding: 0 0 18px; background: #fff; }
.info-panel { display: grid; grid-template-columns: 1.65fr .92fr .78fr; border: 1px solid #e1e5e9; border-radius: 7px; box-shadow: 0 2px 8px rgba(24,48,75,.07); background: #fff; overflow: hidden; }
.info-panel > article { padding: 24px 24px 22px; min-width: 0; }
.info-panel > article + article { border-left: 1px solid #e0e4e8; }
.info-panel h2, .site-footer h2 { margin: 0 0 17px; font-family: Montserrat, sans-serif; text-transform: uppercase; font-size: 16px; letter-spacing: .1px; }
.benefit-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); column-gap: 25px; row-gap: 19px; }
.benefit-item { display: grid; grid-template-columns: 38px minmax(0,1fr); gap: 12px; align-items: start; }
.benefit-item > i { color: #073b68; font-size: 30px; width: 38px; text-align: center; }
.benefit-item h3 { margin: 0 0 2px; font-family: Montserrat, sans-serif; font-size: 12px; }
.benefit-item p { margin: 0; color: #58616c; font-size: 11px; line-height: 1.42; }
.about-us p { margin: 0 0 17px; color: #4e5865; font-size: 11.5px; line-height: 1.75; }
.about-us img { width: 100%; height: 105px; object-fit: cover; border-radius: 8px; }
.office .contact-row { display: grid; grid-template-columns: 20px minmax(0,1fr); gap: 8px; margin-bottom: 16px; color: #475260; }
.office .contact-row i, .contact-link i { color: #073b68; }
.office p { margin: 0; font-size: 11px; line-height: 1.55; }
.contact-link { display: flex; align-items: center; gap: 9px; margin-top: 11px; font-size: 11px; font-weight: 600; overflow-wrap: anywhere; }
.contact-link:hover { color: var(--navy-soft); }

.site-footer { background: var(--navy); color: #fff; }
.footer-main { min-height: 184px; padding: 24px 0 18px; display: grid; grid-template-columns: .8fr 1.45fr .85fr; gap: 34px; align-items: start; }
.footer-main > div + div { border-left: 1px solid rgba(255,255,255,.25); padding-left: 34px; min-height: 132px; }
.footer-brand .brand-mark { width: 38px; height: 38px; }
.footer-brand .brand-text strong { font-size: 18px; }
.footer-brand p { max-width: 270px; margin: 15px 0 0; color: rgba(255,255,255,.85); font-size: 11.5px; line-height: 1.6; }
.site-footer h2 { font-size: 14px; margin-bottom: 14px; }
.social-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 24px; }
.social-grid a { display: grid; grid-template-columns: 30px minmax(0,1fr); align-items: center; gap: 9px; color: rgba(255,255,255,.9); font-size: 11px; line-height: 1.45; }
.social-grid a > i { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.12); font-size: 16px; }
.social-grid a:hover { color: var(--yellow); }
.footer-cta { border: 1px solid rgba(255,255,255,.35); border-radius: 8px; padding: 15px 16px 16px !important; min-height: auto !important; }
.footer-cta p { margin: -5px 0 13px; color: rgba(255,255,255,.86); font-size: 11px; line-height: 1.5; }
.footer-cta a { width: 100%; min-height: 38px; border-radius: 5px; background: var(--green); display: flex; align-items: center; justify-content: center; gap: 9px; font-family: Montserrat, sans-serif; font-weight: 800; font-size: 12px; text-transform: uppercase; box-shadow: inset 0 -2px 0 rgba(0,0,0,.12); }
.footer-cta a i { font-size: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.16); text-align: center; color: rgba(255,255,255,.75); font-size: 11px; padding: 8px 0; }

@media (max-width: 1080px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .header-inner { gap: 18px; }
  .primary-nav { gap: 18px; }
  .primary-nav a { font-size: 11px; }
  .header-wa { padding-inline: 12px; font-size: 12px; }
  .hero-content { padding-left: 62px; }
  .info-panel { grid-template-columns: 1.5fr .85fr .8fr; }
  .info-panel > article { padding-inline: 18px; }
  .benefit-grid { column-gap: 15px; }
  .footer-main { gap: 22px; }
  .footer-main > div + div { padding-left: 22px; }
}

@media (max-width: 900px) {
  .site-header { height: 70px; }
  .menu-toggle { display: block; }
  .header-wa { margin-left: 4px; }
  .primary-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 24px 26px 40px;
    background: rgba(3, 40, 68, .985);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav a { padding: 16px 4px; border-bottom: 1px solid rgba(255,255,255,.13); font-size: 14px; }
  .primary-nav a::after { display: none; }
  .hero { height: 500px; }
  .hero-content { padding-left: 55px; }
  .hero h1, .hero h2 { font-size: 46px; }
  .property-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .info-panel { grid-template-columns: 1fr 1fr; }
  .why-us { grid-column: 1 / -1; }
  .info-panel > article + article { border-left: 0; }
  .about-us, .office { border-top: 1px solid #e0e4e8; }
  .office { border-left: 1px solid #e0e4e8 !important; }
  .footer-main { grid-template-columns: 1fr 1.3fr; }
  .footer-cta { grid-column: 1 / -1; border-left: 1px solid rgba(255,255,255,.35) !important; padding: 17px 18px !important; min-height: auto; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { height: 64px; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-text strong { font-size: 16px; }
  .brand-text small { font-size: 7px; letter-spacing: 4.4px; }
  .header-wa { width: 42px; height: 42px; min-height: 42px; justify-content: center; padding: 0; border-radius: 50%; }
  .header-wa span { display: none; }
  .header-wa i { font-size: 22px; }
  .menu-toggle { width: 42px; height: 40px; }
  .primary-nav { top: 64px; }
  .hero { height: 550px; }
  .hero-slide { background-position: 62% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(2, 20, 34, .86) 0%, rgba(3, 28, 46, .7) 72%, rgba(3, 31, 49, .28) 100%); }
  .hero-content { justify-content: flex-end; padding: 0 44px 74px 34px; }
  .hero h1, .hero h2 { font-size: clamp(34px, 10vw, 43px); line-height: 1.08; letter-spacing: -.6px; }
  .hero p { font-size: 14px; }
  .hero p br { display: none; }
  .hero-arrow { top: auto; bottom: 16px; width: 30px; height: 30px; transform: none; font-size: 11px; box-shadow: 0 3px 10px rgba(0,0,0,.2); }
  .hero-arrow:hover { transform: scale(1.05); }
  .hero-arrow.prev { left: auto; right: 51px; }
  .hero-arrow.next { right: 14px; }
  .hero-dots { left: 14px; bottom: 26px; transform: none; gap: 7px; }
  .hero-dots button { width: 8px; height: 8px; border-width: 1.5px; }
  .section { padding-top: 26px; }
  .section-heading { margin-bottom: 19px; }
  .section-heading h2 { font-size: 25px; letter-spacing: .5px; }
  .section-heading p { font-size: 13px; }
  .property-grid { grid-template-columns: 1fr; gap: 16px; }
  .property-image { aspect-ratio: 1.52/1; }
  .property-body h3 { font-size: 15px; }
  .price { font-size: 17px; }
  .info-panel { display: block; }
  .info-panel > article { padding: 22px 18px; }
  .info-panel > article + article { border-top: 1px solid #e0e4e8; border-left: 0 !important; }
  .benefit-grid { grid-template-columns: 1fr; row-gap: 18px; }
  .benefit-item p, .about-us p, .office p, .contact-link { font-size: 12px; }
  .about-us img { height: 150px; }
  .footer-main { display: block; padding-top: 26px; }
  .footer-main > div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.2); padding: 23px 0 0; margin-top: 23px; min-height: auto; }
  .footer-brand p { max-width: 100%; }
  .social-grid { grid-template-columns: 1fr; gap: 13px; }
  .footer-cta { padding: 16px !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* === PROPERTY DETAIL PAGES === */
.property-image-link { display: block; width: 100%; height: 100%; }
.property-body h3 a { transition: color .2s ease; }
.property-body h3 a:hover { color: var(--navy-soft); }

.detail-page { background: #f4f6f8; }
.detail-intro { padding: 25px 0 21px; background: #fff; border-bottom: 1px solid #e3e7eb; }
.breadcrumb { display: flex; align-items: center; gap: 9px; margin-bottom: 22px; color: #74808d; font-size: 12px; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb i { font-size: 8px; color: #a9b1ba; }
.breadcrumb span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.detail-title-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 34px; }
.listing-status { display: inline-flex; align-items: center; min-height: 25px; padding: 0 11px; margin-bottom: 8px; border-radius: 99px; background: #e9f7ef; color: #198754; font-family: Montserrat, sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .7px; text-transform: uppercase; }
.detail-title-row h1 { max-width: 760px; margin: 0; font-family: Montserrat, sans-serif; font-size: clamp(29px, 3vw, 43px); line-height: 1.14; letter-spacing: -.7px; color: var(--ink); }
.detail-title-row > div:first-child > p { margin: 9px 0 0; color: #697582; font-size: 14px; }
.detail-title-row > div:first-child > p i { margin-right: 7px; color: var(--yellow-dark); }
.detail-top-price { min-width: 260px; text-align: right; }
.detail-top-price small, .detail-top-price span { display: block; color: #71808f; font-size: 11px; }
.detail-top-price strong { display: block; margin: 2px 0 6px; font-family: Montserrat, sans-serif; font-size: 25px; color: var(--navy); }
.detail-top-price span i { color: var(--yellow-dark); }

.detail-gallery-section { padding: 24px 0; background: #fff; }
.detail-gallery { display: grid; grid-template-columns: minmax(0, 2.15fr) minmax(235px, .85fr); gap: 12px; height: 500px; }
.gallery-main, .gallery-thumb { overflow: hidden; border-radius: 8px; background: #dce4ea; }
.gallery-main { position: relative; }
.gallery-main > img, .gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main > img { transition: opacity .18s ease; }
.gallery-main > span { position: absolute; right: 14px; bottom: 14px; min-height: 33px; padding: 0 12px; display: inline-flex; align-items: center; gap: 7px; border-radius: 5px; background: rgba(4,39,65,.88); color: #fff; font-size: 11px; font-weight: 700; }
.gallery-thumbs { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; }
.gallery-thumb { position: relative; padding: 0; border: 3px solid transparent; cursor: pointer; }
.gallery-thumb::after { content: ''; position: absolute; inset: 0; background: rgba(4,39,65,.08); transition: background .2s ease; }
.gallery-thumb:hover::after, .gallery-thumb.is-active::after { background: transparent; }
.gallery-thumb.is-active { border-color: var(--yellow); }

.detail-content-section { padding: 28px 0 38px; }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 350px; align-items: start; gap: 25px; }
.detail-main-column { display: grid; gap: 20px; min-width: 0; }
.detail-panel, .inquiry-card, .seller-card { background: #fff; border: 1px solid #e1e6eb; border-radius: 9px; box-shadow: 0 3px 13px rgba(21,45,70,.06); }
.detail-panel { padding: 25px; }
.panel-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 19px; padding-bottom: 15px; border-bottom: 1px solid #e8ebee; }
.panel-heading span, .related-heading span { display: block; margin-bottom: 3px; color: #8b96a1; font-family: Montserrat, sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; }
.panel-heading h2, .related-heading h2 { margin: 0; font-family: Montserrat, sans-serif; font-size: 22px; color: var(--ink); }
.fact-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.fact-grid > div { min-height: 84px; padding: 14px; display: flex; align-items: center; gap: 12px; border: 1px solid #e6eaee; border-radius: 7px; background: #fbfcfd; }
.fact-grid i { width: 35px; height: 35px; flex: 0 0 35px; display: grid; place-items: center; border-radius: 6px; background: #e8f0f6; color: var(--navy); font-size: 15px; }
.fact-grid span { color: #77828e; font-size: 11px; }
.fact-grid strong { display: block; margin-top: 2px; color: var(--ink); font-family: Montserrat, sans-serif; font-size: 14px; }
.property-description p { margin: 0; color: #566371; font-size: 14px; line-height: 1.8; }
.property-description p + p { margin-top: 13px; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 28px; }
.spec-row { min-height: 47px; display: flex; align-items: center; justify-content: space-between; gap: 15px; border-bottom: 1px solid #edf0f2; color: #697582; font-size: 13px; }
.spec-row strong { text-align: right; color: var(--ink); }
.feature-list { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 13px; }
.feature-list li { display: flex; align-items: center; gap: 9px; color: #4d5b69; font-size: 13px; }
.feature-list i { color: #22a75a; }
.map-frame { overflow: hidden; height: 340px; border-radius: 7px; background: #dce4ea; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.nearby-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 9px; margin-top: 13px; }
.nearby-grid > div { padding: 11px 12px; border-radius: 6px; background: #f4f7f9; }
.nearby-grid span, .nearby-grid strong { display: block; }
.nearby-grid span { color: #7c8792; font-size: 10px; }
.nearby-grid strong { margin-top: 2px; color: var(--navy); font-size: 12px; }
.map-note { margin: 14px 0 0; display: flex; align-items: flex-start; gap: 8px; color: #78838e; font-size: 11px; line-height: 1.55; }
.map-note i { margin-top: 2px; color: var(--navy-soft); }

.detail-sidebar { position: sticky; top: 96px; display: grid; gap: 18px; }
.inquiry-card, .seller-card { padding: 22px; }
.inquiry-label, .seller-label { display: block; color: #85919d; font-family: Montserrat, sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; }
.inquiry-price { display: block; margin: 4px 0 8px; font-family: Montserrat, sans-serif; font-size: 26px; color: var(--navy); }
.inquiry-card > p { margin: 0 0 17px; color: #66727f; font-size: 12px; line-height: 1.65; }
.consult-button, .call-button { min-height: 47px; padding: 0 15px; display: flex; justify-content: center; align-items: center; gap: 9px; border-radius: 6px; font-family: Montserrat, sans-serif; font-size: 12px; font-weight: 800; }
.consult-button { background: var(--green); color: #fff; box-shadow: inset 0 -2px 0 rgba(0,0,0,.12); }
.consult-button i { font-size: 19px; }
.call-button { margin-top: 9px; border: 1px solid #dce2e7; color: var(--navy); background: #fff; }
.consult-button:hover, .call-button:hover { transform: translateY(-1px); }
.inquiry-separator { position: relative; margin: 19px 0 15px; text-align: center; color: #929ca6; font-size: 10px; }
.inquiry-separator::before { content: ''; position: absolute; z-index: 0; left: 0; right: 0; top: 50%; height: 1px; background: #e6eaed; }
.inquiry-separator span { position: relative; z-index: 1; padding: 0 9px; background: #fff; }
.property-inquiry-form { display: grid; gap: 11px; }
.property-inquiry-form label { display: grid; gap: 5px; color: #53616e; font-size: 11px; font-weight: 700; }
.property-inquiry-form input, .property-inquiry-form textarea { width: 100%; border: 1px solid #dce2e7; border-radius: 5px; background: #fbfcfd; color: var(--ink); padding: 10px 11px; outline: none; resize: vertical; font-size: 12px; }
.property-inquiry-form input:focus, .property-inquiry-form textarea:focus { border-color: #7da6c2; box-shadow: 0 0 0 3px rgba(12,65,104,.08); }
.property-inquiry-form button { min-height: 44px; border: 0; border-radius: 5px; background: var(--navy); color: #fff; cursor: pointer; font-family: Montserrat, sans-serif; font-size: 11px; font-weight: 800; }
.property-inquiry-form button i { margin-left: 7px; }
.secure-note { margin-top: 13px; padding-top: 13px; border-top: 1px solid #eaedef; display: flex; gap: 8px; color: #87919c; font-size: 9.5px; line-height: 1.45; }
.secure-note i { color: #22a75a; margin-top: 2px; }
.seller-profile { display: flex; align-items: center; gap: 12px; margin: 13px 0 15px; }
.seller-profile img { width: 63px; height: 63px; flex: 0 0 63px; border-radius: 50%; object-fit: cover; }
.seller-profile h2 { margin: 0; font-family: Montserrat, sans-serif; font-size: 15px; }
.seller-profile p { margin: 2px 0 5px; color: #75818d; font-size: 10px; }
.seller-profile span { color: #229957; font-size: 10px; font-weight: 700; }
.seller-stats { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 13px; border: 1px solid #e7eaed; border-radius: 6px; }
.seller-stats div { padding: 10px; text-align: center; }
.seller-stats div + div { border-left: 1px solid #e7eaed; }
.seller-stats strong, .seller-stats span { display: block; }
.seller-stats strong { color: var(--navy); font-family: Montserrat, sans-serif; font-size: 16px; }
.seller-stats span { margin-top: 2px; color: #7c8792; font-size: 8.5px; }
.seller-card > p { margin: 0; color: #697582; font-size: 11px; line-height: 1.6; }

.related-section { padding: 39px 0 43px; background: #fff; border-top: 1px solid #e3e7eb; }
.related-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 20px; }
.related-heading a { color: var(--navy); font-family: Montserrat, sans-serif; font-size: 11px; font-weight: 800; }
.related-heading a i { margin-left: 7px; }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.related-card { overflow: hidden; border: 1px solid #dfe4e9; border-radius: 8px; background: #fff; box-shadow: 0 2px 9px rgba(19,44,70,.07); }
.related-image { display: block; aspect-ratio: 1.55/1; overflow: hidden; background: #dce4ea; }
.related-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.related-card:hover .related-image img { transform: scale(1.035); }
.related-body { padding: 14px; }
.related-body > span { color: #79848f; font-size: 10px; }
.related-body > span i { margin-right: 5px; color: var(--yellow-dark); }
.related-body h3 { margin: 7px 0 5px; font-family: Montserrat, sans-serif; font-size: 15px; }
.related-body h3 a:hover { color: var(--navy-soft); }
.related-body strong { color: var(--navy); font-family: Montserrat, sans-serif; font-size: 17px; }
.detail-bottom-cta { padding: 32px 0; background: var(--yellow); color: #16263a; }
.detail-bottom-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.detail-bottom-cta span { font-size: 11px; font-weight: 700; }
.detail-bottom-cta h2 { max-width: 720px; margin: 3px 0 0; font-family: Montserrat, sans-serif; font-size: 24px; line-height: 1.3; }
.detail-bottom-cta a { min-height: 47px; padding: 0 22px; flex: 0 0 auto; display: inline-flex; align-items: center; gap: 9px; border-radius: 6px; background: var(--navy); color: #fff; font-family: Montserrat, sans-serif; font-size: 11px; font-weight: 800; }
.detail-bottom-cta a i { font-size: 18px; }

@media (max-width: 980px) {
  .detail-gallery { height: 410px; }
  .detail-layout { grid-template-columns: minmax(0,1fr) 310px; gap: 18px; }
  .fact-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .feature-list { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .nearby-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 800px) {
  .detail-title-row { align-items: flex-start; }
  .detail-top-price { min-width: 220px; }
  .detail-gallery { height: auto; grid-template-columns: 1fr; }
  .gallery-main { aspect-ratio: 1.45/1; }
  .gallery-thumbs { grid-template-columns: repeat(4, minmax(0,1fr)); grid-template-rows: none; gap: 8px; }
  .gallery-thumb { aspect-ratio: 1.2/1; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .seller-card { align-self: start; }
}

@media (max-width: 640px) {
  .detail-intro { padding: 18px 0 17px; }
  .breadcrumb { margin-bottom: 15px; font-size: 10px; }
  .detail-title-row { display: block; }
  .detail-title-row h1 { font-size: 27px; line-height: 1.18; }
  .detail-title-row > div:first-child > p { font-size: 12px; line-height: 1.5; }
  .detail-top-price { min-width: 0; margin-top: 17px; padding-top: 15px; border-top: 1px solid #e6eaed; text-align: left; }
  .detail-top-price strong { font-size: 22px; }
  .detail-gallery-section { padding: 14px 0 18px; }
  .detail-gallery { gap: 8px; }
  .gallery-main { aspect-ratio: 1.25/1; border-radius: 7px; }
  .gallery-main > span { right: 9px; bottom: 9px; min-height: 29px; font-size: 9px; }
  .gallery-thumbs { gap: 6px; }
  .gallery-thumb { border-width: 2px; border-radius: 5px; }
  .detail-content-section { padding: 18px 0 28px; }
  .detail-main-column { gap: 14px; }
  .detail-panel, .inquiry-card, .seller-card { border-radius: 7px; }
  .detail-panel { padding: 18px 15px; }
  .panel-heading { margin-bottom: 15px; padding-bottom: 12px; }
  .panel-heading h2, .related-heading h2 { font-size: 19px; }
  .fact-grid { gap: 8px; }
  .fact-grid > div { min-height: 75px; padding: 10px; gap: 8px; }
  .fact-grid i { width: 31px; height: 31px; flex-basis: 31px; }
  .fact-grid span { font-size: 9.5px; }
  .fact-grid strong { font-size: 12px; }
  .property-description p { font-size: 13px; line-height: 1.75; }
  .spec-grid { grid-template-columns: 1fr; }
  .spec-row { min-height: 45px; font-size: 12px; }
  .feature-list { grid-template-columns: 1fr; gap: 11px; }
  .feature-list li { font-size: 12px; }
  .map-frame { height: 280px; }
  .detail-sidebar { grid-template-columns: 1fr; gap: 14px; }
  .inquiry-card, .seller-card { padding: 18px 15px; }
  .inquiry-price { font-size: 23px; }
  .related-section { padding: 29px 0 33px; }
  .related-heading { align-items: flex-start; }
  .related-heading a { padding-top: 4px; font-size: 9px; }
  .related-grid { grid-template-columns: 1fr; gap: 14px; }
  .related-card { display: grid; grid-template-columns: 132px 1fr; }
  .related-image { height: 100%; aspect-ratio: auto; }
  .related-body { padding: 12px; }
  .related-body h3 { font-size: 13px; }
  .related-body strong { font-size: 14px; }
  .detail-bottom-cta { padding: 25px 0; }
  .detail-bottom-cta .container { display: block; }
  .detail-bottom-cta h2 { font-size: 20px; }
  .detail-bottom-cta a { width: 100%; margin-top: 17px; justify-content: center; }
}

/* CMS additions */
.brand-custom-logo { width: 48px; height: 48px; flex: 0 0 48px; object-fit: contain; }
.footer-brand .brand-custom-logo { width: 44px; height: 44px; flex-basis: 44px; }
.empty-state { padding: 36px 20px; border: 1px dashed var(--line); border-radius: 8px; text-align: center; color: var(--muted); }
.detail-mobile-price { display: none; }
.detail-not-found { min-height: 58vh; padding: 80px 0; display: grid; place-items: center; text-align: center; background: #f5f7f9; }
.detail-not-found i { color: var(--navy); font-size: 54px; }
.detail-not-found h1 { margin: 18px 0 8px; font-family: Montserrat, sans-serif; font-size: clamp(27px, 4vw, 42px); }
.detail-not-found p { margin: 0 auto 24px; max-width: 560px; color: var(--muted); line-height: 1.7; }

@media (max-width: 700px) {
  .detail-top-price { display: none; }
  .detail-mobile-price { display: block; margin-top: 12px; padding: 14px 15px; border: 1px solid #e0e6eb; border-radius: 7px; background: #fff; box-shadow: 0 3px 12px rgba(21,45,70,.06); text-align: left; }
  .detail-mobile-price small, .detail-mobile-price span { display: block; color: #71808f; font-size: 10px; }
  .detail-mobile-price strong { display: block; margin: 3px 0 5px; font-family: Montserrat, sans-serif; color: var(--navy); font-size: 22px; line-height: 1.25; overflow-wrap: anywhere; }
  .detail-mobile-price span i { color: var(--yellow-dark); }
  .detail-gallery-section { padding-bottom: 17px; }
  .brand-custom-logo { width: 42px; height: 42px; flex-basis: 42px; }
}
