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

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-bg: #d2c6b5;
  --color-text: #2c2c2c;
  --color-muted: #5a5347;
  --color-accent: #1a1a1a;
  --color-accent-hover: #0d0d0d;
  --color-light: #f5f0eb;
  --color-border: #b8aa96;
  --color-card: #f5f0eb;
  --color-beige: #d2c6b5;
  --color-gold: #b8952e;
  --color-gold-light: rgba(184,149,46,0.2);
  --color-dark: #2c2c2c;
  --color-white: #fff;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --max-width: 1140px;
  --radius: 8px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 36px rgba(0,0,0,.15);
  --transition: .3s ease;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold) var(--color-light);
}

html::-webkit-scrollbar {
  width: 8px;
}

html::-webkit-scrollbar-track {
  background: var(--color-light);
}

html::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 4px;
}

html::-webkit-scrollbar-thumb:hover {
  background: #a07d22;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 16px;
}

::selection {
  background: var(--color-gold);
  color: var(--color-white);
}

img { max-width: 100%; display: block; }

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--color-accent-hover); }

.container { width: 90%; max-width: var(--max-width); margin: 0 auto; }

/* ===== HEADER / NAV ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-gold-light);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

nav a {
  color: var(--color-text);
  font-size: .95rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  letter-spacing: 0.5px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition);
}

nav a:hover, nav a.active {
  color: var(--color-gold);
}

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

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  padding: 6rem 0;
  background: linear-gradient(135deg, #f5f0eb 0%, #e8dcd0 50%, #d2c6b5 100%);
  background-attachment: fixed;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* decorative hero lines removed */

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
  color: var(--color-accent);
}

.hero p {
  font-size: 1.2rem;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 1rem 2.25rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: .9rem;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(184,149,46,.25);
}

.btn-primary:hover {
  background: #a07d22;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184,149,46,.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn-outline:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
section {
  padding: 6rem 0;
}

section:nth-child(even) {
  background: var(--color-light);
}

.section-label {
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: .15em;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -.01em;
  color: var(--color-accent);
  position: relative;
  padding-bottom: 1.5rem;
}

.section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--color-gold);
}

.section-subtitle {
  color: var(--color-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.section-header {
  text-align: center;
}

.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ===== CARD GRID ===== */
.grid {
  display: grid;
  gap: 2.5rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--color-card);
  border-radius: var(--radius);
  padding: 2.25rem;
  border: 1px solid var(--color-border);
  border-top: 3px solid transparent;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-top-color: var(--color-gold);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(184,149,46,.2);
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: .75rem;
  color: var(--color-accent);
}

.card p {
  color: var(--color-muted);
  font-size: .95rem;
  line-height: 1.7;
}

/* ===== STATS ===== */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  padding: 4rem 0;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-gold);
}

.stat-label {
  font-size: .95rem;
  color: var(--color-muted);
  margin-top: .5rem;
  letter-spacing: 0.5px;
}

/* ===== TEAM ===== */
.team-card {
  text-align: center;
}

.team-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d2c6b5, #b8aa96);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(0,0,0,.1);
  border: 3px solid var(--color-gold);
}

.team-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: .35rem;
  color: var(--color-accent);
}

.team-card .role {
  font-size: .9rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== CONTACT FORM ===== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--color-accent);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .95rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: .95rem;
  transition: all var(--transition);
  background: var(--color-white);
  color: var(--color-text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(184,149,46,.15);
}

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

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(184,149,46,.25);
}

.contact-info-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: .25rem;
  color: var(--color-accent);
}

.contact-info-item p {
  color: var(--color-muted);
  font-size: .9rem;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: var(--color-white);
  text-align: center;
  padding: 5rem 0;
}

.cta-band h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.cta-band p {
  opacity: .9;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.cta-band .btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
}

.cta-band .btn-primary:hover {
  background: #a07d22;
}

