/*
Theme Name: Mizar Construction
Theme URI:
Author: Your Name
Author URI:
Description: A professional real estate and construction theme
Version: 1.0.0
License: GNU General Public License v2
Text Domain: mizar-construction
*/
:root {
  color-scheme: light;
  --red: #e8292a;
  --dark: #1a1a2e;
  --nav: #444;
  --white: #ffffff;
  --overlay: rgba(74, 96, 161, 0.5);
  --card: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}
html { scroll-behavior: smooth; }

html,
body {
  margin: 0;
  min-height: 100vh;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: var(--dark);
  overflow-x: hidden;
  transition: background 0.3s ease;
}

body.scrolled {
  background: #ffffff;
}

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

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

button,
select {
  font: inherit;
}

.page {
  min-height: 100vh;
  padding: 24px 20px 0;
}

.navbar {
  width: 100%;
  background: transparent;
  border-radius: 24px;
  box-shadow: none;
  animation: navFadeIn 0.8s ease forwards;
}

.nav-inner {
  max-width: 1071px;
  margin: 0 auto;
  padding: 9px 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: rgba(232, 41, 42, 0.1);
  border-radius: 18px;
}

.brand-icon img,
.logo-image {
  height: 50px;
  width: auto;
  display: block;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
}

.brand-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 63px;
  align-items: center;
  justify-content: center;
  flex: 1;
  max-width: 720px;
}

.nav-links a {
  position: relative;
  color: var(--dark);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: transparent;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--dark);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  background: var(--red);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0px 24px;
  background: rgb(255, 49, 86);
  color: rgb(255, 255, 255);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  transition: background 0.3s;
  cursor: pointer;
}

.cta:hover {
  background: rgb(235, 39, 76);
}

.hero-wrapper {
  max-width: 1400px;
  margin: 32px auto 0;
  position: relative;
  padding: 0 12px 180px;
}

.hero-card {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  min-height: 620px;
  background-image: linear-gradient(var(--overlay), var(--overlay)), url("../images/header/header-img2.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.12);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 120px 30px 180px;
  text-align: center;
  animation: fadeSlideUp 0.7s ease forwards;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 40, 80, 0.25);
  border-radius: 24px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 140px 30px 200px;
  text-align: center;
  animation: fadeSlideUp 0.7s ease forwards;
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}

.hero-title {
  margin: 0;
  font-size: clamp(3.2rem, 4vw, 5.2rem);
  line-height: 0.96;
  font-weight: 700;
  color: var(--white);
}

.hero-copy {
  margin: 24px auto 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.93);
}

.search-card {
  position: absolute;
  left: 50%;
  bottom: -80px;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1180px;
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 20px;
  align-items: center;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.12);
  animation: cardReveal 0.7s ease 0.3s both;
}

.search-item {
  display: grid;
  gap: 10px;
}

.search-item:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  padding-right: 20px;
}

.search-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

.search-item select {
  width: 100%;
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid rgba(30, 40, 70, 0.12);
  background: #f8fafb;
  color: #4f5665;
  font-size: 13px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M4 6.5l5 5 5-5' fill='none' stroke='%234f5665' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-item select:hover {
  border-color: rgba(30, 40, 70, 0.2);
}

.search-item select:focus {
  outline: none;
  border-color: rgba(232, 41, 42, 0.35);
  box-shadow: 0 0 0 4px rgba(232, 41, 42, 0.12);
}

.search-btn {
  min-height: 56px;
  border-radius: 18px;
  border: none;
  background: var(--red);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(232, 41, 42, 0.22);
}

.about-section {
  max-width: 1400px;
  margin: 30px auto 0;
  padding: 0 12px;
}

.about-grid {
  display: grid;
  grid-template-columns: 399.2px 1fr;
  gap: 52px;
  align-items: center;
  max-width: 1320px;
}

.about-image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.12);
  width: 399.2px;
  height: 518px;
}

.about-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-copy {
  max-width: 720px;
}

.about-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 25px;
  color: var(--dark);
  font-weight: 600;
  font-size: 13px;
  text-transform: lowercase;
  background: linear-gradient(white, white) padding-box, linear-gradient(45deg, #e8292a, black) border-box;
  border: 1px solid transparent;
  background-clip: padding-box, border-box;
}

.about-title {
  margin: 24px 0 18px;
  font-size: clamp(3rem, 4vw, 2.8rem);
  line-height: 1.21;
  font-weight: 800;
  color: var(--dark);
}

