/* ============================================================
   MAXIME CÔTÉ — Courtier Immobilier
   Thème: Proprio Direct — Rouge & Blanc
   Palette: Rouge #C8102E | Noir #1a1a1a | Blanc #fff | Gris clair #f5f5f5
   Fonts: Oxygen (corps/titres) + Merriweather (serif accentué) + Dancing Script (logo)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #C8102E;
  --gold-dark:  #A00D24;
  --black:      #1a1a1a;
  --dark-bg:    #111111;
  --light-bg:   #f5f5f5;
  --white:      #ffffff;
  --text-main:  #2c2c2c;
  --text-muted: #777777;
  --border:     #e0e0e0;
  --radius:     6px;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --transition: all 0.28s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Oxygen', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-main);
  background: var(--white);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 90px 0; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Oxygen', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 50px;
  line-height: 1.2;
}
em { font-family: 'Merriweather', serif; font-style: italic; color: var(--gold); }

/* ---- LOGO ---- */
.logo-text-link { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 48px; width: auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 40px;
  font-family: 'Oxygen', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,16,46,0.35);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  padding: 10px 24px;
  font-size: 12px;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-full { width: 100%; text-align: center; }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-top-bar {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 32px;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(200,16,46,0.3);
}
.header-phone {
  color: var(--gold) !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: none;
}
.header-phone:hover { color: var(--white) !important; }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 72px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
#site-header.scrolled .main-nav {
  background: rgba(10,10,10,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-logo a {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.logo-first { color: var(--white); }
.logo-last  { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--gold-dark) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  padding: 16px 0;
}
.mobile-menu.open { display: block; }
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-menu a {
  display: block;
  padding: 14px 32px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  letter-spacing: 1px;
}
.mobile-menu a:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('images/Gemini_Generated_Image_ixvu0pixvu0pixvu.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 130px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}
.hero-pre {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 400;
}
.hero-content h1 {
  font-family: 'Oxygen', sans-serif;
  font-size: clamp(38px, 6vw, 80px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 40px;
}
.hero-content .btn {
  font-size: 14px;
  padding: 16px 50px;
  letter-spacing: 3px;
}

/* ============================================================
   TAGLINE BAR
   ============================================================ */
.tagline-bar {
  background: var(--black);
  text-align: center;
  padding: 20px 32px;
}
.tagline-bar p {
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.5px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--white); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo-col {
  position: relative;
}
.agent-photo {
  width: 100%;
  max-width: 480px;
  border-radius: 4px;
  box-shadow: 12px 12px 0 var(--gold);
  object-fit: cover;
  object-position: top;
  aspect-ratio: 3/4;
}
.agent-contact-card {
  background: var(--black);
  color: var(--white);
  padding: 20px 24px;
  border-left: 4px solid var(--gold);
  margin-top: 20px;
  border-radius: 0 4px 4px 0;
  font-size: 14px;
  line-height: 1.8;
}
.agent-contact-card strong { color: var(--gold); font-size: 16px; }
.agent-contact-card a { color: var(--gold); }
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(200,16,46,0.15);
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: var(--gold) !important;
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--gold);
  color: var(--white) !important;
}

.about-text-col h2 {
  font-family: 'Oxygen', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 24px;
}
.about-text-col p {
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.8;
}
.about-text-col .btn { margin-top: 12px; }

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: var(--black);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Oxygen', sans-serif;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--light-bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  transition: var(--transition);
}
.service-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
}
.service-icon svg {
  width: 100%;
  height: 100%;
}
.service-card h3 {
  font-family: 'Merriweather', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   LISTINGS
   ============================================================ */
.listings-section { background: var(--white); }
/* Centris sync bar */
.centris-sync-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0f7f0;
  border: 1px solid #c8e0c8;
  border-radius: var(--radius);
  padding: 10px 18px;
  margin-bottom: 28px;
  font-size: 13px;
  color: #2d6a2d;
}
.centris-sync-bar svg { flex-shrink: 0; stroke: #2d6a2d; }
.centris-link {
  margin-left: auto;
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.centris-link:hover { text-decoration: underline; }

.listings-filter {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  background: none;
  border: 2px solid var(--border);
  padding: 9px 22px;
  font-size: 13px;
  font-family: 'Oxygen', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}
.listing-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: var(--white);
  border: 1px solid var(--border);
}
.listing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}
.listing-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.listing-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.listing-card:hover .listing-img-wrap img {
  transform: scale(1.06);
}
.listing-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.badge-sale { background: var(--gold); color: var(--white); }
.badge-rent { background: #3a7bd5; color: var(--white); }
.badge-commercial { background: #2d2d2d; color: var(--white); }

.listing-info {
  padding: 22px 20px 20px;
}
.listing-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.listing-price small { font-size: 13px; color: var(--text-muted); }
.listing-address {
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.5;
}
.listing-details {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.listing-type-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 700;
}
/* Sold overlay */
.sold-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.sold-overlay span {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 6px;
  border: 2px solid var(--white);
  padding: 8px 20px;
  font-family: 'Oxygen', sans-serif;
}
.badge-vendu { background: #555; color: var(--white); }

/* Tag (Visite libre, Nouvelle inscription) */
.listing-tag {
  position: absolute;
  bottom: 12px; right: 12px;
  background: var(--black);
  color: var(--gold);
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
}
.filter-count {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 1px 7px;
  font-size: 11px;
  margin-left: 4px;
}
.filter-btn.active .filter-count { background: rgba(255,255,255,0.3); }
.no-listings {
  grid-column: 1/-1;
  text-align: center;
  padding: 48px;
  color: var(--text-muted);
  font-size: 15px;
}
.listings-loading {
  grid-column: 1/-1;
  text-align: center;
  padding: 48px;
  color: var(--text-muted);
}

.listing-details span {
  background: var(--light-bg);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 700;
}
.listings-cta { text-align: center; }

/* ============================================================
   REGIONS
   ============================================================ */
.regions-section { background: var(--dark-bg); }
.regions-section .section-label { color: var(--gold); }
.regions-section .section-title { color: var(--white); }
.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.region-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,16,46,0.25);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}
.region-card:hover {
  background: rgba(200,16,46,0.10);
  border-color: var(--gold);
}
.region-card h3 {
  font-family: 'Merriweather', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}
.region-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}
#regionsMap {
  height: 450px;
  margin-top: 50px;
  border-radius: var(--radius);
  border: 1px solid rgba(200,16,46,0.3);
  z-index: 1;
}

