/* ==========================================
   REAL ESTATE AGENCY - MAIN STYLESHEET
   ========================================== */

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

:root {
  --gold: #b89c6e;
  --gold-dark: #9e8555;
  --gold-light: #d4b98a;
  --dark: #1a1a1a;
  --dark-2: #2c2c2c;
  --charcoal: #333333;
  --grey: #666666;
  --light-grey: #f5f4f2;
  --white: #ffffff;
  --border: #e8e4de;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --transition: all 0.3s ease;
  --radius: 2px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

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

.section-pad { padding: 90px 0; }
.bg-light { background: var(--light-grey); }
.text-center { text-align: center; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 34px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184,156,110,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ---- SECTION LABELS ---- */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 20px;
}

.section-body {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.8;
  max-width: 520px;
}

/* ==========================================
   HEADER
   ========================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
  background: transparent;
}

.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  transition: height 0.3s ease;
}

.site-header.scrolled .header-inner { height: 72px; }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  transition: var(--transition);
}

.site-header.scrolled .logo { color: var(--dark); }

.logo-icon {
  font-size: 22px;
  color: var(--gold);
  line-height: 1;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.logo-text small {
  display: block;
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 4px;
  font-weight: 500;
  opacity: 0.7;
}

.main-nav ul {
  display: flex;
  gap: 36px;
}

.main-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding-bottom: 4px;
  position: relative;
}

.site-header.scrolled .main-nav a { color: var(--charcoal); }

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.main-nav a.active { color: var(--gold); }
.site-header.scrolled .main-nav a.active { color: var(--gold); }

.header-cta {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
  padding: 10px 24px;
  font-size: 12px;
}

.site-header.scrolled .header-cta {
  border-color: var(--dark);
  color: var(--dark);
}

.site-header.scrolled .header-cta:hover {
  background: var(--dark);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.site-header.scrolled .hamburger span { background: var(--dark); }

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh; /* Dynamic mobile viewport height */
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--dark);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  filter: brightness(1.05) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.05) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: 140px;
  padding-bottom: 70px;
  margin-left: 0;
  margin-right: auto;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5.5vw, 76px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ==========================================
   ABOUT PROMO
   ========================================== */
.about-promo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-promo-image {
  position: relative;
}

.about-promo-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 0;
}

.about-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--gold);
  color: var(--white);
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
}

.badge-num {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.4;
  margin-top: 4px;
}

.about-promo-content { padding-right: 20px; }
.about-promo-content .section-title { margin-bottom: 18px; }

.about-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item { display: flex; flex-direction: column; }

.stat-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ==========================================
   PROPERTIES
   ========================================== */
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.property-card {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(184, 156, 110, 0.35);
  border-color: rgba(184, 156, 110, 0.4);
}

.property-img {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: #110e0c;
  display: flex;
  align-items: center;
  justify-content: center;
}

.property-img-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.4s ease-in-out;
}

.property-img-track img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  background: #110e0c;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  transition: transform 0.5s ease;
}

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

.card-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.2s ease, transform 0.2s ease;
  z-index: 5;
}

.property-card:hover .card-slider-btn {
  opacity: 1;
}

.card-slider-btn:hover {
  background: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

.card-slider-btn.prev-btn { left: 10px; }
.card-slider-btn.next-btn { right: 10px; }

.card-slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 8px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.card-img-count-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  z-index: 4;
  backdrop-filter: blur(4px);
}

.prop-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
}

.property-body { padding: 22px 24px 26px; display: flex; flex-direction: column; }