.about-text {
  margin: 0 0 36px;
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(26, 26, 46, 0.92);
  max-width: 635px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-card {
  padding: 28px 20px;
  text-align: center;
}

.stat-card + .stat-card {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-label {
  display: block;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(26, 26, 46, 0.75);
}

.stat-number {
  margin: 0;
  font-size: clamp(3rem, 4vw, 4.4rem);
  line-height: 1;
  font-weight: 800;
  color: var(--red);
}

.search-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

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

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translate(-50%, 24px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.service-card {
  position: relative;
}

.service-card__bg {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: fill;
}

.service-card__content {
  position: relative;
  z-index: 2;
  padding: 28px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.service-card__title {
  font-size: 20px;
  font-weight: 500;
  color: #222;
  line-height: 1.4;
  max-width: 65%;
  text-align: left;
}

.service-card__icon {
  align-self: flex-end;
  width: 44px;
  height: 44px;
}

.service-card__icon img {
  width: 44px;
  height: 44px;
}

.service-card__ellipse {
  position: absolute;
  width: 58.12px;
  height: 58.12px;
  right: -11px;
  top: -13px;
  z-index: 5;
  pointer-events: none;
  display: block;
}

.service-card__arrow {
  position: absolute;
  width: 35.62px;
  height: 35.84px;
  right: -1px;
  top: -1px;
  z-index: 6;
  pointer-events: none;
  display: block;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 30px;
  padding: 0 40px 0 20px;
}

@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .nav-inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 18px;
  }

  .cta {
    order: 2;
    margin-left: auto;
  }

  .hero-content {
    padding: 100px 28px 160px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image {
    width: 100%;
    height: auto;
    min-height: 400px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card + .stat-card {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }
}

.properties-section {
  max-width: 1400px;
  margin: 80px auto 0;
  padding: 0 12px;
}

.properties-heading {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
  display: grid;
  gap: 18px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 25px;
  color: var(--dark);
  font-weight: 600;
  font-size: 13px;
  text-transform: lowercase;
  background: linear-gradient(white, white) padding-box, linear-gradient(45deg, #e8292a, black) border-box;
  border: 1px solid transparent;
  background-clip: padding-box, border-box;
  margin-inline: auto;
}

.properties-heading h2 {
  margin: 0;
  font-size: clamp(2.4rem, 2.7vw, 3.2rem);
  line-height: 1.1;
  font-weight: 700;
  color: var(--dark);
}

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

.property-card {
  background: var(--white);
  border-radius: 8.42px;
  overflow: hidden;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.property-image {
  width: 100%;
  min-height: 240px;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.property-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.property-location {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.property-price {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--red);
}

.property-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  font-size: 13px;
  color: rgba(26, 26, 46, 0.75);
}

.property-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(26, 26, 46, 0.75);
}

.detail-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}

.property-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.property-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  font-size: 13px;
  color: rgba(26, 26, 46, 0.75);
  position: relative;
}

.property-details::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 1px;
  background: rgba(26, 26, 46, 0.12);
}

.property-btn {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 24px;
  border-radius: 6.42px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  align-self: flex-start;
}

.property-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(232, 41, 42, 0.2);
}

.properties-footer {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.view-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(232, 41, 42, 0.25);
  color: var(--dark);
  background: transparent;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}

.view-more-btn:hover {
  background: rgba(232, 41, 42, 0.08);
}

.services-section {
  padding: 40px 0 40px;
  background: #F6F3EC;
  margin-left: -20px;
  margin-right: -20px;
  margin-top: 52px;
}

.services-heading {
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
  max-width: 860px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.services-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border: 1px solid rgba(232, 41, 42, 0.28);
  border-radius: 999px;
  color: var(--dark);
  text-transform: lowercase;
  font-weight: 700;
  letter-spacing: 0.24em;
  font-size: 12px;
}
.services__container { max-width: 1200px; margin: 0 auto; text-align: center; }
.services-heading h2 {
  margin: 0;
  font-size: clamp(2.4rem, 2.8vw, 3.6rem);
  line-height: 1.05;
  font-weight: 800;
  color: var(--dark);
}

    .services__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .service-card { position: relative; }

    .service-card__bg {
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
      object-fit: fill;
    }

    .service-card__content {
      position: relative;
      z-index: 2;
      padding: 28px;
      min-height: 200px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-start;
    }

    .service-card__title {
      font-size: 20px;
      font-weight: 500;
      color: #222;
      line-height: 1.4;
      max-width: 65%;
      text-align: left;
    }

    .service-card__icon { align-self: flex-end; width: 44px; height: 44px; }
    .service-card__icon svg { width: 44px; height: 44px; }



.view-more-btn:hover {
  background: rgba(232, 41, 42, 0.08);
}

@media (max-width: 980px) {
  .property-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .property-grid {
    grid-template-columns: 1fr;
  }

  .properties-heading {
    gap: 12px;
  }

  .property-body {
    padding: 20px;
  }

  .section-label,
  .view-more-btn {
    min-width: auto;
  }
}

@media (max-width: 760px) {
  .page {
    padding: 18px 14px 30px;
  }

  .nav-inner {
    padding: 18px 18px;
  }

  .nav-links {
    gap: 14px;
  }

  .hero-card {
    min-height: 520px;
  }

  .hero-content {
    padding: 84px 18px 140px;
  }

  .search-card {
    position: static;
    transform: none;
    width: auto;
    max-width: none;
    margin: -28px 0 0;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  .search-item:not(:last-child) {
    border-right: none;
    padding-right: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 18px;
  }
}



/* ── Testimonials Section ── */
.testimonials-section {
  padding: 80px 20px;
  background: #ffffff;
}

.testimonials-heading {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border: 1px solid rgba(232, 41, 42, 0.28);
  border-radius: 999px;
  color: var(--dark);
  text-transform: lowercase;
  font-weight: 700;
  letter-spacing: 0.24em;
  font-size: 12px;
  margin-bottom: 20px;
}

.testimonials-heading h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.testimonial-role {
  font-size: 13px;
  color: rgba(26, 26, 46, 0.55);
  margin: 0;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(26, 26, 46, 0.8);
  margin: 0;
  flex: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(26, 26, 46, 0.07);
}

.testimonial-stars span {
  font-size: 20px;
  color: #f5a623;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Contact / Quick Inquiry Section ── */
.contact-section {
  background: #F6F3EC;
  padding: 40px 20px 80px;
  margin-left: -20px;
  margin-right: -20px;
  overflow: visible;
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  overflow: visible;
}

/* ── Form Card ── */
.contact-form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  margin-top: 6px;
  margin-bottom: -114px;
  z-index: 2;
}

.contact-interest-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

/* Tags */
.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-tag {
  padding: 10px 18px;
  border-radius: 8px;
  border: 1.5px solid rgba(26, 26, 46, 0.18);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  line-height: 1.3;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.contact-tag--active {
  background: var(--red);
  border-color: var(--red);
  color: #ffffff;
}

.contact-tag:hover:not(.contact-tag--active) {
  border-color: var(--red);
  color: var(--red);
}

/* Inputs */
.contact-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-field {
  border-bottom: 1.5px solid rgba(232, 41, 42, 0.3);
}

.contact-input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--dark);
  padding: 8px 0;
}

.contact-input::placeholder {
  color: rgba(26, 26, 46, 0.4);
}

.contact-input--active {
  font-weight: 600;
  color: var(--dark);
}

.contact-input--active + .contact-field,
.contact-field:has(.contact-input--active) {
  border-bottom-color: var(--red);
}

/* Submit button */
.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 16px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s, transform 0.2s;
}

.contact-submit:hover {
  background: #cc1f1f;
  transform: translateY(-2px);
}

/* ── Right Copy ── */
.contact-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border: 1px solid rgba(232, 41, 42, 0.35);
  border-radius: 999px;
  color: var(--dark);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
  margin: 0 0 20px;
}

.contact-text {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(26, 26, 46, 0.75);
  margin: 0;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ── Blog Articles Section ── */
.blog-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.blog-header__left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border: 1.5px solid rgba(232, 41, 42, 0.35);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  width: fit-content;
}

.blog-title {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.blog-view-all {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 10px 10px 24px;
  border: 1.5px solid rgba(232, 41, 42, 0.35);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.blog-view-all:hover {
  border-color: var(--red);
  background: rgba(232, 41, 42, 0.04);
}

.blog-view-all__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-card__image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e0e4ea;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.04);
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  background: var(--red);
  color: #ffffff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.blog-date {
  font-size: 13px;
  color: rgba(26, 26, 46, 0.55);
  font-weight: 500;
}

.blog-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.4;
}

