:root {
  --bg: #f6f1e8;
  --bg-soft: #fdfaf5;
  --surface: #fffdf9;
  --surface-2: #efe3cc;
  --text: #161616;
  --muted: #5f5d56;
  --primary: #0f1f35;
  --primary-2: #203b5f;
  --gold: #b89255;
  --gold-soft: #f1debb;
  --border: rgba(15, 31, 53, 0.12);
  --shadow: 0 24px 60px rgba(15, 31, 53, 0.14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 15px 24px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #0f1f35, #294669);
  color: #fff;
  box-shadow: 0 14px 36px rgba(15, 31, 53, 0.28);
}

.btn-secondary {
  background: linear-gradient(135deg, #fffdf9, #efe5ce);
  border-color: rgba(15, 31, 53, 0.15);
  color: var(--primary);
}

.btn-small {
  padding: 10px 16px;
}

.btn-full {
  width: 100%;
}

.hero {
  padding: 70px 0 50px;
  background:
    linear-gradient(135deg, rgba(15, 31, 53, 0.45), rgba(15, 31, 53, 0.62)),
    url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.hero-copy {
  color: #fff;
  padding: 14px 0;
}

.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  margin-bottom: 12px;
}

.hero-copy h1,
.section-heading h2,
.investment-grid h2,
.contact-section h2,
.agency-grid h2 {
  margin: 0 0 14px;
  line-height: 1.1;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-family: 'Cormorant Garamond', serif;
  color: #fff7e9;
}

.hero-copy p,
.agency-grid p,
.section-heading p,
.property-body p,
.feature-card p,
.why-card p,
.testimonial-card p,
.investment-grid p,
.faq-list p,
.site-footer p {
  color: var(--muted);
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 20px;
}

.reassurance-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reassurance-bar span {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 0.92rem;
  color: #fff;
}

.trust-band {
  background: #10243f;
  color: #fefaf3;
  padding: 24px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-item {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.trust-item strong {
  display: block;
  font-size: 1.1rem;
  color: #f1d9ac;
}

.trust-item span {
  color: #f6ede1;
  font-size: 0.95rem;
}

.hero-visual-wrap {
  position: relative;
}

.hero-visual-card {
  position: relative;
  padding: 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-visual {
  min-height: 500px;
  border-radius: 22px;
  background:
    linear-gradient(rgba(13, 19, 33, 0.1), rgba(13, 19, 33, 0.25)),
    url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  right: -10px;
  bottom: 20px;
  background: var(--surface);
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.floating-card strong {
  display: block;
  color: var(--primary);
}

.floating-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: 78px 0;
}

.section-alt {
  background: #f7f3ec;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.center-heading {
  margin: 0 auto 28px;
  text-align: center;
}

.agency-grid,
.investment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.stats-grid,
.feature-grid,
.why-grid,
.property-grid,
.testimonial-grid {
  display: grid;
  gap: 22px;
}

.stats-grid,
.feature-grid,
.why-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card,
.feature-card,
.why-card,
.property-card,
.testimonial-card,
.contact-form,
.investment-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card,
.feature-card,
.why-card,
.testimonial-card,
.investment-panel {
  padding: 24px;
}

.stat-card strong {
  display: block;
  font-size: 1.4rem;
  color: var(--primary);
}

.stat-card span {
  color: var(--muted);
}

.icon {
  font-size: 1.9rem;
  margin-bottom: 6px;
}

.property-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.property-card {
  overflow: hidden;
}

.property-image {
  min-height: 230px;
  background-size: cover;
  background-position: center;
}

.image-one { background: linear-gradient(rgba(15, 31, 53, 0.15), rgba(15, 31, 53, 0.15)), url('https://images.unsplash.com/photo-1613977257363-707ba9348227?auto=format&fit=crop&w=900&q=80') center/cover no-repeat; }
.image-two { background: linear-gradient(rgba(15, 31, 53, 0.15), rgba(15, 31, 53, 0.15)), url('https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=900&q=80') center/cover no-repeat; }
.image-three { background: linear-gradient(rgba(15, 31, 53, 0.15), rgba(15, 31, 53, 0.15)), url('https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?auto=format&fit=crop&w=900&q=80') center/cover no-repeat; }
.image-four { background: linear-gradient(rgba(15, 31, 53, 0.15), rgba(15, 31, 53, 0.15)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=900&q=80') center/cover no-repeat; }
.image-five { background: linear-gradient(rgba(15, 31, 53, 0.15), rgba(15, 31, 53, 0.15)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=900&q=80') center/cover no-repeat; }
.image-six { background: linear-gradient(rgba(15, 31, 53, 0.15), rgba(15, 31, 53, 0.15)), url('https://images.unsplash.com/photo-1460317442991-0ec209397118?auto=format&fit=crop&w=900&q=80') center/cover no-repeat; }
.image-seven { background: linear-gradient(rgba(15, 31, 53, 0.15), rgba(15, 31, 53, 0.15)), url('https://images.unsplash.com/photo-1451976426598-a7593bd6d0b2?auto=format&fit=crop&w=900&q=80') center/cover no-repeat; }

.property-body {
  padding: 20px;
}

.districts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.districts-grid span {
  background: #fff;
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--primary);
}

.investment-panel {
  display: grid;
  gap: 12px;
}

.investment-item {
  padding: 16px;
  border-radius: 16px;
  background: var(--bg-soft);
}

.investment-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.full-width {
  grid-column: 1 / -1;
}

label {
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(15, 31, 53, 0.18);
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(184, 146, 85, 0.38);
  border-color: var(--gold);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
  font-weight: 500;
}

.checkbox-row input {
  width: auto;
}

.contact-form {
  padding: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.form-message {
  min-height: 24px;
  margin-top: 14px;
  font-weight: 700;
}

.form-message.success {
  color: #0f7d53;
}

.form-message.error {
  color: #ae2d2d;
}

.faq-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 12px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.site-footer {
  background: #0d1727;
  color: #f4f4f4;
  padding: 52px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 10px;
  color: #dfe6f0;
}

.footer-logo {
  margin-bottom: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  background: linear-gradient(135deg, #25d366, #1ebc5d);
  color: #fff;
  font-weight: 800;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.4);
}

@media (max-width: 980px) {
  .hero-grid,
  .agency-grid,
  .investment-grid,
  .property-grid,
  .stats-grid,
  .feature-grid,
  .why-grid,
  .testimonial-grid,
  .faq-wrap,
  .footer-grid,
  .form-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 380px;
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 42px;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .btn-small {
    width: 100%;
  }

  .floating-card {
    position: static;
    margin-top: 12px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
  }
}
