/* ========================================
   Property Square Indore - Main Stylesheet
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary: #1c4731;
  --primary-light: #235a3d;
  --primary-foreground: #faf8f4;
  --secondary: #c9a227;
  --secondary-light: #d4b045;
  --secondary-foreground: #1c2b1a;
  --background: #faf8f4;
  --foreground: #1a2b18;
  --muted: #f0ede6;
  --muted-foreground: #5a6b58;
  --card: #ffffff;
  --border: #e0dbd0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --container-max: 1500px;
  --container-padding: 4vw;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --transition: 0.25s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ---- Container ---- */
.container {
  max-width: var(--container-max);
  width: 92%;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}
.btn-secondary:hover {
  background: var(--secondary-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--muted);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---- Section Labels ---- */
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.22;
}
.section-desc {
  color: var(--muted-foreground);
  font-size: 1.08rem;
  margin-top: 14px;
  max-width: 560px;
}

/* ---- Animate-on-scroll ---- */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.anim-fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.anim-fade-in.visible { opacity: 1; }
.anim-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.anim-scale.visible { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ========================
   NAVBAR
   ======================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all 0.35s ease;
}
.navbar.scrolled {
  background: rgba(250,248,244,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.1;
  color: white;
  transition: color var(--transition);
}
.navbar.scrolled .nav-logo-name { color: var(--foreground); }
.nav-logo-city {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.navbar.scrolled .nav-logo-city { color: var(--muted-foreground); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--secondary);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--secondary); }
.navbar.scrolled .nav-links a { color: rgba(26,43,24,0.8); }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { color: var(--secondary); }
.nav-phone {
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 24px;
  margin-left: 8px;
  color: white;
  transition: color var(--transition);
}
.navbar.scrolled .nav-phone { color: var(--foreground); border-left-color: var(--border); }
.nav-phone span:first-child {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.75;
}
.nav-phone span:last-child { font-size: 0.875rem; font-weight: 700; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .nav-hamburger span { background: var(--foreground); }
.nav-mobile {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 16px;
  flex-direction: column;
  gap: 6px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--foreground);
  transition: background var(--transition);
}
.nav-mobile a:hover, .nav-mobile a.active {
  background: var(--muted);
  color: var(--primary);
}
.nav-mobile-info {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}
.nav-mobile-info .info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.nav-mobile-info .info-row svg { flex-shrink: 0; color: var(--secondary); margin-top: 2px; }
.nav-mobile-info .info-row strong { color: var(--foreground); }

/* ========================
   HERO SECTION
   ======================== */
.hero {
  position: relative;
  min-height: 100dvh;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(28,71,49,0.91) 0%, rgba(28,71,49,0.65) 55%, rgba(28,71,49,0.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 60px;
  color: white;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,0.92);
  color: var(--secondary-foreground);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 26px;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero-title em {
  color: var(--secondary);
  font-style: italic;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-search {
  background: white;
  border-radius: var(--radius);
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 680px;
  box-shadow: var(--shadow-lg);
}
.hero-search-field {
  flex: 1;
  min-width: 180px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--muted);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
}
.hero-search-field svg { color: var(--muted-foreground); flex-shrink: 0; }
.hero-search-field select,
.hero-search-field input {
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.9rem;
  color: var(--foreground);
  width: 100%;
}
.hero-search-field select option { color: var(--foreground); background: white; }
.hero-search .btn {
  flex-shrink: 0;
  padding: 11px 28px;
  font-size: 0.95rem;
}

/* ========================
   STATS BAR
   ======================== */
.stats-bar {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 56px 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.78;
}

/* ========================
   FEATURED PROPERTIES
   ======================== */
.section { padding: 90px 0; }
.section-muted { background: var(--muted); }
.section-white { background: white; }
.section-primary { background: var(--primary); color: var(--primary-foreground); }
.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
}
.section-header-left { max-width: 580px; }