@media (max-width: 860px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Footer ── */
.footer {
  background: #F6F3EC;
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: -40px;
  padding: 60px 20px 60px;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo img {
  height: 52px;
  width: auto;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact__heading {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
}

.footer-contact__phone,
.footer-contact__desc,
.footer-contact__email {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(26, 26, 46, 0.7);
}

.footer-contact__email {
  font-weight: 600;
  color: var(--dark);
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(26, 26, 46, 0.2);
  background: transparent;
  color: var(--dark);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.footer-social:hover {
  background: var(--red);
  border-color: var(--red);
  color: #ffffff;
}

/* Link columns */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col__heading {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(26, 26, 46, 0.65);
  transition: color 0.2s;
}

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

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 560px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ── Footer (shared) ── */
.footer {
  background: #F6F3EC;
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: 0;
  padding: 60px 20px 60px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.footer-brand { display: flex; flex-direction: column; gap: 24px; }
.footer-logo img { height: 52px; width: auto; }

.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact__heading { margin: 0; font-size: 16px; font-weight: 800; color: var(--dark); }
.footer-contact__phone,
.footer-contact__desc,
.footer-contact__email { margin: 0; font-size: 14px; line-height: 1.7; color: rgba(26,26,46,0.7); }
.footer-contact__email { font-weight: 600; color: var(--dark); }

.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid rgba(26,26,46,0.2);
  background: transparent; color: var(--dark);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.footer-social:hover { background: var(--red); border-color: var(--red); color: #fff; }

.footer-col { display: flex; flex-direction: column; gap: 20px; }
.footer-col__heading { margin: 0; font-size: 16px; font-weight: 800; color: var(--dark); }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-links a { font-size: 14px; color: rgba(26,26,46,0.65); transition: color 0.2s; }
.footer-links a:hover { color: var(--red); }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}


/* ══════════════════════════════════════════════════════
   ANIMATIONS & INTERACTIONS
   All scroll-triggered animations, hovers, transitions
══════════════════════════════════════════════════════ */

/* ── Hero: fix border-radius clipping ── */
.hero-wrapper {
  padding: 0 12px 180px;
  margin: 32px auto 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.hero-card {
  overflow: visible;
  isolation: isolate;
}

/* ── Navbar: shadow on scroll ── */
.navbar {
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
}

/* ── Nav links: red underline slide in ── */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}
.nav-links a:hover::after {
  width: 100%;
}

/* ── Hero text animations ── */
.hero-title {
  animation: heroSlideUp 0.9s ease both;
}
.hero-copy {
  animation: heroSlideUp 0.9s 0.2s ease both;
}
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════
   SCROLL-TRIGGERED BASE STATES
   (JS adds .is-visible via IntersectionObserver)
══════════════════════════════ */
.anim-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-scale {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Visible state — added by JS */
.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s !important; }
.stagger-2 { transition-delay: 0.2s !important; }
.stagger-3 { transition-delay: 0.3s !important; }
.stagger-4 { transition-delay: 0.4s !important; }
.stagger-5 { transition-delay: 0.5s !important; }
.stagger-6 { transition-delay: 0.6s !important; }

/* ── Property card: lift + 3D tilt on hover ── */
.property-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.14);
}

/* ── Property image: zoom on card hover ── */
.property-image {
  overflow: hidden;
}
.property-image img {
  transition: transform 0.45s ease;
}
.property-card:hover .property-image img {
  transform: scale(1.06);
}

/* ── Service card: lift on hover ── */
.service-card {
  transition: transform 0.3s ease;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px);
}

/* ── Testimonial card: lift on hover ── */
.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

/* ── Blog card: lift + image zoom ── */
.blog-card {
  transition: transform 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-card__image {
  overflow: hidden;
}
.blog-card__image img {
  transition: transform 0.45s ease;
}
.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

/* ── Buttons: float + red glow on hover ── */
.search-btn,
.property-btn,
.view-more-btn,
.cta {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.search-btn:hover,
.property-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 41, 42, 0.30);
}
.view-more-btn:hover {
  transform: translateY(-2px);
}
.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 41, 42, 0.25);
}

