:root {
  --primary-color: #b48430; /* Brownish Gold */
  --primary-hover: #9c7126;
  --secondary-color: #2c3e50; /* Dark Blue/Gray */
  --text-dark: #333333;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  --box-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--bg-light);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--secondary-color);
}

/* Typography & Utilities */
.text-primary {
  color: var(--primary-color) !important;
}
.bg-primary {
  background-color: var(--primary-color) !important;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  transition: var(--transition);
}
.btn-primary:hover, .btn-primary:focus {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(180, 132, 48, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Header */
.site-header {
  z-index: 1050;
  transition: var(--transition);
}
.header-topbar {
  background: var(--white);
  font-size: 0.875rem;
}
.topbar-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.topbar-link:hover {
  color: var(--primary-color);
}
.topbar-social {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--secondary-color);
  background: rgba(180, 132, 48, 0.08);
  text-decoration: none;
  transition: var(--transition);
}
.topbar-social:hover {
  background: rgba(180, 132, 48, 0.18);
  color: var(--primary-color);
  transform: translateY(-1px);
}
.site-header .navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}
.site-header .nav-link {
  color: var(--secondary-color);
  padding: 1rem 1.2rem;
  transition: var(--transition);
}
.site-header .nav-link:hover, .site-header .nav-link.active {
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #1a1a1a;
  color: var(--white);
}
#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.6;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* Search Form */
.search-form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  backdrop-filter: blur(10px);
}

/* Property Cards */
.property-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.property-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}
.property-img-wrapper {
  position: relative;
  padding-top: 66%; /* 3:2 Aspect Ratio */
  overflow: hidden;
}
.property-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.property-card:hover .property-img-wrapper img {
  transform: scale(1.05);
}
.property-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-color);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}
.property-price {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  padding: 6px 15px;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 700;
  z-index: 2;
}
.property-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.property-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.property-title a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}
.property-title a:hover {
  color: var(--primary-color);
}
.property-location {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.property-features {
  display: flex;
  gap: 15px;
  border-top: 1px solid #eee;
  padding-top: 1rem;
  margin-top: auto;
}
.feature-item {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.feature-item i {
  margin-right: 6px;
  color: var(--primary-color);
}

/* Sections */
.section-padding {
  padding: 5rem 0;
}
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Testimonials */
.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

/* Footer */
.footer-links a {
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--primary-color) !important;
  padding-left: 5px;
}

/* Services page */
.services-page {
  background: #fbfaf8;
}
.services-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 83% 20%, rgba(180, 132, 48, 0.25), transparent 30%), linear-gradient(120deg, #192a3a 0%, #263d51 58%, #1c3042 100%);
}
.services-hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -110px;
  bottom: -220px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(255, 255, 255, 0.025), 0 0 0 70px rgba(255, 255, 255, 0.02);
  pointer-events: none;
}
.services-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}
.services-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e0b65f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}
.services-hero h1 {
  max-width: 720px;
  margin: 1.1rem 0 1rem;
  color: #fff;
  font-size: clamp(2.5rem, 5.5vw, 4.6rem);
  line-height: 1.08;
}
.services-hero-copy {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.8;
}
.services-hero .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
}
.services-hero-panel {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}
.services-panel-label,
.service-card-kicker {
  display: block;
  margin-bottom: 1.6rem;
  color: #e0b65f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.services-journey-step {
  position: relative;
  display: flex;
  gap: 1rem;
  margin-bottom: 1.35rem;
}
.services-journey-step:last-of-type {
  margin-bottom: 0;
}
.services-step-icon {
  flex: 0 0 2.6rem;
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(224, 182, 95, 0.16);
  color: #e0b65f;
}
.services-journey-step h2 {
  margin: 0 0 0.25rem;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
}
.services-journey-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.6;
}
.services-panel-watermark {
  position: absolute;
  right: 1.3rem;
  bottom: -2.5rem;
  color: rgba(255, 255, 255, 0.045);
  font-size: 9rem;
  pointer-events: none;
}
.services-offerings {
  background: #fbfaf8;
}
.services-section-heading {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}
.services-eyebrow-dark {
  color: var(--primary-color);
}
.services-section-heading h2 {
  margin: 0.75rem 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
}
.services-section-heading p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}
.service-offer-card {
  height: 100%;
  padding: 1.7rem;
  border: 1px solid rgba(44, 62, 80, 0.08);
  border-radius: 0.85rem;
  background: #fff;
  box-shadow: 0 10px 30px rgba(29, 42, 54, 0.045);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(180, 132, 48, 0.3);
  box-shadow: 0 18px 38px rgba(29, 42, 54, 0.1);
}
.service-offer-icon {
  display: inline-flex;
  width: 3.25rem;
  height: 3.25rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
  border-radius: 0.85rem;
  background: rgba(180, 132, 48, 0.1);
  color: var(--primary-color);
  font-size: 1.35rem;
}
.service-offer-card .service-card-kicker {
  margin-bottom: 0.65rem;
  color: var(--primary-color);
  font-size: 0.68rem;
}
.service-offer-card h3 {
  min-height: 3.5rem;
  margin: 0 0 0.35rem;
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.45;
}
.service-offer-card h4 {
  margin: 0 0 0.8rem;
  color: var(--primary-color);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
}
.service-offer-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.75;
}
.construction-service-wrap {
  margin-top: 1.5rem;
}
.construction-service-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.6fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(180, 132, 48, 0.2);
  border-left: 5px solid var(--primary-color);
  border-radius: 0.85rem;
  background: linear-gradient(125deg, #fff 0%, #fbf7ef 100%);
  box-shadow: 0 14px 36px rgba(29, 42, 54, 0.07);
}
.construction-service-heading h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
}
.construction-service-heading h4 {
  margin: 0;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}
