/* RealEstatePro Public Site Styles */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #1e40af;
  --accent: #f59e0b;
  --success: #10b981;
  --danger: #ef4444;
  --text: #1e293b;
  --text-muted: #64748b;
  --bg: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 1px 3px rgba(0,0,0,.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all .25s ease;
}
/* These get overridden per-firm via inline styles */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
img { max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

/* ── Nav ─────────────────────────────────────────────────────────────── */
.site-nav {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky; top: 0; z-index: 100;
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo { height: 42px; object-fit: contain; }
.nav-brand-text { font-weight: 700; font-size: 1.1rem; color: var(--text); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--text); }
.nav-links a:hover { color: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.5); z-index: 200;
}
.mobile-nav.open { display: block; }
.mobile-nav-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 280px; background: var(--white);
  padding: 20px; overflow-y: auto;
  animation: slideIn .3s ease;
}
@keyframes slideIn { from { transform: translateX(100%); } to { transform: none; } }
.mobile-nav-close { background: none; border: none; font-size: 1.4rem; cursor: pointer; float: right; }
.mobile-nav-links { margin-top: 40px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links a { padding: 12px 8px; font-size: .95rem; border-bottom: 1px solid var(--border); color: var(--text); }

/* ── Hero / Banner ───────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: #fff;
  padding: 80px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .25;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(30,64,175,.7), rgba(37,99,235,.5)); }
.hero-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; margin-bottom: 12px; line-height: 1.2; }
.hero p { font-size: clamp(.9rem, 2vw, 1.1rem); opacity: .9; margin-bottom: 28px; }

/* Search Bar */
.search-bar {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 6px 6px 6px 16px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  max-width: 600px; margin: 0 auto;
}
.search-bar input {
  flex: 1; border: none; outline: none;
  font-size: .9rem; color: var(--text);
  background: transparent; padding: 8px 0;
}
.search-bar select {
  border: none; outline: none; background: transparent;
  font-size: .85rem; color: var(--text-muted);
  padding: 8px 4px; cursor: pointer;
}
.search-bar .btn-search {
  background: var(--primary); color: #fff;
  border: none; border-radius: var(--radius-lg);
  padding: 10px 20px; cursor: pointer; font-size: .9rem;
  font-weight: 600; display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.search-bar .btn-search:hover { background: var(--primary-dark); }

/* ── Sections ────────────────────────────────────────────────────────── */
.section { padding: 60px 24px; }
.section-alt { background: var(--white); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 36px; }
.section-header h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; color: var(--text); }
.section-header p { color: var(--text-muted); margin-top: 6px; font-size: .9rem; }
.section-header .view-all { float: right; font-size: .85rem; font-weight: 500; }

/* ── Property Cards ──────────────────────────────────────────────────── */
.properties-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }

.property-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.property-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.property-img-wrap { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.property-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.property-card:hover .property-img-wrap img { transform: scale(1.05); }
.property-no-img { width: 100%; height: 100%; background: linear-gradient(135deg, #e2e8f0, #cbd5e1); display: flex; align-items: center; justify-content: center; }
.property-no-img span { font-size: 2.5rem; opacity: .4; }

.property-badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.property-badge {
  background: rgba(0,0,0,.65); color: #fff;
  padding: 3px 10px; border-radius: 20px;
  font-size: .7rem; font-weight: 600; backdrop-filter: blur(4px);
}
.property-badge.featured { background: var(--accent); color: #fff; }
.property-badge.primary  { background: var(--primary); }

.property-fav { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,.9); border: none; border-radius: 50%; width: 32px; height: 32px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: .9rem; transition: .2s; backdrop-filter: blur(4px); }
.property-fav:hover { background: #fff; color: var(--danger); }

.property-info { padding: 16px; }
.property-price { font-size: 1.2rem; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
.property-price span { font-size: .75rem; font-weight: 400; color: var(--text-muted); }
.property-title { font-size: .95rem; font-weight: 600; color: var(--text); margin-bottom: 6px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.property-location { font-size: .8rem; color: var(--text-muted); margin-bottom: 12px; display: flex; align-items: center; gap: 4px; }
.property-features { display: flex; gap: 14px; padding-top: 12px; border-top: 1px solid var(--border); }
.property-feature { display: flex; align-items: center; gap: 4px; font-size: .78rem; color: var(--text-muted); }
.property-feature strong { color: var(--text); font-weight: 600; }

/* ── List Type Filter Tabs ───────────────────────────────────────────── */
.filter-tabs { display: flex; gap: 8px; overflow-x: auto; margin-bottom: 24px; padding-bottom: 4px; }
.filter-tab {
  padding: 8px 18px; border-radius: 24px;
  font-size: .82rem; font-weight: 500;
  border: 1px solid var(--border); background: var(--white);
  color: var(--text-muted); cursor: pointer;
  white-space: nowrap; transition: var(--transition);
  text-decoration: none; display: inline-block;
}
.filter-tab:hover, .filter-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── Property Detail Page ────────────────────────────────────────────── */
.property-detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.property-gallery { border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 24px; }
.gallery-main { aspect-ratio: 16/10; overflow: hidden; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-top: 6px; }
.gallery-thumb { aspect-ratio: 1; overflow: hidden; border-radius: 6px; cursor: pointer; opacity: .7; transition: .2s; border: 2px solid transparent; }
.gallery-thumb.active, .gallery-thumb:hover { opacity: 1; border-color: var(--primary); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.property-details-card { background: var(--white); border-radius: var(--radius-xl); padding: 24px; box-shadow: var(--shadow); margin-bottom: 24px; }
.property-details-card h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; }
.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.detail-item .detail-label { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
.detail-item .detail-value { font-size: .9rem; font-weight: 500; margin-top: 2px; }

.amenities-list { display: flex; flex-wrap: wrap; gap: 8px; }
.amenity-tag { background: #f1f5f9; border: 1px solid var(--border); padding: 5px 12px; border-radius: 20px; font-size: .8rem; color: var(--text); }

/* Enquiry/Contact Card */
.enquiry-card { background: var(--white); border-radius: var(--radius-xl); padding: 24px; box-shadow: var(--shadow); position: sticky; top: 84px; }
.enquiry-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.enquiry-card .form-group { margin-bottom: 12px; }
.enquiry-card input, .enquiry-card textarea, .enquiry-card select { width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--radius); font-size: .85rem; font-family: inherit; }
.enquiry-card input:focus, .enquiry-card textarea:focus { outline: none; border-color: var(--primary); }
.enquiry-card textarea { min-height: 90px; resize: vertical; }
.enquiry-card .btn { width: 100%; padding: 12px; }
.agent-card { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.agent-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.agent-name { font-weight: 600; font-size: .9rem; }
.agent-firm { font-size: .78rem; color: var(--text-muted); }

/* Video Embed */
.video-embed { margin-top: 24px; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 16/9; }
.video-embed iframe { width: 100%; height: 100%; border: none; }

/* ── About Section ───────────────────────────────────────────────────── */
.about-section { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-text h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 16px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }

/* ── Stats Bar ───────────────────────────────────────────────────────── */
.stats-bar { background: var(--primary); color: #fff; padding: 32px 24px; }
.stats-bar .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 24px; text-align: center; }
.stat-bar-num { font-size: 2rem; font-weight: 800; }
.stat-bar-label { font-size: .8rem; opacity: .8; margin-top: 4px; }

/* ── Firm List (App Homepage) ────────────────────────────────────────── */
.firms-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.firm-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 24px; box-shadow: var(--shadow); text-align: center;
  transition: var(--transition); position: relative; overflow: hidden;
}
.firm-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.firm-card-logo { width: 72px; height: 72px; border-radius: 16px; object-fit: contain; margin: 0 auto 12px; display: block; border: 1px solid var(--border); background: #f8fafc; }
.firm-card-logo-placeholder { width: 72px; height: 72px; border-radius: 16px; background: var(--primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 1.6rem; color: #fff; font-weight: 700; }
.firm-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.firm-card p { font-size: .8rem; color: var(--text-muted); margin-bottom: 12px; }
.firm-card .prop-count { font-size: .75rem; background: #f1f5f9; padding: 4px 10px; border-radius: 20px; color: var(--text-muted); display: inline-block; }
.firm-card .visit-btn { margin-top: 14px; display: block; padding: 9px; background: var(--primary); color: #fff; border-radius: var(--radius); font-size: .85rem; font-weight: 500; transition: .2s; }
.firm-card .visit-btn:hover { background: var(--primary-dark); }

/* ── Footer ──────────────────────────────────────────────────────────── */
.site-footer { background: #0f172a; color: #94a3b8; padding: 48px 24px 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; max-width: 1200px; margin: 0 auto; margin-bottom: 32px; }
.footer-brand h3 { color: #f1f5f9; margin-bottom: 12px; font-size: 1.1rem; }
.footer-brand p { font-size: .85rem; line-height: 1.7; }
.footer-col h4 { color: #e2e8f0; font-size: .85rem; font-weight: 600; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .05em; }
.footer-col a { display: block; font-size: .82rem; color: #94a3b8; margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: #e2e8f0; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .9rem; color: #94a3b8; transition: .2s; }
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .8rem; }

/* ── Buttons (public) ────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; border-radius: var(--radius); font-size: .9rem; font-weight: 500; border: none; cursor: pointer; text-decoration: none; transition: var(--transition); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: #f1f5f9; }
.btn-sm { padding: 6px 14px; font-size: .82rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }

/* ── Badges ──────────────────────────────────────────────────────────── */
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: .72rem; font-weight: 600; }
.badge-primary { background: rgba(37,99,235,.1); color: var(--primary); }
.badge-success { background: rgba(16,185,129,.1); color: var(--success); }

/* ── Alerts ──────────────────────────────────────────────────────────── */
.alert { padding: 12px 16px; border-radius: var(--radius); font-size: .85rem; margin-bottom: 16px; }
.alert-success { background: #d1fae5; color: #065f46; }
.alert-danger   { background: #fee2e2; color: #991b1b; }
.alert-info     { background: #dbeafe; color: #1e40af; }

/* ── Pagination ──────────────────────────────────────────────────────── */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.page-link { padding: 8px 14px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--border); color: var(--text); font-size: .85rem; transition: .2s; text-decoration: none; }
.page-link:hover, .page-link.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── Utility ─────────────────────────────────────────────────────────── */
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.fw-700 { font-weight: 700; }
.mt-2 { margin-top: 8px; } .mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.d-none { display: none; }

/* ── App Home Hero ───────────────────────────────────────────────────── */
.app-hero { background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%); padding: 100px 24px; text-align: center; color: #fff; }
.app-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 16px; }
.app-hero p { font-size: clamp(.9rem, 2vw, 1.2rem); opacity: .85; max-width: 600px; margin: 0 auto 32px; }
.app-hero .cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── 404 / Error ─────────────────────────────────────────────────────── */
.error-page { text-align: center; padding: 80px 24px; }
.error-page .error-code { font-size: 6rem; font-weight: 800; color: var(--primary); opacity: .2; line-height: 1; }
.error-page h2 { font-size: 1.5rem; font-weight: 700; margin: 12px 0; }
.error-page p { color: var(--text-muted); margin-bottom: 24px; }

/* ── Social share strip ──────────────────────────────────────────────── */
.share-strip { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 14px 0; border-top: 1px solid var(--border); margin-top: 24px; }
.share-strip span { font-size: .82rem; font-weight: 500; color: var(--text-muted); }
.share-btn { display: inline-flex; align-items: center; gap: 5px; padding: 6px 12px; border-radius: 20px; font-size: .78rem; font-weight: 500; color: #fff; text-decoration: none; transition: opacity .2s; }
.share-btn:hover { opacity: .85; color: #fff; }
.share-facebook  { background: #1877f2; }
.share-twitter   { background: #1da1f2; }
.share-whatsapp  { background: #25d366; }
.share-linkedin  { background: #0a66c2; }
.share-telegram  { background: #0088cc; }
.share-pinterest { background: #e60023; }
.share-email     { background: #64748b; }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .property-detail-grid { grid-template-columns: 1fr; }
  .enquiry-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .about-section { grid-template-columns: 1fr; }
  .section { padding: 40px 16px; }
  .hero { padding: 60px 16px 48px; }
  .properties-grid { grid-template-columns: 1fr; }
  .firms-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .details-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .firms-grid { grid-template-columns: 1fr; }
  .search-bar { flex-wrap: wrap; border-radius: var(--radius); }
  .search-bar select { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Map Button on Property Cards ─────────────────────────── */
.property-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: .75rem;
  font-weight: 600;
  cursor: pointer;
  background: #f0fdf4;
  color: #065f46;
  border: 1px solid #bbf7d0;
  transition: var(--transition);
  font-family: inherit;
  text-decoration: none;
}
.property-map-btn:hover { background: #bbf7d0; color: #065f46; }

/* Map Modal */
.map-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.map-modal-overlay.open { display: flex; }
.map-modal {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  width: 100%; max-width: 760px;
  max-height: 90vh;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  display: flex; flex-direction: column;
  animation: mapModalIn .25s ease;
}
@keyframes mapModalIn { from { opacity:0; transform:scale(.96); } to { opacity:1; transform:none; } }
.map-modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.map-modal-title { font-weight: 700; font-size: .95rem; color: #0f172a; display: flex; align-items: center; gap: 8px; }
.map-modal-close { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--text-muted); line-height: 1; }
.map-modal-close:hover { color: var(--danger); }
.map-modal-info { padding: 10px 20px; background: #f8fafc; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.map-modal-info-row { display: flex; gap: 20px; flex-wrap: wrap; font-size: .82rem; color: var(--text-muted); }
.map-modal-info-row span { display: flex; align-items: center; gap: 5px; }
.map-modal-info-row strong { color: #0f172a; }
#mapContainer { flex: 1; min-height: 380px; }
.map-modal-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  display: flex; gap: 8px; align-items: center;
  flex-shrink: 0; flex-wrap: wrap;
}
.map-directions-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: var(--radius);
  font-size: .82rem; font-weight: 600;
  background: var(--primary); color: #fff;
  border: none; cursor: pointer; transition: var(--transition);
  font-family: inherit;
}
.map-directions-btn:hover { background: var(--primary-dark); }
.map-osm-credit { margin-left: auto; font-size: .72rem; color: var(--text-muted); }

/* Vivid property card no-image placeholder */
.property-no-img {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
}
.property-no-img .prop-icon { font-size: 2.8rem; filter: drop-shadow(0 2px 8px rgba(0,0,0,.25)); }
.property-no-img .prop-type-pill {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px;
  background: rgba(255,255,255,.22); color: #fff;
  backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.3);
}

/* Message delivery success banner */
.msg-sent-banner {
  display: none;
  background: #d1fae5; border: 1px solid #6ee7b7;
  border-radius: var(--radius-lg); padding: 20px 24px;
  text-align: center; margin-bottom: 16px;
}
.msg-sent-banner .check-icon { font-size: 2rem; margin-bottom: 8px; }
.msg-sent-banner h4 { color: #065f46; font-weight: 700; margin-bottom: 4px; }
.msg-sent-banner p { color: #047857; font-size: .85rem; }

@media (max-width: 768px) {
  #mapContainer { min-height: 280px; }
  .map-modal { max-height: 95vh; }
}