/* ── Footer social: scale on hover ── */
.footer-social {
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.footer-social:hover {
  transform: scale(1.1);
}

/* ── Footer links: slide right on hover ── */
.footer-links a {
  display: inline-block;
  transition: color 0.2s, transform 0.2s;
}
.footer-links a:hover {
  color: var(--red);
  transform: translateX(4px);
}

/* ── Stat number: animated counter display ── */
.stat-number {
  display: inline-block;
  transition: color 0.3s;
}
/* index page animation start */
 /* ══════════════════════════════════════════
       ANIMATION BASE STATES
    ══════════════════════════════════════════ */

    /* Elements start hidden, JS adds .is-visible to trigger */
    .anim-fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .anim-fade-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .anim-fade-right {
      opacity: 0;
      transform: translateX(50px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .anim-scale {
      opacity: 0;
      transform: scale(0.88);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .anim-fade {
      opacity: 0;
      transition: opacity 0.8s ease;
    }

    /* Visible state — added by IntersectionObserver */
    .is-visible {
      opacity: 1 !important;
      transform: none !important;
    }

    /* Stagger delays for grids */
    .stagger-1 { transition-delay: 0.1s !important; }
    .stagger-2 { transition-delay: 0.2s !important; }
    .stagger-3 { transition-delay: 0.3s !important; }
    .stagger-4 { transition-delay: 0.4s !important; }
    .stagger-5 { transition-delay: 0.5s !important; }
    .stagger-6 { transition-delay: 0.6s !important; }

    /* ── Navbar scroll effect ── */
    .navbar {
      transition: box-shadow 0.3s ease, background 0.3s ease;
    }
    .navbar.scrolled {
      box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    }

    /* ── Hero animations ── */
    .hero-title {
      animation: heroSlideUp 0.9s ease both;
    }
    .hero-copy {
      animation: heroSlideUp 0.9s 0.2s ease both;
    }
    @keyframes heroSlideUp {
      from { opacity: 0; transform: translateY(32px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── Property card hover lift ── */
    .property-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .property-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    }

    /* ── Service card hover ── */
    .service-card {
      transition: transform 0.3s ease;
    }
    .service-card:hover {
      transform: translateY(-6px);
    }

    /* ── Testimonial card hover ── */
    .testimonial-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .testimonial-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.10);
    }

    /* ── Blog card hover ── */
    .blog-card {
      transition: transform 0.3s ease;
    }
    .blog-card:hover {
      transform: translateY(-5px);
    }
    .blog-card__image img {
      transition: transform 0.5s ease;
    }
    .blog-card:hover .blog-card__image img {
      transform: scale(1.05);
    }

    /* ── Stat counter pulse ── */
    .stat-number {
      display: inline-block;
      transition: color 0.3s;
    }

    /* ── CTA button pulse ── */
    .search-btn, .property-btn, .view-more-btn {
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .search-btn:hover, .property-btn:hover, .view-more-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(254,1,30,0.30);
    }

    /* ── Nav link underline slide ── */
    .nav-links a {
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 2px;
      background: #FE011E;
      transition: width 0.25s ease;
    }
    .nav-links a:hover::after {
      width: 100%;
    }
/* index page animation end */

/* about us page css start*/
  /* ── About Page Hero Banner ── */
      .about-hero {
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
        height: 343px;
        background-image: linear-gradient(rgba(30,30,40,0.52), rgba(30,30,40,0.52)),
                          url('../images/about/header-img.jpg');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 16px;
      }

      /* White content area with rounded top corners overlapping the hero */
      .about-content-wrapper {
        background: #fff;
        border-radius: 28px 28px 0 0;
        margin-top: -28px;
        margin-left: -20px;
        margin-right: -20px;
        position: relative;
        z-index: 1;
        padding-top: 1px;
      }

      .about-hero h1 {
        color: #fff;
        font-size: clamp(2.2rem, 4vw, 3.2rem);
        font-weight: 700;
        margin: 0;
        font-family: Georgia, 'Times New Roman', serif;
      }

      /* ── Intro Section ── */
      .au-intro-section {
        max-width: 1100px;
        margin: 72px auto 0;
        padding: 0 20px;
      }

      .au-intro-badge {
        display: inline-flex;
        align-items: center;
        padding: 7px 18px;
        border: 1.5px solid var(--dark);
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--dark);
        margin-bottom: 32px;
      }

      .au-intro-grid {
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 60px;
        align-items: flex-start;
      }

      .au-intro-title {
        margin: 0;
        font-size: clamp(2.2rem, 3.5vw, 4.5rem);
        font-weight: 800;
        line-height: 1.15;
        color: var(--dark);
      }

      .au-intro-lead {
        margin: 0 0 20px;
        font-size: 1.05rem;
        font-weight: 700;
        line-height: 1.55;
        color: var(--dark);
      }

      .au-intro-body {
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.85;
        color: rgba(26,26,46,0.72);
      }

      /* ── Values Grid ── */
      .au-values-section {
        max-width: 1100px;
        margin: 72px auto 0;
        padding: 0 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px 80px;
      }

      .au-value-item {}

      .au-value-heading {
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 0 0 12px;
        font-size: 1.15rem;
        font-weight: 800;
        color: var(--dark);
      }

      .au-value-icon {
          width:20px;
          height: 20px;
      }

      .au-value-text {
        margin: 0;
        font-size: 0.93rem;
        line-height: 1.85;
        color: rgba(26,26,46,0.72);
      }

      /* ── Full-width Property Image ── */
      .au-feature-image {
        max-width: 900px;
        margin: 72px auto 0;
        position: relative;
        height: 340px;
      }

      /* Red rectangle sits in the lower portion */
      .au-feature-image__bg {
        position: absolute;
        left: 0; right: 0;
        bottom: 0;
        height: 280px;
        background: rgba(254, 1, 30, 0.8);
        border-radius: 25px;
      }

      /* Image overflows above the red box */
      .au-feature-image img {
        position: absolute;
        z-index: 1;
        left: 41px;
        right: 45px;
        top: 0px;
        width: calc(100% - 40px);
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
        border-radius: 20px;
      }

      /* Tablet */
      @media (max-width: 860px) {
        .au-feature-image {
          max-width: 100%;
          margin: 48px 20px 0;
          height: 280px;
        }
        .au-feature-image__bg {
          height: 230px;
        }
        .au-feature-image img {
          left: 0px;
          right: 17px;
          border-radius: 12px;
          width: 100%;
        }
      }

      /* Mobile */
      @media (max-width: 560px) {
        .au-feature-image {
          margin: 36px 16px 0;
          height: 220px;
        }
        .au-feature-image__bg {
          height: 180px;
          border-radius: 18px;
        }
        .au-feature-image img {
          left: 0px;
          right: 17px;
          border-radius: 12px;
          width: 100%;
        }
      }

      /* ── Stats Bar ── */
      .au-stats-section {
        max-width: 811px;
        margin: 0 auto;
        padding: 33px 44px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;

      }

      .au-stat {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }

      .au-stat__top {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .au-stat__number {
        font-size: 1.3rem;
        font-weight: 800;
        color: var(--dark);
        line-height: 1.1;
      }

      .au-stat__icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
        color: var(--red);
      }

      .au-stat__icon svg {
        width: 100%;
        height: 100%;
      }

      .au-stat__label {
        display: block;
        font-size: 0.88rem;
        color: rgba(26,26,46,0.6);
        margin-top: 0;
        font-weight: 485;
      }

      /* ── Team Section ── */
      .au-team-section {
        max-width: 1100px;
        margin: 44px auto 80px;
        padding: 0 20px;
        text-align: center;
      }

      .au-team-badge {
        display: inline-flex;
        align-items: center;
        padding: 8px 24px;
        border: 1.5px solid rgba(26,26,46,0.2);
        border-radius: 999px;
        font-size: 13px;
        font-weight: 500;
        color: var(--dark);
        margin-bottom: 20px;
      }

      .au-team-title {
        margin: 0 0 48px;
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        font-weight: 540;
        color: var(--dark);
        font-family: Georgia, 'Times New Roman', serif;
      }

      .au-team-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        text-align: left;
      }

      .au-team-card {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        aspect-ratio: 3/4;
        background: #d0d4da;
      }

      .au-team-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.35s ease;
      }

      .au-team-card:hover img {
        transform: scale(1.04);
      }

      .au-team-card__info {
       position: absolute;
       bottom: 0;
       left: 0;
       right: 0;
       padding: 16px 20px;
       background: rgba(255,255,255);
      border-left: 4px solid #fe021e;
      }

      .au-team-card__name {
        margin: 0 0 2px;
        font-size: 1rem;
        font-weight: 800;
        color: var(--dark);
      }

      .au-team-card__role {
        margin: 0;
        font-size: 0.85rem;
        color: rgba(26,26,46,0.6);
      }

      /* ── Footer (reused from index) ── */
      .footer {
        background: #F6F3EC;
        margin-left: -20px;
        margin-right: -20px;
        margin-bottom: 0;
        padding: 60px 20px 60px;
        margin-top: 0;
      }

      /* ── Responsive ── */
      @media (max-width: 860px) {
        .au-intro-grid { grid-template-columns: 1fr; gap: 32px; }
        .au-values-section { grid-template-columns: 1fr; gap: 36px; }
        .au-stats-section { grid-template-columns: repeat(2, 1fr); }
        .au-team-grid { grid-template-columns: 1fr; }
      }

      @media (max-width: 560px) {
        .au-stats-section { grid-template-columns: 1fr; }
      }
/* about us page css end*/

/* Blog page css start*/
      /* ── Hero Banner ── */
      .blog-hero {
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
        height: 343px;
        background-image: linear-gradient(rgba(30,30,40,0.55), rgba(30,30,40,0.55)),
                          url('../images/header/blog-header-img.jpg');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 16px;
      }

      .blog-hero h1 {
        color: #fff;
        font-size: clamp(2.2rem, 4vw, 3.2rem);
        font-weight: 700;
        margin: 0;
        font-family: Georgia, 'Times New Roman', serif;
      }

      /* ── Content Wrapper ── */
      .blog-content-wrapper {
        background: #fff;
        border-radius: 28px 28px 0 0;
        margin-top: -28px;
        margin-left: -20px;
        margin-right: -20px;
        position: relative;
        z-index: 1;
        padding-top: 1px;
        padding-bottom: 0;
      }

      /* ── Top bar: title + filter tabs ── */
      .blog-topbar {
        max-width: 1100px;
        margin: 48px auto 36px;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        flex-wrap: wrap;
      }

      .blog-topbar__title {
        font-size: clamp(1.8rem, 3vw, 2.4rem);
        font-weight: 800;
        color: #000;
        margin: 0;
        font-family: Georgia, 'Times New Roman', serif;
      }

      /* Filter tabs */
      .blog-filters {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
      }

      .blog-filter-btn {
        padding: 8px 20px;
        border: 1.5px solid rgba(26,26,46,0.2);
        border-radius: 999px;
        background: transparent;
        font-size: 0.85rem;
        font-weight: 500;
        color: rgba(26,26,46,0.7);
        cursor: pointer;
        transition: all 0.2s;
        font-family: inherit;
      }

      .blog-filter-btn:hover,
      .blog-filter-btn.active {
        background: #000;
        border-color: #000;
        color: #fff;
      }

      /* ── Blog Grid ── */
      .blog-grid {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px 56px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
      }

      /* ── Blog Card — same structure as service card ── */
      .blog-card {
        background: #fff;
        border-radius: 25px;
        border: 1px solid #62616145;
        display: flex;
        flex-direction: column;
        padding: 16px;
        position: relative;
        text-decoration: none;
      }

      /* Image wrap */
      .blog-card__img-wrap {
        position: relative;
        width: 100%;
        border-radius: 15px;
        overflow: hidden;
        flex-shrink: 0;
        aspect-ratio: 16/9;
      }

      .blog-card__img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 15px;
        transition: transform 0.4s ease;
      }

      .blog-card:hover .blog-card__img-wrap img {
        transform: scale(1.04);
      }

      /* Red arrow — bottom-right corner of image, half overlapping */
      .blog-card__arrow-wrap {
        position: absolute;
        bottom: -12px;
        right: -13px;
        width: 46px;
        height: 46px;
        z-index: 2;
      }

      .blog-card__arrow {
        width: 30px;
        height: 30px;
        background: #FE011E;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .blog-card__arrow svg {
        width: 16px;
        height: 16px;
        color: #fff;
      }

      /* Card body */
      .blog-card__body {
        padding: 20px 4px 8px;
        display: flex;
        flex-direction: column;
        flex: 1;
      }

      /* Meta: category + date */
      .blog-card__meta {
        display: flex;
        flex-direction: row;
        gap: 6px;
        margin-bottom: 14px;
      }

      .blog-card__meta-row {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.85rem;
        color: rgba(26,26,46,0.6);
      }

      .blog-card__meta-row svg {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
      }

      /* Divider */
      .blog-card__divider {
        width: 100%;
        height: 1px;
        background: rgba(0,0,0,0.25);
        margin-bottom: 14px;
      }

      /* Title */
      .blog-card__title {
        font-size: 1rem;
        font-weight: 700;
        color: #000;
        margin: 0;
        line-height: 1.4;
      }

      /* ── Responsive ── */
      @media (max-width: 1024px) {
        .blog-grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px 40px; }
        .blog-topbar { flex-direction: column; align-items: flex-start; }
      }

      @media (max-width: 560px) {
        .blog-grid { grid-template-columns: 1fr; padding: 0 16px 40px; }
        .blog-topbar { padding: 0 16px; }
      }