/* ========================
   PROPERTY CARD
   ======================== */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px;
}
.property-grid-4 {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.property-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.property-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.property-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.property-card:hover .property-card-img img { transform: scale(1.07); }
.property-badges {
  position: absolute;
  top: 14px; left: 14px;
  display: flex; gap: 8px;
}
.badge {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-buy { background: var(--primary); color: white; }
.badge-rent { background: #2563eb; color: white; }
.badge-investment { background: #7c3aed; color: white; }
.badge-agricultural { background: #15803d; color: white; }
.badge-featured { background: var(--secondary); color: var(--secondary-foreground); }
.property-wish {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--muted-foreground);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.property-wish:hover { color: #e53e3e; background: #fff5f5; }
.property-card-body { padding: 18px 20px 20px; }
.property-price {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.property-title {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 8px;
  line-height: 1.35;
}
.property-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--muted-foreground);
  margin-bottom: 14px;
}
.property-location svg { flex-shrink: 0; }
.property-meta {
  display: flex;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted-foreground);
}
.property-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ========================
   SERVICES SECTION
   ======================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--card);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.service-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-icon {
  width: 56px; height: 56px;
  background: rgba(28,71,49,0.07);
  color: var(--primary);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--secondary);
  color: var(--secondary-foreground);
}
.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 10px;
}
.service-desc { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* ========================
   TESTIMONIALS
   ======================== */
.testimonials-section {
  background: var(--primary);
  color: var(--primary-foreground);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: rgba(201,162,39,0.08);
  transform: skewX(-12deg) translateX(25%);
  pointer-events: none;
}
.testimonials-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.testimonials-left { flex: 1; min-width: 240px; max-width: 340px; }
.testimonials-rating {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.testimonials-rating .big-score {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}
.stars { display: flex; gap: 4px; color: var(--secondary); }
.testimonials-rating .review-count { font-size: 0.82rem; opacity: 0.75; }
.testimonials-right { flex: 2; min-width: 280px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.testimonial-card {
  background: white;
  color: var(--foreground);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.testimonial-card:nth-child(2) { margin-top: 32px; }
.testimonial-stars { display: flex; gap: 4px; color: var(--secondary); margin-bottom: 14px; }
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--foreground);
  margin-bottom: 18px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 38px; height: 38px;
  background: var(--muted);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--muted-foreground);
  font-size: 0.9rem;
}
.author-name { font-size: 0.82rem; font-weight: 700; }
.author-sub { font-size: 0.72rem; color: var(--muted-foreground); }

/* ========================
   CTA SECTION
   ======================== */
.cta-box {
  background: var(--muted);
  border-radius: 28px;
  padding: 70px 60px;
  text-align: center;
  border: 1px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
}
.cta-box .section-title { margin-bottom: 18px; }
.cta-box p { color: var(--muted-foreground); font-size: 1.05rem; margin-bottom: 34px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ========================
   PAGE HEADER BANNER
   ======================== */
.page-banner {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 100px 0 50px;
}
.page-banner h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.page-banner p {
  color: rgba(250,248,244,0.78);
  font-size: 1.05rem;
  max-width: 580px;
}

/* ========================
   PROPERTIES PAGE
   ======================== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 38px;
  box-shadow: var(--shadow-sm);
}
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-tab {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted-foreground);
  transition: all var(--transition);
}
.filter-tab:hover { border-color: var(--primary); color: var(--primary); }
.filter-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.filter-search {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  background: var(--muted);
}
.filter-search svg { color: var(--muted-foreground); }
.filter-search input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.875rem;
  color: var(--foreground);
  width: 220px;
}
.results-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: var(--muted-foreground);
}
.results-info span:last-child {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.results-info span:last-child:hover { color: var(--foreground); }
.no-results {
  text-align: center;
  padding: 80px 20px;
  background: var(--muted);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--border);
  display: none;
}
.no-results.show { display: block; }
.no-results h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.no-results p { color: var(--muted-foreground); margin-bottom: 24px; }

/* ========================
   ABOUT PAGE
   ======================== */
.about-hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}
.about-hero-left { flex: 1; min-width: 280px; }
.about-hero-right { flex: 1; min-width: 280px; }
.about-trust-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.trust-badge svg { color: var(--secondary); }
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap .img-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: rgba(28,71,49,0.08);
}
.rating-float {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-lg);
  min-width: 220px;
}
.rating-float-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.google-g {
  width: 44px; height: 44px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}