/* ===== FOOTER ===== */
footer {
  background: #1a1a1a;
  color: #8a8470;
  padding: 3.5rem 0 2rem;
  font-size: .9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer-col a {
  color: #8a8470;
  display: block;
  margin-bottom: .75rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid var(--color-gold-light);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .85rem;
}

/* ===== HERO LOGO (home page) ===== */
.hero-logo {
  margin: 0 auto 2.5rem;
  animation: fadeInDown 0.8s ease-out;
}

.hero-logo img {
  height: 200px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.1));
}

/* ===== LOCATION CARDS ===== */
.location-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.location-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,.85) 0%, rgba(26,26,26,.15) 70%);
}

.location-card-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem;
  color: var(--color-white);
  width: 100%;
}

.location-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: .5rem;
  font-weight: 600;
}

.location-card-content p {
  opacity: .85;
  font-size: .95rem;
  font-weight: 300;
}

.location-card-content .btn {
  margin-top: 1.5rem;
}

/* ===== LOCATION PAGE HERO ===== */
.location-hero {
  padding: 6rem 0 5rem;
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
  color: var(--color-white);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,.65);
}

.location-hero .container {
  position: relative;
  z-index: 1;
}

.location-hero h1 {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.location-hero p {
  color: rgba(255,255,255,.85);
  font-weight: 300;
}

.location-hero .section-label {
  color: rgba(184,149,46,.9);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--color-bg);
}

.testimonial-card {
  background: var(--color-card);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

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

.testimonial-quote-mark {
  font-size: 3.5rem;
  color: var(--color-gold);
  opacity: .4;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
  font-weight: 700;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-weight: 400;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: .35rem;
  font-size: 1.05rem;
}

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

/* ===== FEATURED PROPERTIES ===== */
.featured-properties {
  background: var(--color-light);
}

.property-card {
  background: var(--color-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.property-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.property-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 320px;
  background: linear-gradient(135deg, #d2c6b5, #b8aa96);
}

.property-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.property-card:hover .property-image-wrapper img {
  transform: scale(1.08);
}

.property-image-wrapper::after {
  content: 'View Property';
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 600;
  opacity: 0;
  transition: opacity var(--transition);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.property-card:hover .property-image-wrapper::after {
  opacity: 1;
}

.property-price-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--color-gold);
  color: var(--color-white);
  padding: .85rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(184,149,46,.3);
}

.property-details {
  padding: 2rem;
}

.property-address {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: .75rem;
}

.property-location {
  font-size: .9rem;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
}

.property-specs {
  display: flex;
  gap: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-gold-light);
  font-size: .9rem;
}

.property-spec {
  display: flex;
  flex-direction: column;
}

.property-spec-value {
  font-weight: 700;
  color: var(--color-gold);
  font-size: 1.1rem;
}

.property-spec-label {
  color: var(--color-muted);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: .25rem;
}

/* ===== NEWSLETTER / CTA SECTION ===== */
.newsletter {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: var(--color-white);
  padding: 4.5rem 0;
}

.newsletter-content {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.newsletter h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.newsletter p {
  opacity: .9;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  font-weight: 300;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: .95rem;
  transition: all var(--transition);
}

.newsletter-form input::placeholder {
  color: #b0a89f;
}

.newsletter-form input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(184,149,46,.3);
}

.newsletter-form .btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
  border: none;
  padding: 1rem 2rem;
  cursor: pointer;
  white-space: nowrap;
}

.newsletter-form .btn-primary:hover {
  background: #a07d22;
  transform: translateY(-2px);
}

/* ===== TRUST BADGES ===== */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
  padding: 3rem 0;
}

.badge {
  text-align: center;
  transition: all var(--transition);
}

.badge:hover {
  transform: translateY(-4px);
}

.badge-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  color: var(--color-white);
  box-shadow: 0 6px 16px rgba(184,149,46,.3);
}

.badge-text {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 600;
  color: var(--color-accent);
}

.badge-subtext {
  font-size: .8rem;
  color: var(--color-muted);
  margin-top: .35rem;
}

/* ===== LIFESTYLE SECTION ===== */
.lifestyle-block {
  position: relative;
  overflow: hidden;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.lifestyle-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,.6) 0%, rgba(26,26,26,.4) 100%);
}