/* Blog page css end*/

/* Blog Details page css start*/
  /* ── Hero Banner ── */
      .bd-hero {
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
        height: 280px;
        background-image: linear-gradient(rgba(30,30,40,0.52), rgba(30,30,40,0.52)),
                          url('../images/header/blog-header-img.jpg');
        background-size: cover;
        background-position: center;
        margin-top: 16px;
      }

      /* ── Content Wrapper ── */
      .bd-content-wrapper {
        background: #fff;
        border-radius: 28px 28px 0 0;
        margin-top: -28px;
        margin-left: -20px;
        margin-right: -20px;
        position: relative;
        z-index: 1;
        padding-top: 1px;
      }

      /* ── Article container ── */
      .bd-article {
        max-width: 1400px;
        margin: 0 auto;
        padding: 48px 40px 0;
      }

      /* ── Post title ── */
      .bd-title {
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
        font-weight: 800;
        color: #000;
        margin: 0 0 24px;
        line-height: 1.2;
        font-family: Georgia, 'Times New Roman', serif;
      }

      /* ── Meta row ── */
      .bd-meta {
        display: inline-flex;
        align-items: center;
        gap: 32px;
        margin-bottom: 28px;
        flex-wrap: wrap;
        border-top: 1px solid rgba(26,26,46,0.12);
        border-bottom: 1px solid rgba(26,26,46,0.12);
        padding: 16px 0;
      }

      .bd-meta__item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.9rem;
        color: rgba(26,26,46,0.65);
      }

      .bd-meta__item svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        color: rgba(26,26,46,0.5);
      }

      .bd-meta__item span {
        color: rgba(26,26,46,0.5);
      }

      .bd-meta__item strong {
        color: #000;
        font-weight: 600;
      }

      /* ── Main feature image ── */
      .bd-feature-img {
        width: 100%;
        border-radius: 16px;
        object-fit: cover;
        display: block;
        aspect-ratio: 16/7;
        margin-bottom: 36px;
      }

      /* ── Section heading ── */
      .bd-section-heading {
        font-size: 1.6rem;
        font-weight: 800;
        color: #000;
        margin: 0 0 16px;
        line-height: 1.2;
        font-family: Georgia, 'Times New Roman', serif;
      }

      /* ── Body text ── */
      .bd-text {
        font-size: 0.95rem;
        line-height: 1.85;
        color: rgba(26,26,46,0.72);
        margin: 0 0 20px;
      }

      /* ── Two-column image grid ── */
      .bd-img-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin: 32px 0;
      }

      .bd-img-grid img {
        width: 100%;
        border-radius: 14px;
        object-fit: cover;
        aspect-ratio: 4/3;
        display: block;
      }

      /* ── Post navigation ── */
      .bd-post-nav {
        max-width: 1400px;
        margin: 48px auto 0;
        padding: 0 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top: 1px solid rgba(26,26,46,0.12);
        border-bottom: 1px solid rgba(26,26,46,0.12);
        padding-top: 28px;
        padding-bottom: 28px;
        margin-bottom: 56px;
        gap: 24px;
      }

      .bd-nav-item {
        display: flex;
        flex-direction: column;
        gap: 6px;
        text-decoration: none;
        max-width: 45%;
      }

      .bd-nav-item--next {
        align-items: flex-end;
        text-align: right;
      }

      .bd-nav-item__label {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(26,26,46,0.45);
      }

      .bd-nav-item--next .bd-nav-item__label {
        justify-content: flex-end;
      }

      .bd-nav-item__label svg {
        width: 14px;
        height: 14px;
      }

      .bd-nav-item__title {
        font-size: 0.95rem;
        font-weight: 600;
        color: #000;
        line-height: 1.3;
        transition: color 0.2s;
      }

      .bd-nav-item:hover .bd-nav-item__title {
        color: #FE011E;
      }

      /* ── Responsive ── */
      @media (max-width: 768px) {
        .bd-article { padding: 36px 20px 0; }
        .bd-post-nav { padding: 28px 20px 40px; flex-direction: column; align-items: flex-start; }
        .bd-nav-item--next { align-items: flex-start; text-align: left; }
        .bd-nav-item--next .bd-nav-item__label { justify-content: flex-start; }
        .bd-img-grid { grid-template-columns: 1fr; }
        .bd-nav-item { max-width: 100%; }
      }

      @media (max-width: 480px) {
        .bd-hero { height: 200px; }
        .bd-title { font-size: 1.5rem; }
      }
/* Blog Details page css end*/

/* Contact page css start*/
  /* ── Hero Banner ── */
      .ct-hero {
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
        height: 300px;
        background-image: linear-gradient(rgba(30,30,40,0.52), rgba(30,30,40,0.52)),
                          url('../images/header/contact-header-img.jpg');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 16px;
      }

      .ct-hero h1 {
        color: #fff;
        font-size: clamp(2.2rem, 4vw, 3.2rem);
        font-weight: 700;
        margin: 0;
        font-family: Georgia, 'Times New Roman', serif;
      }

      /* ── Content Wrapper ── */
      .ct-content-wrapper {
        background: #fff;
        border-radius: 28px 28px 0 0;
        margin-top: -28px;
        margin-left: -20px;
        margin-right: -20px;
        position: relative;
        z-index: 1;
        padding-top: 1px;
      }

      /* ── Two-column contact layout ── */
      .ct-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 560px;
      }

      /* ── LEFT: info column ── */
      .ct-info {
        padding: 64px 56px 64px 48px;
        border-right: 1px solid rgba(26,26,46,0.1);
      }

      .ct-info__headline {
        font-size: clamp(1.4rem, 2.5vw, 1.85rem);
        font-weight: 800;
        color: #000;
        line-height: 1.3;
        margin: 0 0 16px;
      }

      .ct-info__sub {
        font-size: 0.95rem;
        line-height: 1.75;
        color: rgba(26,26,46,0.65);
        margin: 0 0 40px;
      }

      /* Contact detail items */
      .ct-detail {
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin-bottom: 28px;
      }

      .ct-detail__label {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 700;
        font-size: 0.95rem;
        color: #000;
      }

      .ct-detail__label svg {
        width: 20px;
        height: 20px;
        color: #000;
        flex-shrink: 0;
      }

      .ct-detail__value {
        font-size: 0.93rem;
        color: rgba(26,26,46,0.65);
        margin: 0;
        padding-left: 30px;
        line-height: 1.6;
      }

      /* ── RIGHT: form column ── */
      .ct-form-col {
        padding: 64px 48px 64px 56px;
      }

      .ct-form__title {
        font-size: clamp(1.6rem, 2.5vw, 2rem);
        font-weight: 800;
        color: #000;
        margin: 0 0 36px;
        font-family: Georgia, 'Times New Roman', serif;
      }

      /* Form fields */
      .ct-form {
        display: flex;
        flex-direction: column;
        gap: 0;
      }

      .ct-field {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid rgba(26,26,46,0.2);
        padding: 12px 0;
      }

      .ct-field input,
      .ct-field textarea {
        border: none;
        outline: none;
        font-family: inherit;
        font-size: 0.93rem;
        color: #000;
        background: transparent;
        width: 100%;
        padding: 4px 0;
      }

      .ct-field input::placeholder,
      .ct-field textarea::placeholder {
        color: rgba(26,26,46,0.4);
      }

      .ct-field textarea {
        resize: none;
        min-height: 80px;
      }

      .ct-submit {
        margin-top: 28px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 13px 36px;
        background: #FE011E;
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 0.95rem;
        font-weight: 600;
        font-family: inherit;
        cursor: pointer;
        transition: background 0.2s;
        align-self: flex-start;
      }

      .ct-submit:hover {
        background: #cc0019;
      }

      /* ── Google Map ── */
      .ct-map {
        width: 100%;
        height: 420px;
        overflow: hidden;
      }

      .ct-map iframe {
        width: 100%;
        height: 100%;
        display: block;
        border: 0;
      }

      /* ── Responsive ── */
      @media (max-width: 860px) {
        .ct-layout {
          grid-template-columns: 1fr;
        }
        .ct-info {
          border-right: none;
          border-bottom: 1px solid rgba(26,26,46,0.1);
          padding: 40px 24px;
        }
        .ct-form-col {
          padding: 40px 24px;
        }
      }

      @media (max-width: 560px) {
        .ct-hero { height: 220px; }
        .ct-map { height: 300px; }
      }
