/* ═══════════════════════════════════════════════════════════════════════════
   Aashirwad Properties – style.css
   Premium Real Estate Landing Page · Suratgarh, Rajasthan
   Author: Senior Front-End Engineer
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────── CSS Custom Properties ──── */
:root {
  /* Colour Palette */
  --charcoal:      #1a1a1a;
  --charcoal-deep: #111111;
  --charcoal-mid:  #242424;
  --gold:          #c9a04e;
  --gold-light:    #e2bc74;
  --gold-pale:     #f5e8c8;
  --cream:         #faf7f2;
  --cream-dark:    #f2ece0;
  --white:         #ffffff;
  --text-dark:     #1a1a1a;
  --text-mid:      #444444;
  --text-light:    #777777;
  --border:        rgba(201, 160, 78, 0.25);
  --shadow-soft:   0 8px 40px rgba(0,0,0,.08);
  --shadow-card:   0 4px 24px rgba(0,0,0,.10);
  --shadow-deep:   0 20px 60px rgba(0,0,0,.18);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  /* Spacing */
  --section-pad:  100px;
  --section-pad-sm: 60px;
  --container:    1200px;
  --gutter:       24px;

  /* Transitions */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --dur:          0.3s;
  --dur-slow:     0.6s;

  /* Header height */
  --header-h:     80px;
}

/* ─────────────────────────────────────────── Reset & Base ──── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ─────────────────────────────────────────── Container ──── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─────────────────────────────────────────── Buttons ──── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--dur) var(--ease);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

/* Gold button */
.btn-gold {
  background: var(--gold);
  color: var(--charcoal-deep);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,160,78,0.35);
}

/* Outline white */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Outline dark */
.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm  { padding: 10px 22px; font-size: 0.8rem; }
.btn-lg  { padding: 18px 48px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ─────────────────────────────────────────── Section Shared Styles ──── */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 520px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-desc { margin: 0 auto; }

/* ─────────────────────────────────────────── Scroll Animations ──── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ════════════════════════════════════════════════════ HEADER ══ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: background var(--dur-slow) var(--ease), box-shadow var(--dur) var(--ease);
}

.site-header.scrolled {
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-symbol {
  font-size: 1.5rem;
  line-height: 1;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Nav */
.main-nav {
  margin-left: auto;
}
.main-nav ul {
  display: flex;
  gap: 36px;
}
.main-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--dur) var(--ease);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--dur) var(--ease);
}
.main-nav a:hover { color: var(--gold-light); }
.main-nav a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--dur) var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--charcoal-deep);
  padding: 20px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--dur) var(--ease);
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.mobile-nav li { width: 100%; text-align: center; }
.mobile-nav a {
  display: block;
  padding: 14px 24px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--dur) var(--ease);
}
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav .btn { margin: 16px auto; }

