:root {
  --navy: #0B1D3A;
  --navy-light: #122447;
  --gold: #C9A84C;
  --gold-light: #E8C96E;
  --gold-bg: rgba(201, 168, 76, 0.08);
  --white: #fff;
  --text: #1a1a2e;
  --muted: #64748b;
  --border: rgba(0, 0, 0, 0.08);
  --surface: #f8f7f4;
  --radius: 12px;
  --radius-lg: 18px;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: var(--text);
  overflow-x: hidden
}

h1,
h2,
h3,
.display {
  font-family: 'Playfair Display', serif
}

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

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  font-size: 12.5px;
  padding: 8px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a {
  color: var(--gold);
  transition: opacity .2s
}

.top-bar a:hover {
  opacity: .75
}

.top-left,
.top-right {
  display: flex;
  align-items: center;
  gap: 20px
}

.top-bar i {
  vertical-align: -2px;
  margin-right: 5px;
  font-size: 13px
}

/* ===== NAVBAR ===== */
nav {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.3px
}

.logo-text span {
  color: var(--gold)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px
}

.nav-btn {
  background: none;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  border-radius: 8px;
  transition: all .2s;
  white-space: nowrap;
}

.nav-btn:hover {
  color: var(--navy);
  background: var(--surface)
}

.nav-btn.active {
  color: var(--navy);
  font-weight: 500
}

.nav-cta {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 9px 20px;
  font-size: 14px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--navy)
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px
}

.call-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-bg);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 10px;
  padding: 7px 14px;
}

.call-chip i {
  color: var(--gold);
  font-size: 18px
}

.call-chip small {
  display: block;
  font-size: 11px;
  color: var(--muted)
}

.call-chip strong {
  display: block;
  font-size: 13px;
  color: var(--navy)
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: var(--navy)
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 12px 20px 16px;
  flex-direction: column;
  gap: 2px;
  z-index: 999;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.mobile-menu.open {
  display: flex
}

/* ===== SECTIONS ===== */
.section {
  display: none
}

.section.active {
  display: block
}

/* ===== HERO CAROUSEL ===== */
.carousel-wrap {
  position: relative;
  overflow: hidden;
  height: 540px;
  background: var(--navy)
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .9s ease;
  pointer-events: none;
  overflow: hidden;
}

.slide.active {
  opacity: 1;
  pointer-events: all;
}

/* Background container */
.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Actual image */
.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;

  /* premium zoom effect */
  animation: heroZoom 12s ease-in-out infinite alternate;
}

/* Overlay */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, .45),
      rgba(0, 0, 0, .65));
  z-index: 1;
}

/* Content */
.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  padding: 0 24px;
  color: #fff;
}

/* Tag animation */
.slide-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;

  opacity: 0;
  transform: translateY(18px);

  transition:
    opacity .6s .25s ease,
    transform .6s .25s ease;
}

.slide.active .slide-tag {
  opacity: 1;
  transform: translateY(0);
}

/* Premium background movement */
@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 600;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s .4s ease, transform .6s .4s ease;
}

.slide.active .slide-title {
  opacity: 1;
  transform: translateY(0)
}

.slide-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s .55s ease, transform .6s .55s ease;
}

.slide.active .slide-desc {
  opacity: 1;
  transform: translateY(0)
}

.slide-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s .7s ease, transform .6s .7s ease;
}

.slide.active .slide-btns {
  opacity: 1;
  transform: translateY(0)
}

.slide-btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 10px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .2s, transform .15s;
}

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

.slide-btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .5);
  border-radius: 10px;
  padding: 13px 28px;
  font-size: 15px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: border-color .2s, background .2s;
}

.slide-btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .1)
}

/* Slide Backgrounds (SVG-based skylines) */
.slide:nth-child(1) .slide-bg {
  background: linear-gradient(160deg, #04192e 0%, #0d2d52 60%, #0e3968 100%)
}

.slide:nth-child(2) .slide-bg {
  background: linear-gradient(160deg, #071b14 0%, #0d3b2a 60%, #0f4a35 100%)
}

.slide:nth-child(3) .slide-bg {
  background: linear-gradient(160deg, #1c1000 0%, #3d2500 60%, #4a2e00 100%)
}

.slide:nth-child(4) .slide-bg {
  background: linear-gradient(160deg, #150a1a 0%, #2d1040 60%, #381255 100%)
}

.slide:nth-child(1) .slide-overlay {
  background: linear-gradient(to top, rgba(4, 25, 46, .95) 0%, rgba(4, 25, 46, .55) 50%, rgba(4, 25, 46, .2) 100%)
}

.slide:nth-child(2) .slide-overlay {
  background: linear-gradient(to top, rgba(7, 27, 20, .92) 0%, rgba(7, 27, 20, .5) 50%, rgba(7, 27, 20, .15) 100%)
}

.slide:nth-child(3) .slide-overlay {
  background: linear-gradient(to top, rgba(28, 16, 0, .92) 0%, rgba(28, 16, 0, .5) 50%, rgba(28, 16, 0, .15) 100%)
}

.slide:nth-child(4) .slide-overlay {
  background: linear-gradient(to top, rgba(21, 10, 26, .92) 0%, rgba(21, 10, 26, .5) 50%, rgba(21, 10, 26, .15) 100%)
}

.skyline-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: .22;
  width: 100%
}

/* Carousel Controls */
.carousel-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: all .35s;
  border: none;
  padding: 0;
}

.dot.active {
  background: var(--gold);
  width: 26px;
  border-radius: 4px
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  backdrop-filter: blur(8px);
}

.carousel-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy)
}