/* contact page css end*/

/* Properties page css start*/
  /* ── Properties Page Hero ── */
    .pl-hero {
      width: calc(100% + 40px);
      margin-left: -20px;
      margin-right: -20px;
      height: 343px;
      background-image: linear-gradient(rgba(30, 30, 40, 0.52), rgba(30, 30, 40, 0.52)),
        url('images/header/property-header-img.jpg');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 16px;
    }

    .pl-hero h1 {
      color: #fff;
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 700;
      margin: 0;
      font-family: Georgia, 'Times New Roman', serif;
    }

    /* ── Content wrapper with rounded top ── */
    .pl-content-wrapper {
      background: var(--white);
      border-radius: 28px 28px 0 0;
      margin-top: -28px;
      margin-left: -20px;
      margin-right: -20px;
      position: relative;
      z-index: 1;
      padding: 1px 40px 0;
    }

    /* ── Section heading ── */
    .pl-section-heading {
      text-align: center;
      max-width: 800px;
      margin: 56px auto 0;
      padding: 0 20px;
    }

    .pl-section-heading .pl-label {
      display: inline-block;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 14px;
    }

    .pl-section-heading h2 {
      margin: 0;
      font-size: clamp(1.6rem, 2.6vw, 2.0rem);
      font-weight: 700;
      line-height: 1.3;
      color: var(--dark);
    }

    .pl-section-heading h2 span {
      color: var(--red);
    }

    /* ── Filters bar ── */
    .pl-filters {
      max-width: 760px;
      margin: 32px auto 0;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }

    .pl-filter-item {
      position: relative;
    }

    .pl-filter-item select {
      width: 100%;
      padding: 14px 40px 14px 18px;
      border-radius: 999px;
      border: 1px solid rgba(26, 26, 46, 0.12);
      background: var(--white);
      color: var(--dark);
      font-size: 14px;
      font-weight: 500;
      font-family: 'Inter', sans-serif;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M4 6.5l5 5 5-5' fill='none' stroke='%234f5665' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      background-size: 12px 12px;
      cursor: pointer;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .pl-filter-item select:hover {
      border-color: rgba(30, 40, 70, 0.25);
    }

    .pl-filter-item select:focus {
      outline: none;
      border-color: rgba(232, 41, 42, 0.35);
      box-shadow: 0 0 0 4px rgba(232, 41, 42, 0.1);
    }

    /* ── Divider ── */
    .pl-divider {
      max-width: 100%;
      margin: 32px 0 0;
      padding: 0;
      border: none;
      border-top: 1px solid rgba(26, 26, 46, 0.1);
    }

    /* ── Property listing section ── */
    .pl-listing {
      max-width: 100%;
      margin: 40px 0 0;
      padding: 0;
    }

    .pl-listing .property-grid {
      gap: 28px;
    }

    .pl-listing .property-card {
      background: var(--white);
      border-radius: 12px;
      box-shadow: 0 8px 32px var(--shadow);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .pl-listing .property-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
    }

    .pl-listing .property-image {
      border-radius: 12px 12px 0 0;
      min-height: 220px;
      max-height: 240px;
    }

    .pl-listing .property-image img {
      transition: transform 0.4s ease;
    }

    .pl-listing .property-card:hover .property-image img {
      transform: scale(1.04);
    }

    /* ── Pagination ── */
    .pl-pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin: 48px auto 64px;
      padding: 0 20px;
    }

    .pl-page-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 8px;
      border: 1px solid rgba(26, 26, 46, 0.15);
      background: var(--white);
      color: var(--dark);
      font-size: 14px;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
      text-decoration: none;
    }

    .pl-page-btn:hover {
      border-color: var(--red);
      color: var(--red);
    }

    .pl-page-btn--active {
      background: var(--red);
      border-color: var(--red);
      color: var(--white);
    }

    .pl-page-btn--active:hover {
      background: var(--red);
      color: var(--white);
    }

    .pl-page-btn--arrow {
      border-color: rgba(232, 41, 42, 0.3);
      color: var(--red);
    }

    .pl-page-btn--arrow:hover {
      background: rgba(232, 41, 42, 0.06);
    }

    .pl-page-dots {
      font-size: 14px;
      font-weight: 600;
      color: rgba(26, 26, 46, 0.5);
      padding: 0 4px;
      user-select: none;
    }

    /* ── Footer override for this page ── */
    .footer {
      margin-top: 0;
    }

    /* ── Responsive ── */
    @media (max-width: 860px) {
      .pl-filters {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 560px) {
      .pl-filters {
        grid-template-columns: 1fr;
      }

      .pl-pagination {
        gap: 6px;
      }

      .pl-page-btn {
        width: 36px;
        height: 36px;
        font-size: 13px;
      }
    }
/* Properties page css end*/

/* Properties details page css start*/
       /* ── Property Detail Hero ── */
        .pd-hero {
            width: calc(100% + 40px);
            margin-left: -20px;
            margin-right: -20px;
            height: 343px;
            background-image: linear-gradient(rgba(30, 30, 40, 0.52), rgba(30, 30, 40, 0.52)),
                url('../images/header/properties-header-img.png');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 16px;
        }

        .pd-hero h1 {
            color: #fff;
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            font-weight: 700;
            margin: 0;
            font-family: Georgia, 'Times New Roman', serif;
        }

        /* ── Content Wrapper ── */
        .pd-content-wrapper {
            background: var(--white);
            border-radius: 28px 28px 0 0;
            margin-top: -28px;
            margin-left: -20px;
            margin-right: -20px;
            position: relative;
            z-index: 1;
            padding: 40px 40px 0;
        }

        /* ── Breadcrumb ── */
        .pd-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(26, 26, 46, 0.6);
            margin-bottom: 12px;
        }

        .pd-breadcrumb svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            color: var(--red);
        }

        /* ── Listing Header ── */
        .pd-listing-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 8px;
        }

        .pd-listing-title {
            margin: 0;
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            font-weight: 700;
            color: var(--dark);
            font-family: Georgia, 'Times New Roman', serif;
        }

        .pd-listing-price {
            font-size: clamp(1.6rem, 2.8vw, 2.2rem);
            font-weight: 800;
            color: var(--red);
            margin: 0;
            white-space: nowrap;
        }

        /* ── Stats Bar ── */
        .pd-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 32px;
            padding-top: 28px;
            padding-bottom: 28px;
            border-top: 1px solid rgba(26, 26, 46, 0.1);
            border-bottom: 1px solid rgba(26, 26, 46, 0.1);
        }

        .pd-stat {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 8px;
            background: rgba(26, 26, 46, 0.04);
            font-size: 13px;
            font-weight: 600;
            color: var(--dark);
        }

        .pd-stat img {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        /* ── Two-Column Section ── */
        .pd-two-col {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 48px;
            margin-bottom: 48px;
        }

        /* ── About ── */
        .pd-about h2 {
            margin: 0 0 18px;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
        }

        .pd-about p {
            margin: 0 0 16px;
            font-size: 14px;
            line-height: 1.85;
            color: rgba(26, 26, 46, 0.78);
        }

        .pd-about ul {
            list-style: none;
            padding: 0;
            margin: 16px 0 0;
        }

        .pd-about ul li {
            position: relative;
            padding-left: 20px;
            font-size: 14px;
            line-height: 2;
            color: rgba(26, 26, 46, 0.78);
        }

        .pd-about ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--red);
            font-weight: 700;
        }

        /* ── Request Form ── */
        .pd-request-card {
            background: var(--white);
            border: 1px solid rgba(26, 26, 46, 0.1);
            border-radius: 16px;
            padding: 32px 28px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
            height: fit-content;
            position: sticky;
            top: 24px;
        }

        .pd-request-card h3 {
            margin: 0 0 24px;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--dark);
        }

        .pd-form-group {
            margin-bottom: 18px;
        }

        .pd-form-group input,
        .pd-form-group textarea {
            width: 100%;
            padding: 14px 16px;
            border-radius: 10px;
            border: 1px solid rgba(26, 26, 46, 0.14);
            background: #f8fafb;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            color: var(--dark);
            transition: border-color 0.2s, box-shadow 0.2s;
            outline: none;
        }

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

        .pd-form-group input:focus,
        .pd-form-group textarea:focus {
            border-color: rgba(232, 41, 42, 0.35);
            box-shadow: 0 0 0 4px rgba(232, 41, 42, 0.08);
        }

        .pd-form-submit {
            width: 100%;
            min-height: 48px;
            border: none;
            border-radius: 10px;
            background: var(--red);
            color: var(--white);
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
        }

        .pd-form-submit:hover {
            background: #cc1f1f;
            transform: translateY(-2px);
        }

        /* ── Features & Amenities ── */
        .pd-amenities {
            margin-bottom: 48px;
            padding-top: 32px;
            border-top: 1px solid rgba(26, 26, 46, 0.1);
        }

        .pd-amenities h2 {
            margin: 0 0 24px;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
        }

        .pd-amenities-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px 16px;
        }

        .pd-amenity {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 500;
            color: var(--dark);
        }

        .pd-amenity-icon {
            width: 26px;
            height: 26px;
            flex-shrink: 0;
        }

        /* ── Photo Gallery ── */
        .pd-gallery {
            margin-bottom: 48px;
        }

        .pd-gallery h2 {
            margin: 0 0 24px;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
        }

        .pd-gallery-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 16px;
        }

        .pd-gallery-item {
            border-radius: 12px;
            overflow: hidden;
            background: #e0e4ea;
        }

        .pd-gallery-item--large {
            grid-row: 1 / 3;
        }

        .pd-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.35s ease;
        }

        .pd-gallery-item:hover img {
            transform: scale(1.05);
        }

        /* ── Video Section ── */
        .pd-video {
            margin-bottom: 48px;
        }

        .pd-video h2 {
            margin: 0 0 24px;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
        }

        .pd-video-wrapper {
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            padding-bottom: 40%;
            background: #e0e4ea;
        }

        .pd-video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* ── Map Section ── */
        .pd-map {
            margin-bottom: 0;
            padding-bottom: 56px;
        }

        .pd-map h2 {
            margin: 0 0 24px;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
        }

        .pd-map-wrapper {
            border-radius: 12px;
            overflow: hidden;
            height: 320px;
            background: #e0e4ea;
        }

        .pd-map-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* ── Footer override ── */
        .footer {
            margin-top: 0;
        }

        /* ── Responsive ── */
        @media (max-width: 980px) {
            .pd-two-col {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .pd-request-card {
                position: static;
            }
        }

        @media (max-width: 760px) {
            .pd-content-wrapper {
                padding: 28px 20px 0;
            }

            .pd-gallery-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }

            .pd-gallery-item--large {
                grid-row: auto;
            }

            .pd-amenities-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pd-listing-header {
                flex-direction: column;
            }
        }

        @media (max-width: 560px) {
            .pd-amenities-grid {
                grid-template-columns: 1fr;
            }

            .pd-stats {
                gap: 10px;
            }

            .pd-stat {
                padding: 6px 12px;
                font-size: 12px;
            }
        }