.lifestyle-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  padding: 3rem;
  max-width: 650px;
}

.lifestyle-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.lifestyle-content p {
  font-size: 1.1rem;
  opacity: .9;
  line-height: 1.8;
  font-weight: 300;
}

/* ===== SMOOTH SCROLL FADE-IN ANIMATION ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes shimmer {
  0% {
    box-shadow: 0 0 0 rgba(184,149,46,.5);
  }
  50% {
    box-shadow: 0 0 15px rgba(184,149,46,.3);
  }
  100% {
    box-shadow: 0 0 0 rgba(184,149,46,.5);
  }
}

.fade-in {
  animation: fadeInUp 0.7s ease-out forwards;
  opacity: 0;
}

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

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }

/* ===== PROPERTY SEARCH BAR ===== */
.property-search {
  background: var(--color-card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.search-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  align-items: flex-end;
}

.search-group {
  display: flex;
  flex-direction: column;
}

.search-group label {
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: .6rem;
  color: var(--color-accent);
}

.search-group input,
.search-group select {
  padding: .95rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  font-family: var(--font-main);
  font-size: .95rem;
  color: var(--color-text);
  transition: all var(--transition);
}

.search-group input:focus,
.search-group select:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(184,149,46,.15);
}

.search-form .btn-primary {
  width: 100%;
  padding: .95rem 2rem;
}

/* ===== IMAGE GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  background: linear-gradient(135deg, #d2c6b5, #b8aa96);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.gallery-item:hover {
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,.5);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay-text {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  font-family: var(--font-heading);
}

/* ===== HERO EXTRAS ===== */
.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  animation: bounceDown 2s ease infinite;
}

.scroll-indicator svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .6; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

/* ===== ABOUT PREVIEW (homepage) ===== */
.about-preview {
  background: var(--color-bg);
  padding: 6rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
}

.about-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--color-accent);
}

.about-content p {
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.stat-item { text-align: center; }

.stat-item-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-gold);
}

.stat-item-label {
  font-size: .8rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: .25rem;
}

/* ===== TESTIMONIAL STARS ===== */
.testimonial-stars {
  color: var(--color-gold);
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: .75rem;
}

/* ===== LOCATIONS PREVIEW ===== */
.locations-preview {
  padding: 6rem 0;
  background: var(--color-light);
}

/* ===== SERVICE CARDS ===== */
.services-section {
  background: var(--color-bg);
  padding: 6rem 0;
}

.service-card {
  background: var(--color-card);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--color-gold-light);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: block;
}

.service-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .75rem;
  color: var(--color-accent);
}

.service-card p {
  color: var(--color-muted);
  font-size: .95rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.service-link {
  color: var(--color-gold);
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition);
}

.service-link:hover {
  color: #a07d22;
}

/* ===== CREDENTIALS SECTION ===== */
.credentials-section {
  background: var(--color-light);
  padding: 6rem 0;
}

/* ===== VIEW ALL LINK ===== */
.view-all-link {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--transition);
}

.view-all-link:hover {
  color: #a07d22;
}

/* ===== NAV LINK (explicit) ===== */
.nav-link {
  color: var(--color-muted);
  font-size: .95rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .scroll-indicator {
    display: none;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-light);
    padding: 1.5rem 5%;
    border-bottom: 1px solid var(--color-gold-light);
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
  }

  nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 4rem 0 3rem;
    height: auto;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  section {
    padding: 4rem 0;
  }

  .stats {
    gap: 2.5rem;
    padding: 2.5rem 0;
  }

  .trust-badges {
    gap: 2rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .search-form {
    grid-template-columns: 1fr;
  }

  .search-form .btn-primary {
    width: 100%;
  }

  .property-specs {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .hero-logo img {
    height: 140px;
  }

  .section-title {
    padding-bottom: 1rem;
  }

  .section-title::before {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .trust-badges {
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .location-card-content {
    padding: 1.75rem;
  }

  .property-card {
    margin-bottom: 1.5rem;
  }
}
