/* ==========================================================================
   MS REALTORS NAGPUR - MULTI-PAGE LIGHT THEME STYLESHEET WITH HEADER BANNERS
   Branding Palette: Royal Blue (#005691), Cyan Blue (#00a0e9), Light Theme
   ========================================================================== */

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

:root {
  /* Color Tokens - Light Theme (Logo Matched) */
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-accent-light: #f0f7ff;

  --brand-blue-dark: #005691;
  --brand-blue-main: #0084d1;
  --brand-cyan: #00a0e9;
  --brand-cyan-light: #e0f2fe;

  --accent-gold: #d97706;
  --accent-gold-light: #fef3c7;

  --accent-emerald: #059669;
  --accent-emerald-light: #d1fae5;

  --text-main: #0f172a;
  --text-muted: #475569;
  --text-dim: #94a3b8;

  --border-light: #e2e8f0;
  --border-active: #0084d1;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Elevation */
  --shadow-sm: 0 2px 8px rgba(0, 86, 145, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 86, 145, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 86, 145, 0.12);
  --shadow-glow: 0 0 20px rgba(0, 160, 233, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

button {
  cursor: pointer;
  border: none;
}

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

/* Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.text-brand {
  color: var(--brand-blue-dark);
}

.text-cyan {
  color: var(--brand-cyan);
}

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

.text-emerald {
  color: var(--accent-emerald);
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-brand {
  background: var(--brand-cyan-light);
  color: var(--brand-blue-dark);
  border: 1px solid rgba(0, 160, 233, 0.3);
}

.badge-gold {
  background: var(--accent-gold-light);
  color: var(--accent-gold);
  border: 1px solid rgba(217, 119, 6, 0.3);
}

.badge-emerald {
  background: var(--accent-emerald-light);
  color: var(--accent-emerald);
  border: 1px solid rgba(5, 150, 105, 0.3);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-blue-dark) 0%, var(--brand-cyan) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 160, 233, 0.4);
}

.btn-emerald {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-outline {
  background: #ffffff;
  color: var(--brand-blue-dark);
  border: 1.5px solid var(--brand-blue-dark);
}

.btn-outline:hover {
  background: var(--brand-cyan-light);
  border-color: var(--brand-cyan);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

/* Cards & Elevation */
.light-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.light-card:hover {
  border-color: var(--brand-cyan);
  box-shadow: var(--shadow-lg);
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.25;
}

.section-title-wrap {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}

.section-subtitle {
  color: var(--brand-cyan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--brand-blue-dark);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem;
  }
}

/* Header Navigation */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.85rem 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 86, 145, 0.06);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-backdrop {
  display: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-blue-dark);
}

.nav-link.active::after,
.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--brand-cyan);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--brand-blue-dark);
  font-size: 1.5rem;
  padding: 0.5rem;
}

/* PAGE HEADER BANNERS WITH IMAGE BACKGROUND FOR ALL INNER PAGES */
.page-header-banner {
  position: relative;
  padding: 5rem 0 3.5rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-header-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 36, 72, 0.75) 0%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-header-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  word-break: break-word;
  overflow-wrap: break-word;
  width: 100%;
}

@media (min-width: 576px) {
  .page-header-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .page-header-title {
    font-size: 3rem;
  }
}

.page-header-subtitle {
  font-size: 1rem;
  color: #e0f2fe;
  margin-bottom: 1.5rem;
  line-height: 1.65;
  word-break: break-word;
  width: 100%;
}

@media (min-width: 768px) {
  .page-header-subtitle {
    font-size: 1.1rem;
  }
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

.page-breadcrumb a {
  color: #ffffff;
  opacity: 0.85;
  white-space: nowrap;
}

.page-breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* HOME PAGE HERO BANNER WITH IMAGE BACKGROUND */
.hero-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 7rem 0 4rem 0;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(255 255 255 / 17%) 0%, rgb(0 0 0 / 82%) 100%);
  z-index: 1;
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-banner-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .hero-banner-title {
    font-size: 4.25rem;
  }
}