/* Properties details page css end*/

/* Service details page css start*/
/* ── Hero Banner ── */
      .sd-hero {
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
        height: 343px;
        background-image: linear-gradient(rgba(30,30,40,0.55), rgba(30,30,40,0.55)),
                          url('../images/header/service-header-img.jpg');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 16px;
      }

      .sd-hero h1 {
        color: #fff;
        font-size: clamp(2.2rem, 4vw, 3.2rem);
        font-weight: 700;
        margin: 0;
        font-family: Georgia, 'Times New Roman', serif;
      }

      /* ── Content Wrapper ── */
      .sd-content-wrapper {
        background: #fff;
        border-radius: 28px 28px 0 0;
        margin-top: -28px;
        margin-left: -20px;
        margin-right: -20px;
        position: relative;
        z-index: 1;
        padding-top: 1px;
        padding-bottom: 80px;
      }

      /* ── Main Layout: left content + right sidebar ── */
      .sd-layout {
        max-width: 14000px;
        margin-top: 45px;
        padding: 0 40px;
        display: grid;
        grid-template-columns: 1fr 320px;
        gap: 48px;
        align-items: flex-start;
      }

      /* ══════════════════════════════
         LEFT COLUMN
      ══════════════════════════════ */

      /* Service image */
      .sd-main-img {
        width: 100%;
        border-radius: 16px;
        object-fit: cover;
        display: block;
        aspect-ratio: 4/3;
        margin-bottom: 32px;
      }

      /* About the service */
      .sd-section-title {
        font-size: 1.75rem;
        font-weight: 800;
        color: #000;
        margin: 0 0 16px;
        line-height: 1.2;
      }

      .sd-body-text {
        font-size: 0.95rem;
        line-height: 1.85;
        color: rgba(26,26,46,0.72);
        margin: 0 0 16px;
      }

      /* Why choose us */
      .sd-why-section {
        margin-top: 40px;
      }

      /* Feature grid 2x2 */
      .sd-features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px 40px;
        margin-top: 28px;
      }

      .sd-feature {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .sd-feature__top {
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .sd-feature__icon {
        width: 48px;
        height: 48px;
        background: #FE011E;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }

      .sd-feature__icon svg {
        width: 22px;
        height: 22px;
        color: #fff;
      }

      .sd-feature__name {
        font-size: 1.1rem;
        font-weight: 700;
        color: #000;
        margin: 0;
      }

      .sd-feature__desc {
        font-size: 0.9rem;
        line-height: 1.7;
        color: rgba(26,26,46,0.65);
        margin: 0;
      }

      /* Divider */
      .sd-divider {
        width: 100%;
        height: 1px;
        background: rgba(0,0,0,0.12);
        margin: 48px 0;
      }

      /* Services offered section */
      .sd-offered-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
      }

      .sd-offered-title {
        font-size: 1.6rem;
        font-weight: 800;
        color: #000;
        margin: 0 0 24px;
      }

      .sd-offered-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      .sd-offered-list li {
        display: flex;
        gap: 12px;
        font-size: 0.93rem;
        line-height: 1.7;
        color: rgba(26,26,46,0.75);
      }

      .sd-offered-list li strong {
        color: #000;
      }

      .sd-check-icon {
        width: 22px;
        height: 22px;
        background: #FE011E;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 2px;
      }

      .sd-check-icon svg {
        width: 12px;
        height: 12px;
        color: #fff;
      }

      .sd-offered-img {
        width: 100%;
        border-radius: 16px;
        object-fit: cover;
        display: block;
      }

      /* ══════════════════════════════
         RIGHT SIDEBAR
      ══════════════════════════════ */
      .sd-sidebar {
        display: flex;
        flex-direction: column;
        gap: 24px;
        position: sticky;
        top: 24px;
      }

      /* More Services box */
      .sd-more-services {
        border: 1px solid rgba(26,26,46,0.15);
        border-radius: 16px;
        overflow: hidden;
      }

      .sd-more-services__heading {
        font-size: 1.1rem;
        font-weight: 800;
        color: #000;
        padding: 20px 24px 16px;
        margin: 0;
        border-bottom: 1px solid rgba(26,26,46,0.1);
      }

      .sd-more-services__list {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .sd-more-services__list li {
        border-bottom: 1px solid rgba(26,26,46,0.08);
      }

      .sd-more-services__list li:last-child {
        border-bottom: none;
      }

      .sd-more-services__list a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 24px;
        font-size: 0.95rem;
        font-weight: 600;
        color: #000;
        text-decoration: none;
        transition: color 0.2s;
      }

      .sd-more-services__list a:hover {
        color: #FE011E;
      }

      .sd-more-services__list a svg {
        width: 16px;
        height: 16px;
        color: rgba(26,26,46,0.4);
        flex-shrink: 0;
      }

      .sd-more-services__list a:hover svg {
        color: #FE011E;
      }

      /* Contact CTA box */
      .sd-contact-box {
        border-radius: 16px;
        overflow: hidden;
        position: relative;
        min-height: 160px;
        background-image: linear-gradient(rgba(20,20,30,0.62), rgba(20,20,30,0.62)),
                          url('../images/services/service-side-banner.png');
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 28px 24px;
        text-align: center;
        gap: 10px;
      }

      .sd-contact-box__logo {
        width: 40px;
        height: auto;
        margin-bottom: 4px;
      }

      .sd-contact-box__label {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.85);
        margin: 0;
        font-weight: 500;
      }

      .sd-contact-box__phone {
        font-size: 1.15rem;
        font-weight: 700;
        color: #fff;
        margin: 0;
        text-decoration: underline;
        text-underline-offset: 3px;
      }

      /* ── Responsive ── */
      @media (max-width: 900px) {
        .sd-layout {
          grid-template-columns: 1fr;
          padding: 0 24px;
        }
        .sd-sidebar {
          position: static;
        }
        .sd-features-grid {
          grid-template-columns: 1fr;
          gap: 24px;
        }
        .sd-offered-layout {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 560px) {
        .sd-layout { padding: 0 16px; margin-top: 36px; }
        .sd-offered-layout { grid-template-columns: 1fr; }
      }
/* Service details page css end*/

/* Service  page css start*/
  /* ── Services Hero Banner ── */
      .services-hero {
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
        height: 343px;
        background-image: linear-gradient(rgba(30,30,40,0.55), rgba(30,30,40,0.55)),
                          url('../images/header/service-header-img.jpg');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 16px;
      }

      .services-hero h1 {
        color: #fff;
        font-size: clamp(2.2rem, 4vw, 3.2rem);
        font-weight: 700;
        margin: 0;
        font-family: Georgia, 'Times New Roman', serif;
      }

      /* ── Content Wrapper (rounded top corners) ── */
      .services-content-wrapper {
        background: #fff;
        border-radius: 28px 28px 0 0;
        margin-top: -28px;
        margin-left: -20px;
        margin-right: -20px;
        position: relative;
        z-index: 1;
        padding-top: 1px;
        padding-bottom: 80px;
      }

      /* ── Intro Section ── */
      .sv-intro-section {
        max-width: 1400px;
        margin: 64px auto 56px;
        padding: 0 40px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 48px;
      }

      .sv-intro-badge {
        display: inline-flex;
        align-items: center;
        padding: 7px 18px;
        border: 1.5px solid var(--red);
        border-radius: 999px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--dark);
        white-space: nowrap;
        flex-shrink: 0;
      }

      .sv-intro-title {
        margin: 0;
        font-size: clamp(1.6rem, 3.8vw, 3.8rem);
        font-weight: 800;
        line-height: 1.2;
        color: var(--dark);
      }

      /* ── Services Grid ── */
      .sv-grid {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
      }

      /* ── Service Card ── */
      .sv-card {
        background: #fff;
        border-radius: 25px;
        border: 1px solid #62616154;
        display: flex;
        flex-direction: column;
        padding: 16px;
        position: relative;
      }

      /* Image area */
      .sv-card__img-wrap {
        position: relative;
        width: 100%;
        border-radius: 15px;
        overflow: hidden;
        flex-shrink: 0;
        aspect-ratio: 16/9;
      }

      .sv-card__img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 15px;
        transition: transform 0.4s ease;
      }

      .sv-card:hover .sv-card__img-wrap img {
        transform: scale(1.04);
      }

      /* Arrow button — sits at bottom-right corner of image, half overlapping */
      .sv-card__img-wrap {
        position: relative;
      }

      .sv-card__arrow-wrap {
        position: absolute;
        bottom: -12px;
        right: -13px;
        width: 46px;
        height: 46px;
        z-index: 2;
      }

      .sv-card__arrow {
        width: 30px;
        height: 30px;
        background: #FE011E;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .sv-card__arrow svg {
        width: 20px;
        height: 20px;
        color: #fff;
      }

      /* Body */
      .sv-card__body {
        padding: 20px 4px 8px;
        display: flex;
        flex-direction: column;
        flex: 1;
      }

      .sv-card__title {
        margin: 0 0 14px;
        font-size: 1.3rem;
        font-weight: 700;
        color: #000;
        line-height: 1.2;
      }

      .sv-card__divider {
        width: 100%;
        height: 1px;
        background: rgba(0,0,0,0.25);
        margin-bottom: 14px;
      }

      .sv-card__desc {
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.75;
        color: #000;
        font-weight: 400;
      }

      /* ── Responsive ── */
      @media (max-width: 1024px) {
        .sv-grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px; }
        .sv-intro-section { flex-direction: column; gap: 16px; padding: 0 24px; }
        .sv-intro-title { max-width: 100%; }
      }

      @media (max-width: 560px) {
        .sv-grid { grid-template-columns: 1fr; padding: 0 16px; }
        .sv-intro-section { padding: 0 16px; margin: 40px auto 40px; }
        .sv-card__arrow-wrap { right: 8px; }
      }
/* Service  page css end*/