/* ============================================================
   AWARDS
   ============================================================ */
.awards-section {
  background: var(--gold);
  padding: 50px 0;
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.award-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.award-item:last-child { border-right: none; }
.award-number {
  font-family: 'Merriweather', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
  opacity: 0.9;
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.award-unit {
  font-family: 'Oxygen', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
}
.award-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.award-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  font-family: 'Oxygen', sans-serif;
}
.award-text span {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.3px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--light-bg); }
.contact-cols {
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.contact-info-col h2 {
  font-family: 'Oxygen', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 20px;
}
.contact-info-col > p {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
}
.contact-icon {
  width: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact-icon svg { stroke: var(--gold); }
.contact-detail-row a:hover { color: var(--gold); }
.langs-badge {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.lang-tag {
  background: var(--black);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Form */
.contact-form {
  background: var(--white);
  padding: 40px 36px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Oxygen', sans-serif;
  font-size: 14px;
  color: var(--text-main);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; }
.form-success {
  margin-top: 14px;
  padding: 14px;
  background: #f0faf0;
  border: 1px solid #b0d8b0;
  border-radius: var(--radius);
  color: #2d6a2d;
  font-size: 14px;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
}
.footer-logo .logo-first { color: var(--white); font-size: 22px; font-weight: 700; letter-spacing: 3px; }
.footer-logo .logo-last  { color: var(--gold);  font-size: 22px; font-weight: 700; letter-spacing: 3px; }
.footer-logo p {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin-top: 8px;
  line-height: 1.7;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact a {
  color: var(--gold);
  font-size: 13px;
}
.footer-contact a:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 12px;
}
.footer-bottom strong { color: var(--gold); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  display: none;
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 999;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(200,16,46,0.4);
}
.scroll-top:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}

/* ============================================================
   REVIEWS SECTION (Avis Google)
   ============================================================ */
.reviews-section {
  background: var(--light-bg);
  padding: 90px 0;
}
.reviews-header {
  text-align: center;
  margin-bottom: 56px;
}
.reviews-rating {
  margin-top: 24px;
}
.stars-row {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}
.star {
  color: #FBBC05;
  font-size: 28px;
  line-height: 1;
}
.rating-text {
  font-size: 15px;
  color: var(--text-muted);
}
.rating-text strong {
  color: var(--black);
  font-size: 20px;
  font-family: 'Oxygen', sans-serif;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}
.review-stars {
  color: #FBBC05;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review-source {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #4285F4;
  background: rgba(66,133,244,0.08);
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
}
.review-text {
  font-style: italic;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 22px;
  flex: 1;
  font-size: 14px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.review-author strong {
  display: block;
  color: var(--black);
  font-size: 14px;
}
.review-author span {
  font-size: 12px;
  color: var(--text-muted);
}
.reviews-cta {
  text-align: center;
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
  display: flex;
  gap: 4px;
  margin-left: 16px;
}
.lang-switch-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.6);
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Oxygen', sans-serif;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 3px;
  transition: var(--transition);
}
.lang-switch-btn.active,
.lang-switch-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ============================================================
   CHATBOX
   ============================================================ */
#chatWidget {
  position: fixed;
  bottom: 24px;
  right: 80px;
  z-index: 1000;
}
#chatToggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(200,16,46,0.4);
  transition: var(--transition);
}
#chatToggle:hover {
  background: var(--gold-dark);
  transform: scale(1.1);
}
#chatPanel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 360px;
  max-height: 500px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: opacity 0.25s, transform 0.25s;
}
#chatPanel.chat-hidden {
  display: none;
}
.chat-header {
  background: var(--gold);
  color: var(--white);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.chat-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
}
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  max-height: 340px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-msg p {
  margin: 0;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 85%;
}
.chat-msg.bot p {
  background: var(--light-bg);
  color: var(--text-main);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.chat-msg.user p {
  background: var(--gold);
  color: var(--white);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  margin-left: auto;
}
.chat-msg.typing p {
  opacity: 0.6;
  font-style: italic;
}
.chat-input-wrap {
  display: flex;
  border-top: 1px solid var(--border);
  padding: 10px;
  gap: 8px;
}
.chat-input-wrap input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 13px;
  font-family: 'Oxygen', sans-serif;
  outline: none;
}
.chat-input-wrap input:focus {
  border-color: var(--gold);
}
.chat-send {
  background: var(--gold);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition);
}
.chat-send:hover {
  background: var(--gold-dark);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid,
  .listings-grid,
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .award-item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }

  .header-top-bar {
    justify-content: center;
    padding: 7px 16px;
  }
  .header-top-bar .header-name { display: none; }
  .header-phone { font-size: 14px !important; }

  .main-nav { padding: 0 16px; }

  .hero { padding-top: 110px; text-align: center; }
  .hero-content { padding: 0 16px; }
  .hero-content h1 { font-size: 32px; }
  .hero-pre { font-size: 11px; letter-spacing: 2px; }

  .tagline-bar { padding: 16px 16px; }
  .tagline-bar p { font-size: 14px; }

  .section { padding: 60px 0; }
  .section-title { font-size: 28px; margin-bottom: 32px; }

  .two-col,
  .contact-cols { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-col { order: -1; text-align: center; }
  .agent-photo {
    max-width: 280px;
    margin: 0 auto;
    box-shadow: 6px 6px 0 var(--gold);
  }
  .agent-contact-card { max-width: 280px; margin: 20px auto 0; }
  .about-text-col { text-align: center; }
  .about-text-col h2 { font-size: 32px; }
  .about-text-col p { text-align: left; }

  .services-grid,
  .listings-grid,
  .regions-grid,
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-section { padding: 60px 0; }

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

  .contact-info-col { text-align: center; }
  .contact-info-col h2 { font-size: 32px; }
  .contact-details { align-items: center; }
  .langs-badge { justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-links { align-items: center; }
  .footer-contact { align-items: center; }

  .form-row.two { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  #regionsMap { height: 350px; margin-top: 32px; }

  /* Chatbox mobile */
  #chatWidget { bottom: 16px; right: 16px; }
  #chatToggle { width: 50px; height: 50px; font-size: 22px; }
  #chatPanel {
    width: calc(100vw - 32px);
    right: -8px;
    bottom: 62px;
    max-height: 70vh;
  }

  /* Scroll-top - move left to not overlap chatbox */
  .scroll-top { right: 76px; bottom: 16px; width: 40px; height: 40px; font-size: 18px; }

  /* Lang switcher */
  .lang-switcher { margin-left: 8px; }
  .lang-switch-btn { padding: 3px 6px; font-size: 10px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: 1fr; }
  .award-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .hero { background-attachment: scroll; }
  .hero-content h1 { font-size: 28px; }
  .logo-img { height: 38px; }
}