.hero-banner-title span {
  background: linear-gradient(135deg, #ffffff 0%, var(--brand-cyan) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-banner-subtitle {
  font-size: 1.2rem;
  color: #e0f2fe;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

/* Stats pills row in banner */
.hero-banner-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-stat-pill {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-stat-pill strong {
  color: #7dd3fc;
  font-weight: 800;
  margin-right: 0.3rem;
}

.hero-stat-divider {
  display: none;
}

/* CTA buttons row */
.hero-banner-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

/* Search box inside banner */
.hero-search-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.search-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .search-form-grid {
    grid-template-columns: 1.2fr 1fr 1fr auto;
    align-items: center;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-blue-dark);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus {
  border-color: var(--brand-cyan);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 160, 233, 0.15);
}

/* Stats Section */
.stats-section {
  padding: 3rem 0;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  /* grid-template-columns: repeat(2, 1fr); */
  gap: 1.25rem;
}

@media (min-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  padding: 1.75rem;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.stat-icon {
  font-size: 2rem;
  color: var(--brand-cyan);
  margin-bottom: 0.75rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--brand-blue-dark);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.service-icon-box {
  width: 70px;
  height: 70px;
  background: var(--brand-cyan-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--brand-blue-dark);
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--brand-blue-dark);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Property Grid */
.property-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .property-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .property-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.property-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.property-thumb-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.property-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-card:hover .property-img {
  transform: scale(1.08);
}

.property-tag-wrap {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.property-price-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--brand-blue-dark);
  color: #ffffff;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: clamp(0.78rem, 2.5vw, 1rem);
  font-family: var(--font-heading);
  max-width: calc(100% - 2rem);
  word-break: break-word;
  white-space: normal;
}

.property-details-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.property-location {
  font-size: 0.8rem;
  color: var(--brand-cyan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}

.property-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-blue-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.property-specs-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.spec-item i {
  color: var(--brand-cyan);
}

.property-card-actions {
  display: flex;
  gap: 0.75rem;
}

.property-card-actions .btn {
  flex: 1;
}

/* MAP EMBED SECTION STYLING FOR NAGPUR LOCATION */
.nagpur-map-container {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  position: relative;
  background: #e2e8f0;
}

.nagpur-map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Detail Page Layout */
.detail-header-card {
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .detail-header-card {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .detail-header-card>div:first-child {
    flex: 1;
    min-width: 0;
  }

  .detail-header-card>div:last-child {
    flex-shrink: 0;
    min-width: 220px;
    text-align: right;
  }
}

.detail-gallery-showcase {
  margin-bottom: 3rem;
}

.detail-gallery-main {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-md);
}

.detail-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-gallery-thumbs {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
}

.thumb-img-box {
  width: 140px;
  height: 90px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  flex-shrink: 0;
}

.thumb-img-box.active,
.thumb-img-box:hover {
  border-color: var(--brand-cyan);
  box-shadow: var(--shadow-sm);
}

.thumb-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-section-block {
  padding: 2.25rem;
  margin-bottom: 2.5rem;
}

.detail-block-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-blue-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--brand-cyan-light);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.overview-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .overview-spec-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.overview-spec-box {
  background: var(--bg-accent-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.overview-spec-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--brand-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-sm);
}

.overview-spec-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 700;
}

.overview-spec-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-blue-dark);
}

.location-highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .location-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.location-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
}

.inquiry-full-card {
  background: #ffffff;
  border: 2px solid var(--brand-blue-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 1000px;
  margin: 3.5rem auto 2.5rem auto;
}

/* Awards */
.awards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .awards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.award-card {
  padding: 2rem 1.5rem;
  text-align: center;
  border-left: 4px solid var(--brand-cyan);
}

.award-badge-icon {
  width: 60px;
  height: 60px;
  background: var(--brand-cyan-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue-dark);
  font-size: 1.75rem;
  margin: 0 auto 1.25rem auto;
}

.award-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-blue-dark);
  margin-bottom: 0.5rem;
}

.award-presenter {
  font-size: 0.85rem;
  color: var(--brand-cyan);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.award-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.rating-stars {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.client-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-cyan-light);
  color: var(--brand-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.client-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand-blue-dark);
}

.client-role {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--brand-cyan-light);
  color: var(--brand-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-info-detail h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-blue-dark);
  margin-bottom: 0.35rem;
}

.contact-info-detail p,
.contact-info-detail a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-form-box {
  padding: 2.5rem;
}

.contact-form-title {
  font-size: clamp(1.15rem, 4vw, 1.5rem);
  color: var(--brand-blue-dark);
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: #ffffff;
  border-left: 4px solid var(--brand-cyan);
  border-top: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 300px;
}

/* Footer Styling */
.footer {
  background: var(--brand-blue-dark);
  color: #ffffff;
  padding: 4rem 0 2rem 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.footer-brand p {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin: 1rem 0;
}

.footer-col-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--brand-cyan-light);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: #cbd5e1;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-btn:hover {
  background: var(--brand-cyan);
  color: #ffffff;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: #94a3b8;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* Filter Controls */