/* ════════════════════════════════════════════════════ HERO ══ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/*
  HERO BACKGROUND IMAGE
  To change: replace the URL below with your preferred full-width property image.
  Recommended: high-quality image, 1920×1080 minimum, landscape orientation.
*/
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://lh3.googleusercontent.com/p/AF1QipMBkmrwS2AHDRGbPX78xjgoGA3Wn9-trv764G3P=s1360-w1360-h1020-rw');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.06);
  transition: transform 12s var(--ease-out);
  will-change: transform;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17,17,17,0.82) 0%,
    rgba(26,26,26,0.65) 50%,
    rgba(17,17,17,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-top: var(--header-h);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201,160,78,0.15);
  border: 1px solid rgba(201,160,78,0.3);
  padding: 8px 20px;
  margin-bottom: 28px;
}
.star-icon { color: var(--gold); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.rating-text {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
@keyframes scrollPulse {
  0%   { opacity: 1; transform: scaleY(1); }
  50%  { opacity: 0.4; transform: scaleY(0.8); }
  100% { opacity: 1; transform: scaleY(1); }
}

/* ════════════════════════════════════════════════════ STATS BAR ══ */
.stats-bar {
  background: var(--charcoal);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════ SEARCH ══ */
.search-section {
  background: var(--cream);
  padding: 64px 0;
}

.search-card {
  background: var(--white);
  padding: 48px;
  box-shadow: var(--shadow-deep);
}

.search-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 28px;
  text-align: center;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}

.search-field select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a04e' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  transition: border-color var(--dur) var(--ease);
}
.search-field select:focus {
  outline: none;
  border-color: var(--gold);
}

.search-btn { height: 50px; white-space: nowrap; }

/* ════════════════════════════════════════════════════ PROPERTIES ══ */
.properties-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

/* Property Card */
.property-card {
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform var(--dur-slow) var(--ease), box-shadow var(--dur-slow) var(--ease);
  overflow: hidden;
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}

.card-image-wrap {
  position: relative;
  overflow: hidden;
  height: 230px;
}
.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.property-card:hover .card-image-wrap img {
  transform: scale(1.06);
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--charcoal);
  color: var(--white);
}
.card-badge--new  { background: #2e7d32; }
.card-badge--hot  { background: #c62828; }

.card-body { padding: 24px; }

.card-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1.2;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.4;
}

.card-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.card-meta li {
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.meta-icon { font-size: 0.85rem; }

.view-all-wrap { text-align: center; }

/* ════════════════════════════════════════════════════ ABOUT ══ */
.about-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Images */
.about-images {
  position: relative;
}
.about-img-main {
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about-img-thumb {
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 200px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 6px solid var(--white);
}
.about-img-thumb img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.about-badge-float {
  position: absolute;
  top: 24px;
  right: -24px;
  background: var(--charcoal);
  color: var(--white);
  padding: 20px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: var(--shadow-deep);
  min-width: 110px;
}
.float-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.float-stars { font-size: 0.7rem; color: var(--gold); letter-spacing: 3px; }
.float-label {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* Content */
.about-content { display: flex; flex-direction: column; gap: 0; }
.about-lead {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 18px;
}
.about-body {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.about-points li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.point-icon {
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: 5px;
  flex-shrink: 0;
}
.about-points strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  display: block;
  margin-bottom: 4px;
}
.about-points p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════ SERVICES ══ */
.services-section {
  padding: var(--section-pad) 0;
  background: var(--charcoal-deep);
}
.services-section .section-title { color: var(--white); }
.services-section .section-desc { color: rgba(255,255,255,0.6); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
}

.service-card {
  background: var(--charcoal-mid);
  padding: 40px 32px;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--dur-slow) var(--ease);
}
.service-card:hover { background: rgba(201,160,78,0.07); }
.service-card:hover::before { width: 100%; }

.service-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: block;
  transition: transform var(--dur) var(--ease);
}
.service-card:hover .service-icon { transform: scale(1.15); }

.service-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--dur) var(--ease), letter-spacing var(--dur) var(--ease);
}
.service-card:hover .service-link {
  color: var(--gold-light);
  letter-spacing: 0.16em;
}

/* ════════════════════════════════════════════════════ GALLERY ══ */
.gallery-section {
  padding-top: var(--section-pad);
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 6px;
  margin-top: 0;
}

.gallery-item { position: relative; overflow: hidden; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-slow) var(--ease);
}
.gallery-item:hover .gallery-overlay { background: rgba(17,17,17,0.55); }

.gallery-cta {
  opacity: 0;
  transform: translateY(10px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
  padding: 10px 22px;
  transition: all var(--dur) var(--ease);
}
.gallery-item:hover .gallery-cta {
  opacity: 1;
  transform: translateY(0);
}
.gallery-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

/* ════════════════════════════════════════════════════ REVIEWS ══ */
.reviews-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.reviews-rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 12px;
}
.big-rating {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stars-large { font-size: 1rem; color: var(--gold); letter-spacing: 4px; display: block; }
.reviews-rating-display > div > p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
}

.reviews-slider-wrap { position: relative; overflow: hidden; }

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s var(--ease);
}

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--cream);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}

.review-stars { font-size: 0.85rem; color: var(--gold); letter-spacing: 3px; }

.review-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  flex: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  background: var(--charcoal);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviewer-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  display: block;
}
.reviewer-meta {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.review-nav-btn {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--border);
  background: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-dark);
  transition: all var(--dur) var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.review-dots { display: flex; gap: 8px; }
.review-dot {
  width: 8px;
  height: 8px;
  background: var(--cream-dark);
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  border: none;
}
.review-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ════════════════════════════════════════════════════ CTA SECTION ══ */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  /*
    CTA BACKGROUND IMAGE
    To change: update the background-image URL below.
    Recommended: landscape property image, 1920×600px minimum.
  */
  background-image: url('https://lh3.googleusercontent.com/p/AF1QipNkSx6hNro93dHIgzlcC9paf-B133vexNebVZhH=s1360-w1360-h1020-rw');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.75);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-title em { font-style: italic; color: var(--gold-light); }