.construction-service-copy p {
  margin: 0 0 1rem;
  color: #58616a;
  font-size: 0.98rem;
  line-height: 1.8;
}
.construction-service-copy strong {
  color: var(--secondary-color);
  font-weight: 700;
}
.faq-page {
  background: #fbfaf8;
}
.faq-hero {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  color: #fff;
  background: radial-gradient(circle at 80% 20%, rgba(180, 132, 48, 0.24), transparent 30%), linear-gradient(120deg, #192a3a, #263d51 62%, #1c3042);
}
.faq-hero h1 {
  margin: 0.8rem 0;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4rem);
}
.faq-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.8;
}
.faq-section-heading {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.faq-section-heading h2 {
  margin: 0.7rem 0;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}
.faq-section-heading p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}
.faq-accordion .accordion-item {
  overflow: hidden;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(44, 62, 80, 0.1);
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 8px 24px rgba(29, 42, 54, 0.045);
}
.faq-accordion .accordion-header {
  margin: 0;
}
.faq-accordion .accordion-button {
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  color: var(--secondary-color);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: #8a641f;
  background: #fffaf0;
}
.faq-accordion .accordion-button:focus-visible {
  outline: 3px solid rgba(180, 132, 48, 0.42);
  outline-offset: -3px;
  box-shadow: none;
}
.faq-accordion .accordion-button::after {
  flex: 0 0 auto;
}
.faq-accordion .accordion-body {
  padding: 0 1.4rem 1.4rem;
  color: #626b73;
  font-size: 0.97rem;
  line-height: 1.8;
}
.faq-accordion .accordion-body a {
  color: #8a641f;
  font-weight: 600;
}
.faq-contact-note {
  display: flex;
  max-width: 900px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 2rem auto 0;
  padding: 1.5rem 1.75rem;
  border-radius: 0.85rem;
  background: #eef1f3;
}
.faq-contact-note h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 700;
}
.faq-contact-note p {
  color: var(--text-muted);
  line-height: 1.65;
}
@media (max-width: 575.98px) {
  .faq-contact-note {
    align-items: flex-start;
    flex-direction: column;
  }
}
.services-cta-section {
  padding: 0 0 5rem;
  background: #fbfaf8;
}
.services-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 1rem;
  background: linear-gradient(115deg, #253b50, #192a3a);
  box-shadow: 0 18px 45px rgba(29, 42, 54, 0.16);
}
.services-cta-panel h2 {
  margin: 0.6rem 0;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}
.services-cta-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}
@media (max-width: 767.98px) {
  .services-hero-panel {
    padding: 1.5rem;
  }
  .construction-service-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .services-cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Floating WhatsApp contact */
.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1040;
  display: inline-flex;
  width: 3.5rem;
  height: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #25d366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  font-size: 2rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.28);
}
.whatsapp-float:focus-visible {
  outline: 3px solid #128c7e;
  outline-offset: 3px;
}
@media (max-width: 575.98px) {
  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 3.25rem;
    height: 3.25rem;
  }
}