.filter-bar {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-sm);
}

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

@media (min-width: 768px) {
  .filter-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.tab-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  overflow-x: auto;
}

.tab-btn {
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--brand-blue-dark);
  color: #ffffff;
  border-color: var(--brand-blue-dark);
}

/* ============================================================
   ABOUT PAGE — TWO-COLUMN SPLIT LAYOUT
   ============================================================ */

.about-split-section {
  padding: 5rem 0;
}

.about-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Reversed layout: image on left, content on right */
.about-split-reverse .about-split-image {
  order: -1;
}

/* ---- Content Side ---- */
.about-split-content {
  display: flex;
  flex-direction: column;
}

.about-split-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--brand-blue-dark);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.about-split-subtitle {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.about-split-para {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

/* Mini stats row inside content */
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: var(--bg-accent-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  margin-top: 1.5rem;
}

.about-stat-box h4 {
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 0.15rem;
  font-family: var(--font-heading);
}

.about-stat-box p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Core Pillar list */
.about-pillar-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.about-pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.about-pillar-item:hover {
  border-color: var(--brand-cyan);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.pillar-icon-box {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-cyan));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
}

.about-pillar-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-blue-dark);
  margin-bottom: 0.3rem;
}

.about-pillar-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- Image Side ---- */
.about-split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-split-image img {
  width: 100%;
  /* object-fit: cover; */
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.about-founder-portrait {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 560px;
  padding: 1.25rem 1rem 1.5rem;
  background: linear-gradient(180deg, rgba(0, 86, 145, 0.04) 0%, rgba(0, 160, 233, 0.06) 100%);
  border: 1px solid rgba(0, 160, 233, 0.12);
  border-radius: var(--radius-lg);
}

.about-founder-photo {
  width: min(100%, 540px);
  height: auto;
  /* max-height: 620px; */
  object-fit: contain;
  object-position: center bottom;
  border-radius: 1rem;
  box-shadow: none;
  background: transparent;
  margin: 0 auto;
}

.founder-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.founder-summary div {
  background: var(--bg-accent-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem 0.8rem;
  text-align: center;
}

.founder-summary strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand-blue-dark);
  font-family: var(--font-heading);
}

.founder-summary span {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Floating badge on image */
.about-image-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--brand-blue-dark);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  font-size: 1.5rem;
  min-width: 145px;
}

.about-image-badge div {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
}

.about-image-badge strong {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}

.about-image-badge span {
  font-size: 0.75rem;
  opacity: 0.85;
}