.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
}

/* ════════════════════════════════════════════════════ CONTACT ══ */
.contact-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 0; }

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 36px;
  margin-top: 24px;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.contact-value {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
}
a.contact-value { transition: color var(--dur) var(--ease); }
a.contact-value:hover { color: var(--gold); }

.contact-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  box-shadow: var(--shadow-deep);
  filter: grayscale(20%);
}

/* ════════════════════════════════════════════════════ FOOTER ══ */
.site-footer {
  background: var(--charcoal-deep);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand .logo-symbol { font-size: 1.6rem; }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-left: 0;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links ul,
.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--dur) var(--ease);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-services li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 10px;
}
.footer-contact a {
  color: var(--gold-light);
  transition: color var(--dur) var(--ease);
}
.footer-contact a:hover { color: var(--white); }

.footer-wa-btn {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-deep);
  background: var(--gold);
  padding: 10px 24px;
  transition: background var(--dur) var(--ease);
}
.footer-wa-btn:hover { background: var(--gold-light); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════════════ FLOATING BUTTONS ══ */
.float-btn {
  position: fixed;
  bottom: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}

.float-whatsapp {
  right: 24px;
  background: #25D366;
  color: var(--white);
}
.float-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,.4);
}

.float-call {
  left: 24px;
  background: var(--gold);
  color: var(--charcoal-deep);
}
.float-call:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(201,160,78,.4);
}

/* Pulse ring on whatsapp button */
.float-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(37,211,102,0.4);
  animation: pulseRing 2.4s ease-out infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(0.9); opacity: 0.7; }
  80%  { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ════════════════════════════════════════════════════ RESPONSIVE ══ */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-thumb { display: none; }
  .about-badge-float { right: 16px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item--tall { grid-row: span 1; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(even) { border-bottom: none; }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  /* Header */
  .main-nav, .header-inner > .btn { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .header-inner { justify-content: space-between; gap: 0; }

  /* Hero */
  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Search */
  .search-card { padding: 28px 20px; }
  .search-form { grid-template-columns: 1fr; }

  /* Properties */
  .properties-grid { grid-template-columns: 1fr; }

  /* About */
  .about-img-main img { height: 320px; }
  .about-badge-float { display: none; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 2px; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item--wide { grid-column: span 1; }

  /* Reviews */
  .review-card { flex: 0 0 calc(100% - 0px); }

  /* CTA */
  .cta-section { background-attachment: scroll; }
  .cta-section { padding: 80px 0; }

  /* Contact */
  .contact-map iframe { height: 280px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Floating buttons */
  .float-btn span { display: none; }
  .float-btn { padding: 14px; border-radius: 50%; }
  .float-whatsapp { right: 20px; bottom: 24px; }
  .float-call { left: 20px; bottom: 24px; }
}

/* Small mobile: ≤ 480px */
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }
  .section-title { font-size: 1.8rem; }
}

/* Print */
@media print {
  .site-header, .float-btn, .scroll-indicator, .hero-actions { display: none; }
  .hero { height: auto; min-height: auto; }
  * { color: #000 !important; background: #fff !important; }
}

/* ════════════════════════════════════════════════════ FOOTER ADDITIONS ══ */
.footer-contact-info-section {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
}
.footer-dev-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.dev-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a1a1aa;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}
.dev-contact-link:hover {
  color: var(--gold-light, #e2b35b);
  transform: translateY(-2px);
}
.wa-link:hover {
  color: #25D366;
}
.footer-developer {
  text-align: center;
  padding: 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #0a0a0a;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
}
.dev-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #a1a1aa;
}
.dev-icon {
  color: var(--gold, #d4af37);
  animation: pulse 2s infinite;
}
.comp-link {
  color: var(--gold-light, #e2b35b);
  font-weight: 500;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
.comp-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--gold-light, #e2b35b);
  transition: width 0.3s ease;
}
.comp-link:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(226, 179, 91, 0.4);
}
.comp-link:hover::after {
  width: 100%;
  background-color: #fff;
}