/* ==============================================
   SHARP APARTMENTS — MAIN STYLESHEET
   ============================================== */

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;
  background: #ffffff;
}

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

a {
  color: #1a5fa8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: #1a2b4a;
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* === LAYOUT UTILITIES === */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad {
  padding: 5rem 0;
}

.section-pad-sm {
  padding: 3rem 0;
}

.section-bg-light {
  background: #f0f6fc;
}

.section-bg-navy {
  background: #1a2b4a;
  color: #ffffff;
}

.section-bg-navy h2,
.section-bg-navy h3,
.section-bg-navy p {
  color: #ffffff;
}

.text-center { text-align: center; }
.text-white { color: #ffffff !important; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: #c8962e;
  color: #ffffff;
  border-color: #c8962e;
}

.btn-primary:hover {
  background: #a97a24;
  border-color: #a97a24;
  text-decoration: none;
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #1a5fa8;
  border-color: #1a5fa8;
}

.btn-outline:hover {
  background: #1a5fa8;
  color: #ffffff;
  text-decoration: none;
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline-white:hover {
  background: #ffffff;
  color: #1a2b4a;
  text-decoration: none;
}

/* === NAVIGATION === */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 3px solid #1a2b4a;
  box-shadow: 0 2px 12px rgba(26, 43, 74, 0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 160px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 0 0 0;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  height: 100%;
  padding: 0 2rem;
  min-width: 200px;
}

.nav-logo img {
  height: 140px !important;
  width: auto !important;
  max-width: none !important;
  display: block;
}

.nav-links-wrap {
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  flex: 1;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  color: #1a2b4a;
  padding: 0.5rem 0.875rem;
  border-radius: 4px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: #1a5fa8;
  background: #f0f6fc;
}

.nav-links .btn {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #1a2b4a;
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  background: #ffffff;
  border-top: 1px solid #e8edf2;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a2b4a;
  padding: 0.875rem 1.5rem;
  border-bottom: 1px solid #e8edf2;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-mobile a:hover {
  background: #f0f6fc;
  color: #1a5fa8;
}

.page-offset {
  padding-top: 160px;
}

/* === FOOTER === */
.site-footer {
  background: #1a2b4a;
  color: #c4cedf;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
  color: #c4cedf;
  font-size: 0.9rem;
  line-height: 1.7;
  text-decoration: none;
}

.footer-col a:hover {
  color: #ffffff;
}


.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(196, 206, 223, 0.4);
  border-radius: 50%;
  color: #c4cedf;
  font-size: 0.9rem;
  transition: all 0.2s;
  text-decoration: none;
}

.footer-social a:hover {
  background: #1a5fa8;
  border-color: #1a5fa8;
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(196, 206, 223, 0.2);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.825rem;
  color: #8899b0;
}

/* === PAGE HEADER === */
.page-header {
  background: linear-gradient(135deg, #1a2b4a 0%, #1a5fa8 100%);
  padding: 2.5rem 0;
}

.page-header-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.page-header-logo-circle {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  border: 3px solid rgba(255, 255, 255, 0.35);
}

.page-header-logo-circle img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.page-header-text h1 {
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.page-header-text p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  margin: 0;
}


/* === HOME — HERO === */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(26, 43, 74, 0.68), rgba(26, 43, 74, 0.68)),
              url('../images/web/exterior/front1.jpg') center/cover no-repeat;
  color: #ffffff;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.hero h1 {
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === HOME — FEATURE CARDS === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e8edf2;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(26, 43, 74, 0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: 0 6px 24px rgba(26, 43, 74, 0.12);
  transform: translateY(-3px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f0f6fc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  color: #1a5fa8;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
}

/* === HOME — PROPERTY PREVIEW === */
.property-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.property-preview-images {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 43, 74, 0.15);
}

.property-preview-images img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.preview-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #c8962e;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: 20px;
}

.property-preview-text h2 {
  margin-bottom: 1rem;
}

.property-preview-text p {
  margin-bottom: 1.25rem;
  font-size: 1.025rem;
}

.property-quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.quick-fact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #4a4a4a;
}

.quick-fact i {
  color: #1a5fa8;
  width: 18px;
}

/* === HOME — TRUST SECTION === */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  text-align: center;
}

.trust-item .trust-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #c8962e;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trust-item p {
  font-size: 0.95rem;
  color: #ffffff;
}

/* === SECTION DIVIDER === */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 0.75rem;
}

.section-title p {
  color: #6b7a8d;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.title-rule {
  width: 56px;
  height: 4px;
  background: #c8962e;
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* === PROPERTIES PAGE === */
.building-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}

.building-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  border-radius: 8px;
  overflow: hidden;
}

.building-gallery a:first-child {
  grid-column: 1 / -1;
}

.building-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s;
}

.building-gallery a:first-child img {
  height: 300px;
}

.building-gallery a:hover img {
  transform: scale(1.03);
}

.building-gallery-wrap {
  overflow: hidden;
}

.building-info h2 {
  margin-bottom: 0.5rem;
}