.carousel-arrow.left {
  left: 20px
}

.carousel-arrow.right {
  right: 20px
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--navy);
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 22px 48px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.stat:last-child {
  border-right: none
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold)
}

.stat-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  margin-top: 4px;
  letter-spacing: .5px
}

/* ===== SECTION HEADERS ===== */
.sec-head {
  text-align: center;
  padding: 60px 24px 40px
}

.sec-tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px
}

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px
}

.sec-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7
}

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 48px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .3s;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(11, 29, 58, .08);
  border-color: rgba(201, 168, 76, .3)
}

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

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(201, 168, 76, .2);
  transition: background .3s;
}

.benefit-card:hover .benefit-icon {
  background: var(--gold);
  border-color: var(--gold)
}

.benefit-icon i {
  font-size: 26px;
  color: var(--gold);
  transition: color .3s
}

.benefit-card:hover .benefit-icon i {
  color: var(--navy)
}

.benefit-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px
}

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

/* ===== ABOUT ===== */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 60px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
}

.about-visual {
  border-radius: 20px;
  overflow: hidden;
  height: 440px;
  width: 660px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.building-visual {
  width: 100%;
  height: 100%;
  position: relative
}

.about-tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 18px
}

.about-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 24px
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text)
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-bg);
  border: 1px solid rgba(201, 168, 76, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon i {
  font-size: 13px;
  color: var(--gold)
}

.about-cta {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-cta:hover {
  background: var(--gold);
  color: var(--navy)
}

/* ===== SERVICES ===== */
.services-section {
  background: var(--surface)
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 48px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.svc-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, .06);
  transition: all .3s;
  cursor: pointer;
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(11, 29, 58, .1);
  border-color: rgba(201, 168, 76, .25)
}

.svc-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: rgba(201, 168, 76, .2);
  line-height: 1;
  margin-bottom: 16px
}

.svc-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px
}

.svc-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px
}

.svc-link {
  font-size: 13px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500
}

/* ===== PROPERTIES ===== */
.prop-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
  padding: 0 24px
}

.filter-btn {
  padding: 8px 20px;
  font-size: 13px;
  border: 1.5px solid rgba(0, 0, 0, .1);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  color: var(--muted);
  transition: all .2s;
}

.filter-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  font-weight: 500
}

.filter-btn:hover:not(.active) {
  border-color: var(--navy);
  color: var(--navy)
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 0 48px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.prop-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all .3s;
}

.prop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(11, 29, 58, .1);
  border-color: rgba(201, 168, 76, .3)
}

.prop-img {
  height: 300px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 14px;
}

.prop-badge {
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 6px;
  font-weight: 500;
  background: var(--gold);
  color: var(--navy);
}

.prop-save {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--muted);
  transition: all .2s;
  border: none;
}

.prop-save:hover {
  color: var(--gold);
  background: #fff
}

.prop-body {
  padding: 18px
}

.prop-type {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px
}

.prop-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px
}

.prop-loc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 5px
}

.prop-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 14px
}

.prop-price {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy)
}

.prop-price span {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted)
}

.prop-meta {
  display: flex;
  gap: 14px;
  margin-top: 10px
}

.prop-meta span {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px
}

.prop-meta i {
  font-size: 14px;
  color: var(--gold)
}

/* Prop card gradients */
.prop-img-1 {
  background: linear-gradient(135deg, #0B1D3A, #1a3a6e)
}

.prop-img-2 {
  background: linear-gradient(135deg, #071b14, #0d3b2a)
}

.prop-img-3 {
  background: linear-gradient(135deg, #3d2500, #6b3c00)
}

.prop-img-4 {
  background: linear-gradient(135deg, #150a1a, #2d1040)
}

.prop-img-5 {
  background: url(/images//properties/m3m-ifc.webp);
  background-size: cover;
}

.prop-img-6 {
  background: linear-gradient(135deg, #0a1a2e, #0e2a4a)
}

/* ===== TESTIMONIALS ===== */
.testi-section {
  background: var(--navy);
  padding: 60px 0;
  overflow: hidden
}

.testi-sec-head {
  text-align: center;
  padding: 0 24px 40px
}

.testi-sec-head .sec-tag {
  color: var(--gold)
}

.testi-sec-head .sec-title {
  color: #fff
}

.testi-sec-head .sec-sub {
  color: rgba(255, 255, 255, .55)
}

.marquee-outer {
  margin-top: 10px;
  overflow: hidden;
  position: relative
}

/* SLIDER */
.clients-slider {
  margin-top: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* TRACK */
.clients-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 30s linear infinite;
}

/* REVERSE */
.clients-slider.reverse .clients-track {
  animation: scrollRight 30s linear infinite;
}
/* CARD */
.client-card {
  width: 220px;
  height: 140px;
  background: white;
  border-radius: 24px;
  margin: 0 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.08),
    0 3px 8px rgba(0,0,0,0.05);

  transition: 0.4s ease;
  flex-shrink: 0;
}

/* IMAGE */
.client-card img {
  max-width: 140px;
  max-height: 100px;
  object-fit: cover;
  filter: grayscale(0%);
  transition: 0.4s;
}

/* HOVER */
.client-card:hover {
  transform: translateY(-10px) scale(1.03);
}

.client-card:hover img {
  transform: scale(1.08);
}
/* ANIMATION */
@keyframes scrollLeft {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
      transform: translateX(-50%);
  }
  100% {
      transform: translateX(0);
  }
}

.marquee-outer::before,
.marquee-outer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--navy), transparent)
}

.marquee-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--navy), transparent)
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.testi-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 320px;
  flex-shrink: 0;
  transition: border-color .3s;
}