.rating-float-name { font-weight: 700; font-size: 0.95rem; }
.rating-float-score {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1;
}
.rating-float-score span {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted-foreground);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--muted);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px;
}
.why-icon {
  width: 48px; height: 48px;
  background: rgba(201,162,39,0.12);
  color: var(--secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.why-desc { color: var(--muted-foreground); font-size: 0.875rem; line-height: 1.65; }
.about-info-grid {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.info-detail { display: flex; flex-direction: column; gap: 28px; }
.info-row { display: flex; align-items: flex-start; gap: 16px; }
.info-icon {
  width: 44px; height: 44px;
  background: var(--secondary);
  color: var(--secondary-foreground);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.7; margin-bottom: 4px; }
.info-value { font-size: 1.02rem; font-weight: 600; opacity: 0.9; }
.info-value.big { font-size: 1.35rem; }
.services-card {
  background: white;
  color: var(--foreground);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.services-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.services-list { display: flex; flex-direction: column; gap: 16px; }
.services-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
}
.services-list li svg { color: var(--secondary); flex-shrink: 0; }
.services-card .btn { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); }

/* ========================
   CONTACT PAGE
   ======================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--muted);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  outline: none;
  font-size: 0.9rem;
  color: var(--foreground);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: white;
}
.form-group textarea { resize: vertical; }
.contact-info-col { display: flex; flex-direction: column; gap: 24px; }
.contact-info-col h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-mini-card {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contact-mini-icon {
  width: 48px; height: 48px;
  background: rgba(28,71,49,0.09);
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.contact-mini-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 5px; }
.contact-mini-card p { font-size: 0.82rem; color: var(--muted-foreground); }
.contact-address-card {
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contact-address-card svg { color: var(--secondary); flex-shrink: 0; margin-top: 2px; }
.contact-address-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.contact-address-card p { font-size: 0.95rem; opacity: 0.82; line-height: 1.6; }
.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); height: 320px; }
.contact-map iframe { width: 100%; height: 100%; display: block; border: 0; }

/* ========================
   FOOTER
   ======================== */
footer {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.875rem;
  opacity: 0.7;
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 14px;
}
.footer-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
}
.footer-rating span { font-size: 0.82rem; font-weight: 400; opacity: 0.7; color: var(--primary-foreground); }
.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: white;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li {
  font-size: 0.875rem;
  opacity: 0.78;
}
.footer-col ul li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity var(--transition), color var(--transition);
}
.footer-col ul li a:hover { opacity: 1; color: var(--secondary); }
.footer-col ul li svg { color: var(--secondary); flex-shrink: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; opacity: 0.8; }
.footer-contact li svg { color: var(--secondary); flex-shrink: 0; margin-top: 2px; }
.footer-contact .phone { font-weight: 700; color: white; opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  opacity: 0.6;
}
.footer-bottom a:hover { opacity: 1; color: white; }
.footer-legal { display: flex; gap: 20px; }

/* ========================
   WHATSAPP BUTTON
   ======================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px; height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1100px) {
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 20px; margin-bottom: 4px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-info-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-cards-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-search { flex-direction: column; }
  .hero-search-field { min-width: 100%; }
  .section { padding: 60px 0; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card:nth-child(2) { margin-top: 0; }
  .cta-box { padding: 44px 24px; }
  .about-info-grid { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .rating-float { position: relative; bottom: auto; left: auto; margin-top: 20px; }
  .contact-form-card { padding: 26px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-cards-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-badge { font-size: 0.75rem; }
  .testimonials-inner { gap: 32px; }
  .testimonials-left { max-width: 100%; }
  .property-grid { grid-template-columns: 1fr; }
}