.building-address {
  color: #1a5fa8;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.building-info p {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

/* Utilities box */
.utilities-box {
  background: #f0f6fc;
  border: 1px solid #d0e2f0;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.utilities-box h4 {
  color: #1a2b4a;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.utilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.utility-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.utility-item i {
  width: 16px;
}

.utility-item.included i { color: #2a8c4a; }
.utility-item.tenant i { color: #c8962e; }

/* Unit cards */
.units-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.unit-card {
  background: #ffffff;
  border: 1px solid #e8edf2;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26, 43, 74, 0.07);
}

.unit-card-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 380px;
}

.unit-gallery {
  position: relative;
}

.unit-main-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.unit-thumb-row {
  display: flex;
  gap: 3px;
}

.unit-thumb-row a {
  flex: 1;
  overflow: hidden;
}

.unit-thumb-row img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  transition: transform 0.3s;
}

.unit-thumb-row a:hover img {
  transform: scale(1.08);
}

.unit-thumb-more {
  position: relative;
}

.unit-thumb-more::after {
  content: attr(data-count);
  position: absolute;
  inset: 0;
  background: rgba(26, 43, 74, 0.65);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.unit-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.unit-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.unit-header h3 {
  font-size: 1.3rem;
}

/* Availability badges */
.badge {
  display: inline-block;
  padding: 0.3rem 0.875rem;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge.available {
  background: #d4edda;
  color: #1a6f35;
}

.badge.occupied {
  background: #e8edf2;
  color: #6b7a8d;
}

.unit-specs {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.unit-spec {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #4a4a4a;
  font-weight: 600;
}

.unit-spec i {
  color: #1a5fa8;
  font-size: 0.85rem;
}

.unit-features {
  padding-left: 0;
}

.unit-features li {
  font-size: 0.9rem;
  padding: 0.2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.unit-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #1a5fa8;
  font-size: 0.75rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.unit-cta {
  margin-top: auto;
  padding-top: 0.5rem;
}

/* Policies box */
.policies-box {
  background: #1a2b4a;
  color: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 3rem;
}

.policies-box i {
  color: #c8962e;
  font-size: 1.5rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.policies-box h4 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.policies-box p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

/* === SELL YOUR PROPERTY PAGE === */
.sell-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.sell-intro-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 43, 74, 0.15);
}

.sell-intro-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.benefit-card {
  background: #ffffff;
  border: 1px solid #e8edf2;
  border-radius: 8px;
  padding: 1.75rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(26, 43, 74, 0.06);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f0f6fc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: #1a5fa8;
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.what-we-buy {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.what-we-buy-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.12);
}

.what-we-buy-item i {
  color: #c8962e;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.what-we-buy-item span {
  font-size: 0.95rem;
}

.how-it-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 2rem);
  right: calc(16.67% + 2rem);
  height: 2px;
  background: #e8edf2;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #1a5fa8;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.step h3 {
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.95rem;
  color: #6b7a8d;
}

.sell-cta {
  text-align: center;
  margin-top: 3rem;
}

/* === ABOUT PAGE === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.about-photo {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 43, 74, 0.15);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: #f0f6fc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #6b7a8d;
}

.about-photo-placeholder i {
  font-size: 3rem;
  color: #c4cedf;
}

.about-text h2 {
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.025rem;
  margin-bottom: 1.25rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e8edf2;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(26, 43, 74, 0.05);
}

.value-icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #f0f6fc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #1a5fa8;
  flex-shrink: 0;
}

.value-card h4 {
  margin-bottom: 0.4rem;
}

.value-card p {
  font-size: 0.9rem;
  color: #6b7a8d;
  margin: 0;
}

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-wrap h2 {
  margin-bottom: 0.5rem;
}

.contact-form-wrap > p {
  color: #6b7a8d;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: #1a2b4a;
  margin-bottom: 0.4rem;
}

.form-group label .optional {
  font-weight: 400;
  color: #8899b0;
  margin-left: 0.25rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d0d8e4;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: #1a2b4a;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #1a5fa8;
  box-shadow: 0 0 0 3px rgba(26, 95, 168, 0.12);
}

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

.form-submit {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-success {
  display: none;
  background: #d4edda;
  color: #1a6f35;
  padding: 1rem 1.25rem;
  border-radius: 4px;
  font-size: 0.95rem;
  margin-top: 1rem;
}

.contact-details h3 {
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #f0f6fc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a5fa8;
  font-size: 1rem;
  flex-shrink: 0;
}

.detail-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a2b4a;
  margin-bottom: 0.15rem;
}

.detail-text span,
.detail-text a {
  font-size: 0.9rem;
  color: #4a4a4a;
}

.map-embed {
  margin-top: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e8edf2;
}

.map-embed iframe {
  width: 100%;
  height: 260px;
  border: none;
  display: block;
}

/* === CTA BAND === */
.cta-band {
  background: linear-gradient(135deg, #1a2b4a 0%, #1a5fa8 100%);
  padding: 4rem 0;
  text-align: center;
}

.cta-band h2 {
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255,255,255,0.85);
  font-size: 1.075rem;
  max-width: 540px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .property-preview,
  .building-overview,
  .sell-intro,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .property-preview-images img {
    height: 300px;
  }

  .unit-card-inner {
    grid-template-columns: 1fr;
  }

  .unit-main-img {
    height: 260px;
  }

  .how-it-works {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .how-it-works::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .page-header-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }

  .page-header-logo-circle {
    width: 110px;
    height: 110px;
  }

  .page-header-logo-circle img {
    width: 86px;
    height: 86px;
  }

  .nav-inner {
    height: 72px;
  }

  .nav-logo {
    padding: 0 1rem;
    min-width: unset;
  }

  .nav-logo img {
    height: 56px !important;
  }

  .page-offset {
    padding-top: 72px;
  }

  .nav-links-wrap {
    display: none;
  }

  .nav-toggle {
    display: flex;
    margin-right: 1rem;
  }

  .section-pad {
    padding: 3.5rem 0;
  }

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

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

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

  .building-gallery {
    grid-template-columns: 1fr 1fr;
  }

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

  .about-photo {
    max-width: 280px;
    margin: 0 auto;
  }

  .what-we-buy {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 480px;
  }

  .hero p {
    font-size: 1rem;
  }

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

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

  .building-gallery {
    grid-template-columns: 1fr;
  }

  .building-gallery a:first-child img,
  .building-gallery img {
    height: 200px;
  }

  .unit-thumb-row img {
    height: 60px;
  }
}