.testi-card:hover {
  border-color: rgba(201, 168, 76, .4)
}

.testi-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 14px
}

.testi-text {
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.8;
  margin-bottom: 18px;
  font-style: italic
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-bg);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  flex-shrink: 0;
}

.testi-name {
  font-size: 14px;
  font-weight: 500;
  color: #fff
}

.testi-role {
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  margin-top: 2px
}

/* ===== CONTACT ===== */
.contact-hero {
  background: linear-gradient(160deg, var(--navy) 0%, #122447 100%);
  padding: 52px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(201, 168, 76, .05);
}

.contact-hero-tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px
}

.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px
}

.contact-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, .6)
}

.breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  margin-top: 16px
}

.breadcrumb span {
  color: var(--gold)
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding: 52px 60px;
  max-width: 1050px;
  margin: 0 auto;
}

.form-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 20px;
  padding: 36px;
}

.form-tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px
}

.form-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px
}

.form-group label {
  font-size: 13px;
  color: var(--navy);
  font-weight: 500
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid rgba(0, 0, 0, .08);
  border-radius: 10px;
  font-size: 14px;
  background: #f8f7f4;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: all .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, .1);
}

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

.submit-btn {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  width: 100%;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.submit-btn:hover {
  background: var(--gold);
  color: var(--navy)
}

.submit-btn:disabled {
  opacity: .6;
  cursor: not-allowed
}

.form-msg {
  font-size: 14px;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  display: none
}

.form-msg.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  display: block
}

.form-msg.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
  display: block
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.info-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color .2s;
}

.info-card:hover {
  border-color: rgba(201, 168, 76, .3)
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-bg);
  border: 1px solid rgba(201, 168, 76, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 20px;
  color: var(--gold)
}

.info-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px
}

.info-val {
  font-size: 14px;
  color: var(--navy);
  line-height: 1.7;
  font-weight: 500
}

.map-preview {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .06);
  height: 160px;
  background: linear-gradient(135deg, #e8f4fd, #c8e4f8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  flex-direction: column;
  gap: 8px;
}

.map-preview i {
  font-size: 30px;
  color: var(--gold)
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .6);
  padding: 56px 60px 28px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px
}

.footer-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff
}

.footer-logo-text span {
  color: var(--gold)
}

.footer-desc {
  font-size: 13px;
  line-height: 1.85;
  margin-bottom: 20px;
  max-width: 240px
}

.social-row {
  display: flex;
  gap: 10px
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
  border: none;
}

.social-btn:hover {
  background: var(--gold);
  color: var(--navy)
}

.footer-heading {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px
}

.footer-links li {
  font-size: 13px;
  cursor: pointer;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px
}

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

.footer-links li i {
  font-size: 12px;
  color: var(--gold)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
}

.footer-bottom a {
  color: var(--gold)
}

.footer-bottom-links {
  display: flex;
  gap: 20px
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
  .top-bar {
    display: none
  }

  nav {
    padding: 0 20px
  }

  .nav-links,
  .call-chip,
  .nav-cta {
    display: none
  }

  .hamburger {
    display: block
  }

  .carousel-wrap {
    height: 440px
  }

  .slide-title {
    font-size: 30px
  }

  .stats-bar {
    gap: 0
  }

  .stat {
    padding: 18px 24px;
    flex: 1 1 120px
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px 40px;
    gap: 14px
  }

  .about-wrap {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 28px
  }

  .about-visual {
    height: 260px
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px 40px
  }

  .properties-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px 40px
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    padding: 28px 20px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px
  }

  footer {
    padding: 40px 24px 24px
  }
}

@media(max-width:560px) {
  .carousel-wrap {
    height: 380px
  }

  .slide-title {
    font-size: 24px
  }

  .slide-desc {
    font-size: 14px
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .services-grid {
    grid-template-columns: 1fr;
    padding: 0 20px 40px
  }

  .properties-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .sec-title {
    font-size: 26px
  }

  .stat {
    flex: 1 1 100px
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 16px
  }
}