/* ---- Mobile: Stack to single column ---- */
@media (max-width: 900px) {
  .about-split-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-split-reverse .about-split-image {
    order: 0;
  }

  /* .about-split-image img {
    height: 280px;
  } */

  .about-founder-portrait {
    min-height: 420px;
    padding: 0.75rem 0.5rem 1rem;
  }

  .about-founder-photo {
    width: min(100%, 420px);
    max-height: 440px;
  }

  .founder-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-image-badge {
    bottom: -1rem;
    right: -0.5rem;
    padding: 0.75rem 1rem;
    min-width: 120px;
    font-size: 1.2rem;
  }

  .about-split-title {
    font-size: 1.75rem;
  }

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

@media (max-width: 480px) {
  .about-split-section {
    padding: 3rem 0;
  }

  .founder-summary {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

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

  .about-stat-box h4 {
    font-size: 1.35rem;
  }
}

@media (max-width: 991px) {
  body.menu-open {
    overflow: hidden;
  }

  .header-container {
    position: relative;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.52);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 998;
  }

  .nav-backdrop.visible {
    opacity: 1;
    visibility: visible;
  }

  .nav-menu {
    position: fixed;
    top: 60px;
    right: -100%;
    width: min(82vw, 320px);
    height: calc(100vh - 70px);
    background: #ffffff;
    border-left: 1px solid var(--border-light);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1rem;
    gap: 0.25rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: right 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
  }

  .nav-menu.open {
    right: 0;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 0.8rem 0.75rem;
    border-radius: var(--radius-sm);
  }

  .nav-link:hover,
  .nav-link.active {
    background: var(--bg-accent-light);
  }

  .nav-link.active::after,
  .nav-link:hover::after {
    display: none;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-actions .btn {
    display: none;
  }
}

/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVE FIXES - ALL PAGES
   ============================================================ */

/* ------ HOME HERO BANNER ------ */
@media (max-width: 768px) {
  .hero-banner {
    min-height: auto;
    padding: 6rem 0 3rem 0;
  }

  .hero-banner-title {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }

  .hero-banner-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-banner-stats {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .hero-stat-pill {
    font-size: 0.78rem;
    padding: 0.4rem 0.85rem;
  }

  .hero-search-box {
    padding: 1.25rem;
  }

  .search-form-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-banner-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-banner-cta .btn {
    width: 100%;
    max-width: 320px;
  }

  .property-specs-list {
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
  }

  .spec-item {
    min-width: 0;
    flex: 1 1 30%;
  }
}

/* ------ PAGE HEADER BANNERS (inner pages) ------ */
@media (max-width: 768px) {
  .page-header-banner {
    padding: 3rem 0 2.5rem 0;
  }

  .page-header-content {
    padding: 0 1.25rem;
  }

  .page-header-title {
    font-size: 1.45rem !important;
    margin-bottom: 0.6rem;
    line-height: 1.25;
  }

  .page-header-subtitle {
    font-size: 0.88rem;
    margin-bottom: 1rem;
  }

  .page-breadcrumb {
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
    gap: 0.25rem;
  }
}

/* ------ SECTION PADDING & MAIN CONTAINER RESPONSIVENESS ------ */
main {
  display: block;
  width: 100%;
}

@media (max-width: 991px) {
  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-title-wrap {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .section-padding {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* ------ STATS GRID ------ */
@media (max-width: 480px) {
  /* .stats-grid {
    grid-template-columns: 1fr 1fr;
  } */

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-card {
    padding: 1.25rem;
  }
}

/* ------ SERVICES GRID ------ */
@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1.75rem 1.5rem;
  }
}

/* ------ PROPERTY CARDS GRID ------ */
@media (max-width: 767px) {
  .property-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .property-thumb-wrap {
    height: 200px;
  }

  .property-card {
    margin-bottom: 0.5rem;
  }

  .property-details-body {
    padding: 1.1rem;
  }

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

  .property-card-actions .btn {
    width: 100%;
  }

  .property-specs-list {
    gap: 0.4rem 0.7rem;
    padding: 0.7rem 0;
  }

  .spec-item {
    flex: 1 1 32%;
  }
}

/* ------ AWARDS GRID ------ */
@media (max-width: 767px) {
  .awards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }
}

/* ------ TESTIMONIALS GRID ------ */
@media (max-width: 767px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ------ ABOUT PAGE IMAGE GRID ------ */
@media (max-width: 600px) {
  div[style*="grid-template-columns: 1fr 1fr"] {
    display: flex !important;
    flex-direction: column;
  }

  div[style*="grid-template-columns: 1fr 1fr"]>div {
    height: 220px !important;
  }
}

/* ------ PROPERTY DETAIL PAGE ------ */
@media (max-width: 991px) {
  .detail-header-card {
    flex-direction: column !important;
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .detail-header-card>div:first-child,
  .detail-header-card>div:last-child {
    width: 100%;
  }

  .detail-header-card>div:first-child h1 {
    font-size: clamp(1.4rem, 5vw, 2rem) !important;
    line-height: 1.25;
    word-break: break-word;
  }

  /* Price value: prevent overflow on mobile */
  .detail-header-card>div:last-child>div:nth-child(2) {
    font-size: clamp(1.5rem, 6vw, 2.2rem) !important;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .detail-header-card>div:last-child>div:last-child {
    justify-content: flex-start !important;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .detail-header-card>div:last-child .btn {
    flex: 1 1 calc(50% - 0.3rem);
    min-width: 130px;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .detail-gallery-main {
    height: 240px;
    border-radius: var(--radius-md);
  }

  .detail-gallery-thumbs {
    gap: 0.65rem;
  }

  .thumb-img-box {
    width: 90px;
    height: 60px;
  }

  .detail-section-block {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .detail-block-title {
    font-size: 1.15rem;
  }

  .overview-spec-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .overview-spec-box {
    padding: 0.9rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .overview-spec-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

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

  .inquiry-full-card {
    padding: 1.5rem 1.25rem;
    margin: 2.5rem auto 2rem auto;
  }

  .nagpur-map-container {
    height: 250px;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .detail-header-card>div:last-child .btn {
    flex: 1 1 100%;
    width: 100%;
  }

  .inquiry-full-card {
    padding: 1.25rem 1rem;
    margin: 2rem auto 1.5rem auto;
  }
}

/* ------ CONTACT PAGE ------ */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 767px) {
  .contact-form-box {
    padding: 1.5rem;
  }

  .contact-info-stack {
    gap: 1rem;
  }

  .contact-info-card {
    padding: 1.25rem;
    gap: 0.8rem;
  }

  .contact-info-detail p,
  .contact-info-detail a {
    line-height: 1.6;
    word-break: break-word;
  }
}

/* ------ FORM ROW ------ */
@media (max-width: 639px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ------ FOOTER ------ */
@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer {
    padding: 3rem 0 1.5rem 0;
  }
}

/* ------ TAB NAV ------ */
@media (max-width: 480px) {
  .tab-nav {
    gap: 0.4rem;
  }

  .tab-btn {
    padding: 0.55rem 0.85rem;
    font-size: 0.78rem;
  }
}

/* ------ FILTER BAR ------ */
@media (max-width: 767px) {
  .filter-bar {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }

  .filter-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}

/* ------ GENERAL SMALL SCREEN ------ */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.88rem;
  }

  .brand-logo-img {
    height: 38px;
  }

  .header {
    padding: 0.7rem 0;
  }

  .property-title {
    font-size: 1.05rem;
  }

  .contact-info-detail p,
  .contact-info-detail a,
  .form-input,
  .form-select,
  .footer-links a,
  .page-header-subtitle,
  .about-split-para,
  .service-desc {
    font-size: 0.9rem;
  }
}

.btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.78rem;
}

.light-card {
  border-radius: var(--radius-md);
}

.whatsapp-float {
  bottom: 1.25rem;
  left: 1.25rem;
  width: 50px;
  height: 50px;
  font-size: 1.6rem;
}


/* ============================================================
   TARGETED MOBILE FIXES — PROPERTY DETAIL & MISC
   ============================================================ */

/* Inline price div in property detail header — prevent overflow */
[style*="font-size: 2.2rem"][style*="font-weight: 800"] {
  font-size: clamp(1.35rem, 5vw, 2.2rem) !important;
  word-break: break-all;
  overflow-wrap: anywhere;
  line-height: 1.2;
}

/* Nav toggle larger touch area on mobile */
@media (max-width: 991px) {
  .nav-toggle {
    padding: 0.65rem;
    font-size: 1.65rem;
  }

  /* Hero banner title — extra small screens */
  .hero-banner-title {
    font-size: clamp(1.6rem, 5vw, 4.25rem);
  }
}

/* Extra small phones */
@media (max-width: 380px) {
  .page-header-title {
    font-size: 1.2rem !important;
  }

  .page-header-subtitle {
    font-size: 0.8rem;
  }

  .page-breadcrumb {
    font-size: 0.7rem;
    padding: 0.3rem 0.65rem;
  }

  .hero-banner-title {
    font-size: 1.5rem !important;
  }

  .detail-header-card>div:last-child>div:nth-child(2) {
    font-size: 1.3rem !important;
  }
}

/* ============================================================
   ABOUT PAGE — RESPONSIVE GRID
   ============================================================ */
@media (max-width: 768px) {
  .about-split-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-split-reverse .about-split-image {
    order: 0;
  }

  .about-image-badge {
    bottom: -0.75rem;
    right: -0.5rem;
    padding: 0.65rem 0.9rem;
    min-width: 110px;
    font-size: 1.1rem;
  }

  .about-split-title {
    font-size: 1.65rem;
  }
}

/* ============================================================
   GENERAL ALIGNMENT FIXES
   ============================================================ */

/* Ensure all form textareas have reasonable minimum height */
textarea.form-input {
  min-height: 110px;
  resize: vertical;
}

/* Prevent property location from overflowing small cards */
.property-location {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Section padding and container alignment for mobile screens */
@media (max-width: 768px) {
  main>.section-padding:first-child {
    padding-top: 2rem;
  }

  .detail-section-block {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
    margin: 0 auto;
  }

  .section-padding {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .about-split-section {
    padding: 2rem 0;
  }
}

@media (max-width: 360px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin: 0 auto;
  }

  .section-padding {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .contact-form-box {
    padding: 1rem;
  }

  .contact-info-card {
    padding: 1rem;
    flex-direction: column;
  }

  .inquiry-full-card {
    padding: 1rem 0.75rem;
    margin: 1.5rem auto 1.25rem auto;
  }
}