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

:root {
  --bg: #0b0b0b;
  --bg-soft: #121212;
  --card: #171717;
  --gold: #c9a66b;
  --gold-light: #e4c58d;
  --text: #f5f0e7;
  --muted: #b9b2a6;
  --border: rgba(201, 166, 107, 0.16);
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.loaded {
  opacity: 1;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.dark-section {
  background: var(--bg-soft);
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

h1, h2, h3, h4, .brand-text {
  font-family: "Cormorant Garamond", serif;
}

h1 {
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.03;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  margin-bottom: 18px;
}

h3 {
  font-size: 28px;
}

p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn-gold {
  background: var(--gold);
  color: #111;
  border: 1px solid var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-2px);
}

.full-width {
  width: 100%;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.header:hover {
  background: rgba(11, 11, 11, 0.98);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 40px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

.brand-logo {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: all 0.3s ease;
}

.brand:hover .brand-logo {
  filter: drop-shadow(0 4px 12px rgba(201, 166, 107, 0.25));
}

.site-logo {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: 40px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--gold);
}

.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: linear-gradient(135deg, rgba(201, 166, 107, 0.15), rgba(201, 166, 107, 0.05));
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.call-icon {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
}

.call-btn:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 166, 107, 0.2);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  opacity: 0.7;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
  min-height: 95vh;
  display: flex;
  align-items: center;
  position: relative;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%),
    url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 166, 107, 0.12), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(201, 166, 107, 0.08), transparent 28%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  max-width: 760px;
}

.hero-text {
  max-width: 620px;
  font-size: 17px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-buttons .btn {
  position: relative;
  overflow: hidden;
}

.hero-buttons .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
  z-index: -1;
}

.hero-buttons .btn:hover::before {
  left: 100%;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-stats h3 {
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 2px;
}

.hero-stats p {
  font-size: 14px;
}

.hero-card {
  background: rgba(18, 18, 18, 0.95);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-card:hover {
  border-color: rgba(201, 166, 107, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 28px 50px rgba(201, 166, 107, 0.15);
}

.card-label {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-card-location {
  margin-top: 4px;
  margin-bottom: 18px;
}

.hero-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-card-meta span,
.property-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 13px;
  color: #ddd;
  background: rgba(255,255,255,0.03);
}

.hero-card-desc {
  margin-bottom: 20px;
}

.trust-bar {
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: #101010;
}

.trust-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  flex-wrap: wrap;
}

.trust-wrap span {
  color: var(--gold-light);
  font-size: 14px;
  letter-spacing: 1px;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: start;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.point-card,
.about-panel,
.service-card,
.contact-box,
.contact-form,
.property-card,
.cta-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
}

.point-card,
.service-card,
.contact-box {
  padding: 22px;
}

.point-card h4,
.contact-box h4 {
  color: var(--gold);
  margin-bottom: 8px;
  font-size: 22px;
}

.about-panel {
  padding: 28px;
}

.about-panel ul li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #ddd;
}

.about-panel ul li:last-child {
  border-bottom: none;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}

.property-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.property-card {
  overflow: hidden;
  transition: 0.3s ease;
}

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

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

.property-image-1 {
  background-image: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1200&q=80");
}

.property-image-2 {
  background-image: url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1200&q=80");
}

.property-image-3 {
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1200&q=80");
}

.property-content {
  padding: 22px;
}

.property-badge {
  display: inline-block;
  font-size: 12px;
  color: var(--gold-light);
  border: 1px solid rgba(201,166,107,0.25);
  background: rgba(201,166,107,0.08);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.property-location {
  margin: 8px 0 16px;
}

.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.property-link {
  color: var(--gold);
  font-weight: 600;
}

.service-card h3 {
  margin-bottom: 10px;
}

.cta-box {
  padding: 40px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(201,166,107,0.08), rgba(255,255,255,0.02));
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.contact-boxes {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.contact-form {
  padding: 26px;
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #101010;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(201,166,107,0.45);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.testimonial-card {
  padding: 26px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(201,166,107,0.3);
  background: rgba(23, 23, 23, 0.8);
  transform: translateY(-4px);
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: var(--text);
  font-style: italic;
}

.testimonial-author h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 4px;
}

.testimonial-author p {
  color: var(--gold);
  font-size: 13px;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 42px;
}

.team-card {
  text-align: center;
  transition: all 0.3s ease;
}

.team-image {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(201,166,107,0.2), rgba(201,166,107,0.1));
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  object-fit: cover;
}

.team-image-1 {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.team-image-2 {
  background: linear-gradient(135deg, #1f1f1f, #2f2f2f);
}

.team-image-3 {
  background: linear-gradient(135deg, #1d1d1d, #2d2d2d);
}

.team-card:hover .team-image {
  border-color: rgba(201,166,107,0.4);
  transform: scale(1.02);
}

.team-card h3 {
  color: var(--white);
  margin-bottom: 4px;
}

.team-role {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.team-link {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.team-link:hover {
  background: var(--gold);
  color: var(--bg);
}

/* Market Insights */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.insight-card {
  padding: 28px;
  text-align: center;
  background: rgba(201, 166, 107, 0.05);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.insight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(201,166,107,0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.insight-card:hover {
  border-color: rgba(201,166,107,0.4);
  transform: translateY(-6px);
}

.insight-card:hover::before {
  opacity: 1;
}

.insight-number {
  font-size: clamp(36px, 8vw, 52px);
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1;
}

.insight-label {
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.insight-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.footer {
  background: #080808;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 36px;
}

.footer-text {
  margin-top: 14px;
  max-width: 320px;
}

.footer h4 {
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 24px;
}

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

.footer-links a {
  color: var(--muted);
}

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

.footer-bottom {
  text-align: center;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: #888;
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  background: #25d366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.35);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

@media (max-width: 992px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .property-grid,
  .services-grid,
  .footer-grid,
  .about-points,
  .testimonials-grid,
  .team-grid,
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    gap: 20px;
    min-height: 60px;
    padding: 10px 0;
  }

  .nav-menu {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-radius: 0;
  }

  .nav-menu.active {
    display: flex;
    animation: slideDown 0.3s ease;
  }

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

  .nav-link {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--muted);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    background: rgba(201, 166, 107, 0.08);
    color: var(--gold);
  }

  .brand-logo {
    height: 40px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hide-mobile {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 80px 0;
  }

  .trust-wrap {
    justify-content: center;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}