.property-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.property-card:hover .property-title {
  color: var(--gold-dark, #a08355);
}

.property-price {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-dark, #a08355);
  margin-bottom: 8px;
}

.property-address {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.5;
  display: flex;
  gap: 6px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.property-address svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }

.property-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.property-specs span {
  font-size: 12px;
  color: var(--grey);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.property-specs .prop-highlights {
  flex: 1 1 100%;
  font-size: 13px;
  color: var(--gold, #b89c6e);
  font-weight: 500;
}

.property-card-action {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-dark, #a08355);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.property-card:hover .property-card-action {
  gap: 10px;
}

/* ==========================================
   HOW IT WORKS
   ========================================== */
.how-header {
  margin-bottom: 64px;
}

.how-header .section-title { margin-bottom: 0; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.step-item { text-align: center; padding: 0 20px; }

.step-num {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.step-item:hover .step-num { color: var(--gold-light); }

.step-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
}

.step-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  margin-top: 40px;
  align-self: start;
}

/* ==========================================
   CTA BANNER
   ========================================== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  background-image: url('images/property_3.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 10, 5, 0.75);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  color: var(--white);
  max-width: 580px;
  line-height: 1.3;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.section-header-center {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-center .section-title { margin-bottom: 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  padding: 36px 32px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testi-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--grey);
  font-style: italic;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
}

.testi-role {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ==========================================
   TALK CTA
   ========================================== */
.talk-cta {
  background: var(--dark);
}

.talk-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.talk-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 600;
  color: var(--white);
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background: #111111;
  padding-top: 70px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-light { color: var(--white); }

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 1.5px;
  background: var(--gold);
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-bottom {
  padding: 22px 0;
  background: #0a0a0a;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
}

/* ==========================================
   PAGE HERO (subpages)
   ========================================== */
.page-hero {
  background: var(--dark-2);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,156,110,0.12) 0%, transparent 60%);
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero .section-label { display: block; margin-bottom: 14px; }

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  line-height: 1.7;
}

/* ==========================================
   PROPERTIES PAGE
   ========================================== */
.featured-property {
  background: var(--light-grey);
  padding: 60px 0;
}

.featured-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.featured-img {
  height: 480px;
  overflow: hidden;
  background: #110e0c;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #110e0c;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
}

.featured-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.featured-price {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.featured-address {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 20px;
}

.featured-specs {
  display: flex;
  gap: 24px;
  margin-bottom: 30px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.featured-specs span {
  font-size: 13px;
  color: var(--charcoal);
  font-weight: 500;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-intro-img {
  height: 500px;
  overflow: hidden;
  position: relative;
}

.about-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.service-item {
  padding: 32px;
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-desc { font-size: 13px; color: var(--grey); line-height: 1.7; }

.stats-bar {
  background: var(--dark);
  padding: 60px 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats-bar-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stats-bar-item:last-child { border-right: none; }

.stats-bar-num {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.stats-bar-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 6px;
  display: block;
}

/* ==========================================
   BLOG PAGE
   ========================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img { transform: scale(1.07); }

.blog-card-body { padding: 24px; }

.blog-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.blog-title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 12px;
  font-weight: 600;
}

.blog-excerpt { font-size: 13px; color: var(--grey); line-height: 1.6; margin-bottom: 16px; }

.blog-meta {
  font-size: 11px;
  color: var(--grey);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-read-more {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
}

.blog-read-more:hover { color: var(--gold-dark); }

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 36px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--white);
}

.contact-info-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-info-text {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.5;
}

.contact-social {
  margin-top: 40px;
}

.contact-social-title {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 16px;
}

.contact-social-links {
  display: flex;
  gap: 10px;
}

/* Form */
.contact-form-wrap .section-title { margin-bottom: 32px; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--charcoal);
  outline: none;
  transition: var(--transition);
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,156,110,0.12);
}

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

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--charcoal);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
}

/* ==========================================
   SCROLL ANIMATION
   ========================================== */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ==========================================
   MOBILE
   ========================================== */
@media (max-width: 1024px) {
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .about-promo-inner { gap: 50px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }

  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    padding: 100px 32px 40px;
    z-index: 900;
    gap: 0;
  }

  .main-nav.open ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav.open a {
    display: block;
    padding: 16px 0;
    font-size: 20px;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .about-promo-inner,
  .about-intro,
  .contact-layout,
  .featured-inner { grid-template-columns: 1fr; gap: 40px; }

  .properties-grid,
  .testimonials-grid,
  .services-grid,
  .blog-grid { grid-template-columns: 1fr; }

  .steps-grid { grid-template-columns: 1fr; }
  .step-divider { width: 40px; height: 1px; margin: 20px auto; }

  .cta-banner-content,
  .talk-cta-inner { flex-direction: column; text-align: center; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }

  .section-header-row { flex-direction: column; gap: 20px; align-items: flex-start; }

  .about-badge { right: -10px; bottom: -10px; width: 90px; height: 90px; }

  .hero {
    min-height: 100dvh;
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .hero-content {
    padding-top: 20px;
  }
  .hero-title {
    font-size: clamp(32px, 8vw, 44px);
    margin-bottom: 28px;
  }
}

@media (max-width: 480px) {
  .hero-eyebrow {
    letter-spacing: 2.5px;
    font-size: 11px;
    margin-bottom: 14px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 15px 20px;
  }
  .hero-scroll-indicator {
    bottom: 20px;
  }
  .scroll-line {
    height: 40px;
  }
  .about-stats { flex-direction: column; gap: 16px; }
  .checkbox-group { grid-template-columns: 1fr; }
}

/* ==========================================
   PRODUCTION ADDITIONS
   ========================================== */

/* Skip Navigation */
.skip-nav {
  position: absolute;
  top: -120%;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 9999;
  transition: top 0.25s ease;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
}
.skip-nav:focus { top: 0; }

/* Focus Visible Ring */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) { outline: none; }

/* Form Error States */
.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #e53e3e;
  background: #fff5f5;
}
.form-group.has-error label { color: #c53030; }
.form-error {
  color: #c53030;
  font-size: 12px;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}
.form-success {
  color: #276749;
  font-size: 13px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f0fff4;
  border-left: 3px solid #38a169;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 90px;
  right: 30px;
  padding: 16px 22px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  z-index: 9000;
  border-left: 4px solid var(--gold);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  transform: translateX(calc(100% + 40px));
  transition: transform 0.45s cubic-bezier(0.175,0.885,0.32,1.275);
  max-width: 360px;
  line-height: 1.5;
}
.toast.toast-show { transform: translateX(0); }
.toast.toast-success { border-color: #38a169; }
.toast.toast-error   { border-color: #e53e3e; }

/* Back To Top */
.back-to-top {
  position: fixed;
  bottom: 104px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
  z-index: 500;
  box-shadow: 0 4px 16px rgba(184,156,110,0.4);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top:hover   { background: var(--gold-dark); transform: translateY(-3px); }

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 8000;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a, .breadcrumb span {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: rgba(255,255,255,0.25); }
.breadcrumb span:last-child { color: var(--gold-light); }

/* Loading Button Spinner */
.btn-loading {
  position: relative;
  pointer-events: none;
  color: transparent !important;
}
.btn-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: btnSpin 0.65s linear infinite;
}
@keyframes btnSpin { to { transform: rotate(360deg); } }

/* Image placeholder shimmer */
.img-wrap {
  position: relative;
  background: #f0ede8;
  overflow: hidden;
}
.img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
  z-index: 1;
}
.img-wrap img { position: relative; z-index: 2; }
.img-wrap img.loaded + .img-wrap::before,
.img-wrap.loaded::before { display: none; }
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-eyebrow, .hero-title, .hero-actions { opacity: 1 !important; transform: none !important; animation: none !important; }
  .fade-in { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero, .cta-banner { background-attachment: scroll !important; }
  .scroll-line { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* Print Styles */
@media print {
  .site-header, .hero-scroll-indicator, .cta-banner, .talk-cta,
  .footer-social, .hamburger, .header-cta, .btn,
  .back-to-top, .cookie-banner, .toast, .skip-nav { display: none !important; }

  body { font-size: 11pt; color: #000; background: #fff; }

  .hero {
    background: #f5f4f2 !important;
    min-height: auto;
    padding: 40pt 0 20pt;
  }
  .hero-overlay { display: none; }
  .hero-title  { color: #1a1a1a !important; font-size: 28pt; }
  .hero-eyebrow { color: #b89c6e; }

  .site-footer { background: #fff !important; padding-top: 20pt; }
  .footer-inner { display: block; }
  .footer-col { margin-bottom: 12pt; }
  .footer-col-title, .footer-links a, .footer-contact-list li { color: #000 !important; }
  .footer-bottom { background: #f5f4f2 !important; }
  .footer-bottom-inner { color: #666 !important; }

  a[href^="http"]::after { content: " [" attr(href) "]"; font-size: 9pt; color: #666; }

  .property-card, .testimonial-card, .blog-card { break-inside: avoid; box-shadow: none; border: 1pt solid #ddd; }
  .properties-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .blog-grid { grid-template-columns: repeat(2, 1fr) !important; }

  .page-hero { background: #2c2c2c !important; padding: 40pt 0 20pt; }
  .stats-bar  { background: #eee !important; }
  .stats-bar-num, .stats-bar-label { color: #333 !important; }
  .talk-cta { background: #eee !important; display: block !important; padding: 20pt; }
  .talk-cta-title { color: #333 !important; }
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */
#whatsapp-float-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}

#whatsapp-float-btn:hover {
  background: #1ebe5d;
  transform: translateY(-4px) scale(1.07);
  box-shadow: 0 12px 32px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.2);
}

#whatsapp-float-btn svg {
  flex-shrink: 0;
}

/* Pulse ring animation */
#whatsapp-float-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: waPulse 2.2s ease-out infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(2);   opacity: 0; }
}

/* ==========================================
   LIVE MAP SECTION STYLING
   ========================================== */
.map-section {
  background: #1a1a1a;
  padding: 60px 0 0 0;
  text-align: center;
  position: relative;
}

.map-header {
  margin-bottom: 30px;
  padding: 0 20px;
}

.map-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 450px;
  filter: grayscale(0.15) contrast(1.05);
  transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
  filter: none;
}

.map-directions-btn {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 10;
  background: var(--gold, #c5a880);
  color: #fff;
  padding: 12px 22px;
  border-radius: 4px;
  font-family: var(--font-sans, sans-serif);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.map-directions-btn:hover {
  background: var(--gold-dark, #b09168);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* ==========================================
   PROPERTY DETAILS MODAL (LUXURY VIEWER)
   ========================================== */
.prop-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(8, 6, 5, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

.prop-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.prop-modal-container {
  background: #171411;
  color: #fff;
  border: 1px solid rgba(184, 156, 110, 0.3);
  border-radius: 14px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.75), 0 0 50px rgba(184, 156, 110, 0.15);
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.94) translateY(24px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.prop-modal-overlay.active .prop-modal-container {
  transform: scale(1) translateY(0);
}

.prop-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #120f0d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.prop-modal-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.prop-modal-badge {
  background: var(--gold, #b89c6e);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 4px;
}

.prop-modal-badge.badge-sold { background: #e74c3c; }
.prop-modal-badge.badge-pending { background: #e67e22; }

.prop-modal-close-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.25s ease;
}

.prop-modal-close-btn:hover {
  background: var(--gold, #b89c6e);
  color: #fff;
  border-color: var(--gold, #b89c6e);
  transform: rotate(90deg);
}

.prop-modal-scroll-area {
  padding: 24px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold, #b89c6e) #120f0d;
}

.prop-modal-scroll-area::-webkit-scrollbar {
  width: 7px;
}
.prop-modal-scroll-area::-webkit-scrollbar-track {
  background: #120f0d;
}
.prop-modal-scroll-area::-webkit-scrollbar-thumb {
  background: rgba(184, 156, 110, 0.4);
  border-radius: 4px;
}
.prop-modal-scroll-area::-webkit-scrollbar-thumb:hover {
  background: var(--gold, #b89c6e);
}

/* Gallery Section in Modal */
.prop-modal-gallery {
  position: relative;
  margin-bottom: 24px;
}

.prop-modal-main-img-wrap {
  position: relative;
  height: 440px;
  background: #0d0b09;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.prop-modal-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #0d0b09;
  transition: opacity 0.3s ease;
  image-rendering: high-quality;
}

.prop-modal-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.prop-modal-gallery-nav:hover {
  background: var(--gold, #b89c6e);
  border-color: var(--gold, #b89c6e);
  transform: translateY(-50%) scale(1.1);
}

.prop-modal-gallery-nav.prev-btn { left: 14px; }
.prop-modal-gallery-nav.next-btn { right: 14px; }

.prop-modal-photo-counter {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 5;
}

.prop-modal-caption-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
  padding: 24px 16px 12px;
  font-size: 13px;
  color: #fff;
  text-align: center;
  font-style: italic;
  z-index: 4;
}

/* Thumbnail Carousel */
.prop-modal-thumbs-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 2px 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold, #b89c6e) transparent;
}

.prop-modal-thumb-btn {
  flex: 0 0 80px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: #110e0c;
  padding: 0;
  opacity: 0.6;
  transition: all 0.25s ease;
}

.prop-modal-thumb-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.prop-modal-thumb-btn.active {
  opacity: 1;
  border-color: var(--gold, #b89c6e);
  box-shadow: 0 0 12px rgba(184, 156, 110, 0.45);
  transform: scale(1.05);
}

.prop-modal-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Property Info in Modal */
.prop-modal-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.prop-modal-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.25;
  flex: 1 1 300px;
}

.prop-modal-price {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-light, #d4af7a);
  white-space: nowrap;
}

.prop-modal-address {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.prop-modal-address svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold, #b89c6e);
}

/* Specs Grid */
.prop-modal-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.prop-modal-spec-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.prop-modal-spec-icon {
  font-size: 20px;
  color: var(--gold, #b89c6e);
  flex-shrink: 0;
}

.prop-modal-spec-label {
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.prop-modal-spec-value {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

/* Description Section */
.prop-modal-desc-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 20px 22px;
  margin-bottom: 24px;
}

.prop-modal-section-heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-light, #d4af7a);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.prop-modal-desc-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  white-space: pre-line;
  word-break: break-word;
}

/* Contact & Action Hub Box */
.prop-modal-contact-hub {
  background: linear-gradient(135deg, rgba(184, 156, 110, 0.12) 0%, rgba(26, 22, 18, 0.95) 100%);
  border: 1px solid rgba(184, 156, 110, 0.35);
  border-radius: 12px;
  padding: 22px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.prop-modal-contact-heading {
  font-family: var(--font-serif);
  font-size: 20px;
  color: #fff;
  margin-bottom: 4px;
}

.prop-modal-contact-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 18px;
}

.prop-modal-btn-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.prop-modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  text-align: center;
}

.prop-modal-btn-whatsapp {
  background: #25D366;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.prop-modal-btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
}

.prop-modal-btn-phone {
  background: var(--gold, #b89c6e);
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(184, 156, 110, 0.3);
}

.prop-modal-btn-phone:hover {
  background: var(--gold-dark, #a08355);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 156, 110, 0.45);
}

.prop-modal-btn-email {
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.prop-modal-btn-email:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.prop-modal-contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.prop-modal-contact-details span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .prop-modal-container {
    max-height: 95vh;
    border-radius: 10px;
  }
  .prop-modal-scroll-area {
    padding: 16px;
  }
  .prop-modal-main-img-wrap {
    height: 280px;
  }
  .prop-modal-title {
    font-size: 20px;
  }
  .prop-modal-price {
    font-size: 22px;
  }
  .prop-modal-btn-row {
    grid-template-columns: 1fr;
  }
}


