.elementor-7 .elementor-element.elementor-element-67da44a{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;z-index:0;}.elementor-7 .elementor-element.elementor-element-aa0d745 > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;padding:0px 0px 0px 0px;}.elementor-7 .elementor-element.elementor-element-2c9c11b{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-2c9c11b *//* ---------- Tokens ---------- */
:root {
  --navy: #1B2A3D;
  --navy-light: #2C4258;
  --ivory: #FAF7F1;
  --gold: #B08D57;
  --charcoal: #2B2B2B;
  --grey: #6E6E6E;
  --border: #E4DFD5;
  --radius: 6px;
  --font-display: "Fraunces", serif;
  --font-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0 0 0.5em;
  color: var(--navy);
}

p {
  margin: 0 0 1em;
  color: var(--grey);
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

section {
  padding: 90px 8%;
}

.section-heading {
  max-width: 560px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2 {
  font-size: 2rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--ivory);
}

.btn-primary:hover {
  background: #9a7847;
}

.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
  width: 100%;
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--ivory);
}

.btn-large {
  padding: 16px 42px;
  font-size: 1.05rem;
}

.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 0 8%;
  background: linear-gradient(rgba(27,42,61,0.55), rgba(27,42,61,0.55)),
              url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1600&q=80') center/cover no-repeat;
}

.hero-content {
  position: relative;
  max-width: 640px;
  color: #fff;
}

.hero-content h1 {
  color: #fff;
  font-size: 2.8rem;
  line-height: 1.15;
}

.hero-content > p {
  color: #E9E4D8;
  font-size: 1.1rem;
  max-width: 480px;
}

.search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  margin-top: 24px;
  align-items: flex-end;
}

.search-field {
  display: flex;
  flex-direction: column;
  flex: 1 1 150px;
}

.search-field label {
  font-size: 0.78rem;
  color: var(--grey);
  margin-bottom: 6px;
}

.search-field input,
.search-field select {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
}

.search-status {
  margin-top: 12px;
  color: #fff;
  font-size: 0.9rem;
}

/* ---------- Properties ---------- */
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.property-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.property-image {
  height: 210px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.property-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy);
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
}

.property-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.property-price {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
}

.property-body h3 {
  font-size: 1.15rem;
  margin: 0;
}

.property-address {
  color: var(--grey);
  font-size: 0.9rem;
  margin: 0;
}

.property-specs {
  display: flex;
  gap: 14px;
  color: var(--grey);
  font-size: 0.85rem;
  margin: 6px 0 14px;
}

.property-specs li::after {
  content: none;
}

.no-results {
  text-align: center;
  margin-top: 32px;
  color: var(--grey);
}

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: #fff;
}

.about-image {
  height: 420px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
}

.about-text h2 {
  font-size: 2rem;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  text-align: center;
  padding: 34px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 1.1rem;
}

.service-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* ---------- Stats ---------- */
.stats {
  background: var(--navy);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 24px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold);
  margin: 0;
}

.stat-label {
  color: #D8DEE6;
  font-size: 0.95rem;
  margin: 6px 0 0;
}

/* ---------- Testimonials ---------- */
.testimonial-slider {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.testimonial-track {
  overflow: hidden;
  position: relative;
  flex: 1;
  min-height: 170px;
}

.testimonial-card {
  display: none;
  text-align: center;
  padding: 10px 20px;
}

.testimonial-card.active {
  display: block;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  font-style: italic;
}

.testimonial-name {
  font-weight: 600;
  color: var(--charcoal);
  margin: 0;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--grey);
  margin: 0;
}

.slider-arrow {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
}

.slider-arrow:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  border: none;
  padding: 0;
}

.dot.active {
  background: var(--gold);
}

/* ---------- CTA ---------- */
.cta {
  background: var(--gold);
  text-align: center;
  color: #fff;
}

.cta h2 {
  color: #fff;
}

.cta p {
  color: #FBF3E7;
}

.cta .btn-primary {
  background: var(--navy);
}

.cta .btn-primary:hover {
  background: var(--navy-light);
}

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: #fff;
}

.contact-details li {
  margin-bottom: 10px;
  color: var(--grey);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-size: 0.85rem;
  color: var(--charcoal);
}

.form-row input,
.form-row textarea {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--gold);
}

.error-message {
  color: #B3361C;
  font-size: 0.8rem;
  min-height: 1em;
}

.form-success {
  color: #2E7D4F;
  font-weight: 600;
}

/* ---------- Modal ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(27,42,61,0.6);
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: #fff;
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--charcoal);
  line-height: 1;
}

.modal-image {
  height: 260px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius) var(--radius) 0 0;
}

.modal-body {
  padding: 24px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: #D8DEE6;
  padding: 60px 8% 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand h3 {
  color: #fff;
  font-size: 1.3rem;
}

.footer-links h4,
.footer-social h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: #D8DEE6;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border: 1px solid #445A70;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.social-icons a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid #33475D;
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .property-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }
  .about,
  .contact {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  section {
    padding: 60px 6%;
  }
  .hero-content h1 {
    font-size: 2.1rem;
  }
  .property-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  .search-bar {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}/* End custom CSS */