/* ====================================
   GLOBAL BASE
==================================== */

*,*::before,*::after{box-sizing:border-box}

/* ── Composited hover transitions for all interactive cards ── */

body{
  font-family:"Segoe UI","Helvetica Neue",Arial,sans-serif;
  color:#000;
  margin:0;
}

h1,h2,h3,h4,h5,h6{font-weight:800}

/* ====================================
   HERO SECTION
==================================== */

.construction-hero {
  position: relative;
  background-color: #ffffff;
  color: #000000;
  padding: 80px 20px 70px;
  overflow: hidden;
}

.construction-hero__container {
  max-width: 1360px;
  margin: 0 auto;
}

/* ====================================
   HERO GRID
==================================== */

.construction-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 70px;
  align-items: center;
}

/* ====================================
   CONTENT AREA
==================================== */

.construction-hero__content {
  position: relative;
  z-index: 2;
}

.construction-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(193, 154, 107, 0.4);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  line-height: 1.5;
  background-color: #ffffff;
}

.construction-hero__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #c19a6b;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ====================================
   MAIN HEADING
==================================== */

.construction-hero__title {
  margin: 0 0 30px;
  font-size: clamp(2.3rem, 4.5vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 820px;
}

.construction-hero__title span {
  color: #c19a6b;
}

.construction-hero__text {
  max-width: 760px;
}

.construction-hero__text p {
  margin: 0 0 22px;
  font-size: 1rem;
  line-height: 1.9;
}

/* ====================================
   CTA AREA
==================================== */

.construction-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}

.construction-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease;
  border: 1px solid #000000;
  position: relative;
  overflow: hidden;
}

.construction-hero__btn--primary {
  background-color: #000000;
  color: #ffffff;
}

.construction-hero__btn--primary:hover {
  background-color: #c19a6b;
  border-color: #c19a6b;
}

.construction-hero__btn--secondary {
  background-color: transparent;
  color: #000000;
}

.construction-hero__btn--secondary:hover {
  border-color: #c19a6b;
  color: #c19a6b;
}

/* ====================================
   STATS GRID
==================================== */

.construction-hero__facts {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 18px;
  margin-top: 65px;
}

.construction-hero__fact-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 24px;
  transition: border-color 0.35s ease, transform 0.35s ease;
  background-color: #ffffff;
}

.construction-hero__fact-card:hover {
  border-color: #c19a6b;
  transform: translateY(-4px);
}

.construction-hero__fact-number {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
  color: #c19a6b;
  margin-bottom: 12px;
}

.construction-hero__fact-text {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ====================================
   IMAGE AREA
==================================== */

.construction-hero__media {
  position: relative;
}

.construction-hero__image-wrapper {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
}

.construction-hero__image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 760px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.construction-hero__image-wrapper:hover .construction-hero__image {
  transform: scale(1.04);
}

/* ====================================
   FLOATING OVERLAY CARD
==================================== */

.construction-hero__overlay {
  position: absolute;
  left: -40px;
  bottom: 40px;
  width: 100%;
  max-width: 360px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 34px;
}

.construction-hero__overlay-number {
  font-size: 3.4rem;
  line-height: 1;
  color: #c19a6b;
  margin-bottom: 16px;
}

.construction-hero__overlay-title {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.construction-hero__overlay-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.construction-hero__overlay-list li {
  position: relative;
  padding: 12px 0 12px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  line-height: 1.6;
  font-size: 0.92rem;
}

.construction-hero__overlay-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 7px;
  height: 7px;
  background-color: #c19a6b;
  border-radius: 50%;
}

/* ====================================
   RESPONSIVE
==================================== */

@media (min-width: 640px) {
  .construction-hero__facts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .construction-hero {
    padding: 100px 40px 90px;
  }

  .construction-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(500px, 0.95fr);
    gap: 90px;
  }

  .construction-hero__facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .construction-hero__image {
    height: 760px;
  }
}

@media (max-width: 1199px) {
  .construction-hero__overlay {
    left: 24px;
    bottom: 24px;
  }
}

@media (max-width: 991px) {
  .construction-hero {
    padding: 110px 24px 80px;
  }

  .construction-hero__title {
    max-width: 100%;
  }

  .construction-hero__text {
    max-width: 100%;
  }

  .construction-hero__media {
    max-width: 820px;
  }

  .construction-hero__overlay {
    max-width: 340px;
  }
}

@media (max-width: 767px) {
  .construction-hero {
    padding: 48px 20px 60px;
  }

  .construction-hero__grid {
    gap: 50px;
  }

  .construction-hero__title {
    font-size: clamp(2rem, 8vw, 3.6rem);
    line-height: 1.1;
  }

  .construction-hero__actions {
    flex-direction: column;
  }

  .construction-hero__btn {
    width: 100%;
  }

  .construction-hero__image {
    min-height: 340px;
    height: 480px;
  }

  .construction-hero__overlay {
    position: relative;
    left: auto;
    bottom: auto;
    margin: -40px 20px 0;
    max-width: calc(100% - 40px);
    padding: 28px;
  }

  .construction-hero__overlay-number {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .construction-hero__badge {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .construction-hero__fact-card {
    padding: 22px;
  }

  .construction-hero__overlay {
    margin: -30px 15px 0;
    max-width: calc(100% - 30px);
    padding: 24px;
  }

  .construction-hero__title {
    font-size: 1.9rem;
  }
}

/* section 2 : Reputation Built Through Results*/
/* ====================================
   TRUST & AUTHORITY SECTION
==================================== */

.trust-section {
  position: relative;
  padding: 110px 20px;
  background-color: #ffffff;
  color: #000000;
  overflow: hidden;
}

.trust-section__container {
  max-width: 1360px;
  margin: 0 auto;
}

/* ====================================
   SECTION HEADER
==================================== */

.trust-section__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 70px;
  align-items: end;
}

.trust-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: #c19a6b;
}

.trust-section__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #c19a6b;
  border-radius: 50%;
}

.trust-section__title {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 700px;
}

.trust-section__description {
  max-width: 580px;
}

.trust-section__description p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
}

/* ====================================
   FEATURED IMAGE AREA
==================================== */

.trust-section__featured {
  position: relative;
  margin-bottom: 80px;
}

.trust-section__featured-wrapper {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.trust-section__featured-image {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.trust-section__featured-wrapper:hover .trust-section__featured-image {
  transform: scale(1.04);
}

/* ====================================
   FLOATING INFO CARD
==================================== */

.trust-section__floating-card {
  position: absolute;
  right: 40px;
  bottom: -40px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 34px;
  width: 100%;
  max-width: 380px;
}

.trust-section__floating-number {
  font-size: 3rem;
  line-height: 1;
  color: #c19a6b;
  margin-bottom: 16px;
}

.trust-section__floating-text {
  font-size: 1rem;
  line-height: 1.8;
}

/* ====================================
   METRICS GRID
==================================== */

.trust-section__metrics {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 22px;
}

.trust-section__card {
  position: relative;
  padding: 34px 30px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: border-color 0.35s ease, transform 0.35s ease;
  background-color: #ffffff;
}

.trust-section__card:hover {
  border-color: #c19a6b;
  transform: translateY(-5px);
}

.trust-section__metric {
  font-size: 3rem;
  line-height: 1;
  color: #c19a6b;
  margin-bottom: 18px;
}

.trust-section__card-title {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 16px;
}

.trust-section__card-text {
  font-size: 0.96rem;
  line-height: 1.8;
}

/* ====================================
   TRUSTED BY AREA
==================================== */

.trust-section__trusted {
  margin-top: 90px;
  padding-top: 45px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.trust-section__trusted-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-section__trusted-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c19a6b;
}

/* ====================================
   LOGO GRID
==================================== */

.trust-section__logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.trust-section__logo-item {
  position: relative;
  height: 90px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.35s ease;
}

.trust-section__logo-item:hover {
  border-color: #c19a6b;
}

.trust-section__logo-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(0,0,0,.38);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0 14px;
  line-height: 1.5;
}

/* ====================================
   RESPONSIVE
==================================== */

@media (min-width: 768px) {
  .trust-section__metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-section__logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .trust-section {
    padding: 130px 40px;
  }

  .trust-section__header {
    grid-template-columns: 1fr auto;
  }

  .trust-section__metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-section__logos {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 991px) {
  .trust-section__featured-image {
    height: 520px;
  }

  .trust-section__floating-card {
    right: 24px;
    bottom: 24px;
  }
}

@media (max-width: 767px) {
  .trust-section {
    padding: 90px 20px;
  }

  .trust-section__header {
    margin-bottom: 50px;
  }

  .trust-section__featured {
    margin-bottom: 60px;
  }

  .trust-section__featured-image {
    height: 420px;
  }

  .trust-section__floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: 100%;
    margin: -30px 20px 0;
    padding: 28px;
  }

  .trust-section__metric {
    font-size: 2.5rem;
  }

  .trust-section__card {
    padding: 28px 24px;
  }

  .trust-section__logo-item {
    height: 80px;
  }
}

@media (max-width: 480px) {
  .trust-section__logos {
    grid-template-columns: 1fr;
  }

  .trust-section__floating-card {
    margin: -20px 15px 0;
  }

  .trust-section__title {
    font-size: 2rem;
  }
}

/* section 3 : Reputation Built Through Results*/
/* ====================================
   ABOUT COMPANY SECTION
==================================== */

.about-company {
  position: relative;
  padding: 100px 20px;
  background-color: #ffffff;
  color: #000000;
  overflow: visible;
}

.about-company__container {
  max-width: 1360px;
  margin: 0 auto;
}

/* ====================================
   SECTION HEADER
==================================== */

.about-company__header {
  margin-bottom: 80px;
}

.about-company__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: #c19a6b;
}

.about-company__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #c19a6b;
  border-radius: 50%;
}

.about-company__title {
  margin: 0;
  max-width: 860px;
  font-size: clamp(2.4rem, 4vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

/* ====================================
   MAIN GRID
==================================== */

.about-company__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 70px;
  align-items: start;
}

/* ====================================
   STICKY IMAGE COLUMN
==================================== */

.about-company__media {
  position: relative;
}

@media (min-width: 1100px) {

  .about-company__grid {
    grid-template-columns: minmax(480px, 540px) minmax(0, 1fr);
    gap: 100px;
    align-items: start;
  }

  .about-company__media {
    position: sticky;
    top: 90px;
    align-self: start;
    height: fit-content;
  }

}

/* ====================================
   IMAGE WRAPPER
==================================== */

.about-company__image-wrapper {
  position: relative;
  overflow: visible;
  background-color: #ffffff;
}

.about-company__image {
  width: 100%;
  height: 760px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.about-company__image-wrapper:hover .about-company__image {
  transform: scale(1.03);
}

/* ====================================
   FLOATING EXPERIENCE CARD
==================================== */

.about-company__floating-card {
  position: absolute;
  left: -40px;
  bottom: 40px;
  width: 100%;
  max-width: 420px;
  padding: 40px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  z-index: 5;
}

.about-company__floating-number {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 20px;
  color: #c19a6b;
}

.about-company__floating-text {
  font-size: 1rem;
  line-height: 1.9;
}

/* ====================================
   CONTENT AREA
==================================== */

.about-company__content {
  max-width: 760px;
}

.about-company__content p {
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.9;
}

/* ====================================
   SECTION TITLES
==================================== */

.about-company__section-title {
  margin-bottom: 30px;
  font-size: 1.3rem;
  line-height: 1.4;
}

/* ====================================
   PHILOSOPHY AREA
==================================== */

.about-company__philosophy {
  margin-top: 65px;
}

.about-company__philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.about-company__philosophy-card {
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.about-company__philosophy-card:hover {
  border-color: #c19a6b;
  transform: translateY(-4px);
}

.about-company__philosophy-title {
  margin-bottom: 16px;
  font-size: 1.18rem;
}

.about-company__philosophy-text {
  font-size: 0.96rem;
  line-height: 1.8;
}

/* ====================================
   FEATURES AREA
==================================== */

.about-company__features {
  margin-top: 65px;
}

.about-company__features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.about-company__feature-item {
  position: relative;
  padding: 20px 20px 20px 54px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  line-height: 1.7;
  transition: border-color 0.35s ease;
}

.about-company__feature-item:hover {
  border-color: #c19a6b;
}

.about-company__feature-item::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 28px;
  width: 10px;
  height: 10px;
  background-color: #c19a6b;
  border-radius: 50%;
}

/* ====================================
   EXPERTISE AREA
==================================== */

.about-company__expertise {
  margin-top: 65px;
  padding: 38px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
}

.about-company__expertise-title {
  margin-bottom: 18px;
  font-size: 1.25rem;
}

.about-company__expertise-text {
  font-size: 0.98rem;
  line-height: 1.9;
}

/* ====================================
   CTA AREA
==================================== */

.about-company__actions {
  margin-top: 55px;
}

.about-company__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 34px;
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  text-decoration: none;
  transition: background-color 0.35s ease, border-color 0.35s ease;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.about-company__btn:hover {
  background-color: #c19a6b;
  border-color: #c19a6b;
}

/* ====================================
   RESPONSIVE
==================================== */

@media (min-width: 768px) {

  .about-company__features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-company__philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (min-width: 1280px) {

  .about-company__philosophy-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width: 1199px) {

  .about-company__floating-card {
    left: 24px;
    bottom: 24px;
    max-width: 360px;
  }

}

@media (max-width: 991px) {

  .about-company {
    padding: 110px 24px;
  }

  .about-company__image {
    height: 600px;
  }

}

@media (max-width: 767px) {

  .about-company {
    padding: 90px 20px;
  }

  .about-company__header {
    margin-bottom: 55px;
  }

  .about-company__grid {
    gap: 50px;
  }

  .about-company__image {
    height: 460px;
  }

  .about-company__floating-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin: -30px auto 0;
    max-width: calc(100% - 40px);
    padding: 28px;
  }

  .about-company__philosophy-card {
    padding: 26px;
  }

  .about-company__expertise {
    padding: 28px;
  }

}

@media (max-width: 480px) {

  .about-company__title {
    font-size: 2rem;
  }

  .about-company__feature-item {
    padding: 18px 18px 18px 48px;
  }

  .about-company__floating-card {
    max-width: calc(100% - 20px);
    padding: 24px;
  }

  .about-company__floating-number {
    font-size: 3rem;
  }

  .about-company__btn {
    width: 100%;
  }

}
/* section 4 start: core services section */

/* ====================================
   CORE SERVICES SECTION
==================================== */

.core-services {
  position: relative;
  padding: 100px 20px;
  background-color: #ffffff;
  color: #000000;
}

.core-services__container {
  max-width: 1380px;
  margin: 0 auto;
}

/* ====================================
   SECTION HEADER
==================================== */

.core-services__header {
  margin-bottom: 90px;
  max-width: 900px;
}

.core-services__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: #c19a6b;
}

.core-services__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #c19a6b;
  border-radius: 50%;
}

.core-services__title {
  margin: 0 0 26px;
  font-size: clamp(2.5rem, 4vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.core-services__subtitle {
  margin: 0;
  max-width: 760px;
  line-height: 1.9;
  font-size: 1rem;
}

/* ====================================
   SERVICES GRID
==================================== */

.core-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* ====================================
   SERVICE CARD
==================================== */

.core-services__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.core-services__card:hover {
  border-color: #c19a6b;
  transform: translateY(-4px);
}

/* ====================================
   IMAGE AREA
==================================== */

.core-services__media {
  position: relative;
  overflow: hidden;
}

.core-services__image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.core-services__card:hover .core-services__image {
  transform: scale(1.04);
}

.core-services__number {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #c19a6b;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

/* ====================================
   CONTENT AREA
==================================== */

.core-services__content {
  padding: 40px;
}

.core-services__service-title {
  margin: 0 0 22px;
  font-size: 1.8rem;
  line-height: 1.2;
}

.core-services__description {
  margin: 0 0 30px;
  line-height: 1.9;
  font-size: 0.98rem;
}

/* ====================================
   FEATURES LIST
==================================== */

.core-services__list {
  display: grid;
  gap: 16px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.core-services__list-item {
  position: relative;
  padding-left: 26px;
  line-height: 1.8;
}

.core-services__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #c19a6b;
}

/* ====================================
   LINK
==================================== */

.core-services__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #000000;
  font-size: 0.95rem;
  transition: color 0.35s ease;
}

.core-services__link:hover {
  color: #c19a6b;
}

.core-services__link::after {
  content: "→";
  transition: transform 0.35s ease;
}

.core-services__link:hover::after {
  transform: translateX(4px);
}

/* ====================================
   CTA AREA
==================================== */

.core-services__cta {
  margin-top: 90px;
  padding: 60px 50px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
}

.core-services__cta-text {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.6;
}

.core-services__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 34px;
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  text-decoration: none;
  transition: background-color 0.35s ease, border-color 0.35s ease;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.core-services__btn:hover {
  background-color: #c19a6b;
  border-color: #c19a6b;
}

/* ====================================
   RESPONSIVE
==================================== */

@media (min-width: 992px) {

  .core-services__card {
    grid-template-columns: 480px 1fr;
  }

  .core-services__image {
    height: 100%;
  }

}

@media (min-width: 1200px) {

  .core-services__card:nth-child(even) {
    grid-template-columns: 1fr 480px;
  }

  .core-services__card:nth-child(even) .core-services__media {
    order: 2;
  }

  .core-services__card:nth-child(even) .core-services__content {
    order: 1;
  }

}

@media (max-width: 991px) {

  .core-services {
    padding: 110px 24px;
  }

  .core-services__content {
    padding: 34px;
  }

}

@media (max-width: 767px) {

  .core-services {
    padding: 90px 20px;
  }

  .core-services__header {
    margin-bottom: 60px;
  }

  .core-services__grid {
    gap: 30px;
  }

  .core-services__image {
    height: 260px;
  }

  .core-services__content {
    padding: 28px;
  }

  .core-services__service-title {
    font-size: 1.5rem;
  }

  .core-services__cta {
    margin-top: 70px;
    padding: 40px 24px;
  }

}

@media (max-width: 480px) {

  .core-services__title {
    font-size: 2rem;
  }

  .core-services__btn {
    width: 100%;
  }

}
/* ====================================
   FEATURED PROJECTS SECTION start
==================================== */
.featured-projects{
  padding:140px 20px;
  background:#ffffff;
  color:#000000;
}

.featured-projects__container{
  max-width:1380px;
  margin:0 auto;
}

/* ====================================
   HEADER
==================================== */

.featured-projects__header{
  max-width:850px;
  margin-bottom:90px;
}

.featured-projects__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:24px;
  color:#c19a6b;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.78rem;
}

.featured-projects__eyebrow:before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:#c19a6b;
}

.featured-projects__title{
  margin:0 0 24px;
  font-size:clamp(2.5rem,4vw,5rem);
  line-height:1.08;
  letter-spacing:-.04em;
}

.featured-projects__subtitle{
  margin:0;
  line-height:1.9;
  max-width:700px;
}

/* ====================================
   PROJECT GRID
==================================== */

.featured-projects__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:35px;
}

/* ====================================
   PROJECT CARD
==================================== */

.featured-projects__card{
  border:1px solid rgba(0,0,0,.08);
  background:#ffffff;
  overflow:hidden;
  transition:border-color .35s ease,transform .35s ease;
}

.featured-projects__card:hover{
  border-color:#c19a6b;
  transform:translateY(-5px);
}

.featured-projects__image-wrap{
  position:relative;
  overflow:hidden;
}

.featured-projects__image{
  width:100%;
  height:340px;
  object-fit:cover;
  display:block;
  transition:transform .8s ease;
}

.featured-projects__card:hover .featured-projects__image{
  transform:scale(1.05);
}

.featured-projects__category{
  position:absolute;
  top:25px;
  left:25px;
  background:#ffffff;
  border:1px solid rgba(0,0,0,.08);
  padding:12px 16px;
  color:#c19a6b;
  font-size:.75rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.featured-projects__content{
  padding:40px;
}

.featured-projects__project-title{
  margin:0 0 28px;
  font-size:1.6rem;
  line-height:1.3;
}

.featured-projects__meta{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-bottom:30px;
}

.featured-projects__meta-item{
  border-top:1px solid rgba(0,0,0,.08);
  padding-top:14px;
}

.featured-projects__label{
  display:block;
  color:#c19a6b;
  font-size:.75rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:8px;
}

.featured-projects__value{
  line-height:1.7;
}

.featured-projects__block{
  margin-bottom:28px;
}

.featured-projects__block-title{
  margin:0 0 12px;
  font-size:1rem;
}

.featured-projects__text{
  line-height:1.9;
}

.featured-projects__outcome{
  padding:24px;
  border:1px solid rgba(0,0,0,.08);
}

.featured-projects__outcome-title{
  color:#c19a6b;
  margin-bottom:10px;
}

/* ====================================
   CTA
==================================== */

.featured-projects__cta{
  margin-top:90px;
  text-align:center;
  border:1px solid rgba(0,0,0,.08);
  padding:70px 40px;
}

.featured-projects__cta-text{
  max-width:850px;
  margin:0 auto 35px;
  line-height:1.9;
}

.featured-projects__actions{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:16px;
}

.featured-projects__btn{
  min-height:58px;
  padding:0 34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border:1px solid #000;
  transition:background-color .35s ease,border-color .35s ease,color .35s ease;
}

.featured-projects__btn--primary{
  background:#000;
  color:#fff;
}

.featured-projects__btn--primary:hover{
  background:#c19a6b;
  border-color:#c19a6b;
}

.featured-projects__btn--secondary{
  color:#000;
}

.featured-projects__btn--secondary:hover{
  border-color:#c19a6b;
  color:#c19a6b;
}

/* ====================================
   RESPONSIVE
==================================== */

@media(min-width:992px){

.featured-projects__grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:767px){

.featured-projects{
padding:90px 20px;
}

.featured-projects__content{
padding:28px;
}

.featured-projects__meta{
grid-template-columns:1fr;
}

.featured-projects__actions{
flex-direction:column;
}

.featured-projects__btn{
width:100%;
}

}
/* ====================================
   FEATURED PROJECTS SECTION end
==================================== */
/* ====================================
   WHY CHOOSE US SECTION
==================================== */

.why-choose {
  padding: 100px 20px;
  background: #ffffff;
  color: #000000;
}

.why-choose__container {
  max-width: 1380px;
  margin: 0 auto;
}

/* ====================================
   HEADER
==================================== */

.why-choose__header{
  max-width:850px;
  margin-bottom:90px;
}

.why-choose__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:24px;
  color:#c19a6b;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.78rem;
}

.why-choose__eyebrow:before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:#c19a6b;
}

.why-choose__title{
  margin:0 0 24px;
  font-size:clamp(2.5rem,4vw,5rem);
  line-height:1.08;
  letter-spacing:-.04em;
}

.why-choose__subtitle{
  margin:0;
  max-width:760px;
  line-height:1.9;
}

/* ====================================
   GRID
==================================== */

.why-choose__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:30px;
}

/* ====================================
   CARD
==================================== */

.why-choose__card{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  border:1px solid rgba(0,0,0,.08);
  transition:border-color .35s ease,transform .35s ease;
  background:#fff;
}

.why-choose__card:hover{
  border-color:#c19a6b;
  transform:translateY(-5px);
}

.why-choose__media{
  background:#f5f5f5;
  border-bottom:1px solid rgba(0,0,0,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:36px 24px;
  min-height:120px;
}

.why-choose__number{
  width:68px;
  height:68px;
  background:#ffffff;
  border:1px solid rgba(0,0,0,.1);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#c19a6b;
  font-size:1rem;
  font-weight:800;
  letter-spacing:.1em;
}

.why-choose__content{
  padding:42px;
}

.why-choose__card-title{
  margin:0 0 22px;
  font-size:1.6rem;
  line-height:1.35;
}

.why-choose__text{
  line-height:1.95;
  margin-bottom:20px;
}

.why-choose__text:last-child{
  margin-bottom:0;
}

/* ====================================
   CTA
==================================== */

.why-choose__cta{
  margin-top:90px;
  border:1px solid rgba(0,0,0,.08);
  text-align:center;
  padding:70px 40px;
}

.why-choose__cta-text{
  max-width:780px;
  margin:0 auto 32px;
  line-height:1.9;
  font-size:clamp(1.1rem,2vw,1.6rem);
}

.why-choose__btn{
  min-height:58px;
  padding:0 36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background:#000000;
  color:#ffffff;
  border:1px solid #000000;
  transition:background-color .35s ease,border-color .35s ease;
}

.why-choose__btn:hover{
  background:#c19a6b;
  border-color:#c19a6b;
}

/* ====================================
   RESPONSIVE
==================================== */

@media(min-width:992px){

.why-choose__grid{
grid-template-columns:repeat(2,1fr);
}

.why-choose__card{
grid-template-columns:140px 1fr;
align-items:stretch;
}

.why-choose__media{
border-bottom:none;
border-right:1px solid rgba(0,0,0,.08);
padding:24px;
min-height:auto;
}

}

@media(max-width:767px){

.why-choose{
padding:90px 20px;
}

.why-choose__header{
margin-bottom:60px;
}

.why-choose__content{
padding:28px;
}

.why-choose__image{
height:260px;
}

.why-choose__cta{
padding:45px 25px;
margin-top:70px;
}

.why-choose__btn{
width:100%;
}

}
/* ====================================
   WHY CHOOSE US SECTION end
==================================== */
/* ====================================
   CONSTRUCTION PROCESS SECTION start
==================================== */
.construction-process{
padding:140px 20px;
background:#ffffff;
color:#000000;
overflow:hidden;
}

.construction-process__container{
max-width:1380px;
margin:0 auto;
}

/* ====================================
   HEADER
==================================== */

.construction-process__header{
max-width:850px;
margin-bottom:100px;
}

.construction-process__eyebrow{
display:inline-flex;
align-items:center;
gap:10px;
margin-bottom:24px;
font-size:.78rem;
text-transform:uppercase;
letter-spacing:.08em;
color:#c19a6b;
}

.construction-process__eyebrow:before{
content:"";
width:8px;
height:8px;
background:#c19a6b;
border-radius:50%;
}

.construction-process__title{
margin:0 0 24px;
font-size:clamp(2.5rem,4vw,5rem);
line-height:1.08;
letter-spacing:-.04em;
}

.construction-process__subtitle{
margin:0;
max-width:760px;
line-height:1.9;
}

/* ====================================
   TIMELINE
==================================== */

.construction-process__timeline{
position:relative;
display:grid;
gap:40px;
}

.construction-process__timeline:before{
content:"";
position:absolute;
left:32px;
top:0;
bottom:0;
width:1px;
background:rgba(0,0,0,.08);
}

/* ====================================
   STEP CARD
==================================== */

.construction-process__step{
position:relative;
display:grid;
grid-template-columns:80px 1fr;
gap:30px;
align-items:start;
}

.construction-process__number{
position:relative;
z-index:2;
width:64px;
height:64px;
display:flex;
align-items:center;
justify-content:center;
background:#ffffff;
border:1px solid rgba(0,0,0,.08);
color:#c19a6b;
font-size:.85rem;
letter-spacing:.12em;
}

.construction-process__card{
padding:42px;
border:1px solid rgba(0,0,0,.08);
background:#ffffff;
transition:border-color .35s ease,transform .35s ease;
}

.construction-process__card:hover{
border-color:#c19a6b;
transform:translateY(-5px);
}

.construction-process__step-title{
margin:0 0 20px;
font-size:1.7rem;
line-height:1.3;
}

.construction-process__text{
line-height:1.95;
margin-bottom:20px;
}

.construction-process__text:last-child{
margin-bottom:0;
}

.construction-process__duration{
display:inline-flex;
padding:12px 18px;
border:1px solid rgba(0,0,0,.08);
margin-top:14px;
color:#c19a6b;
font-size:.85rem;
text-transform:uppercase;
letter-spacing:.08em;
}

/* ====================================
   CTA
==================================== */

.construction-process__cta{
margin-top:90px;
padding:70px 40px;
border:1px solid rgba(0,0,0,.08);
text-align:center;
}

.construction-process__cta-text{
max-width:750px;
margin:0 auto 32px;
font-size:clamp(1.15rem,2vw,1.7rem);
line-height:1.7;
}

.construction-process__btn{
display:inline-flex;
align-items:center;
justify-content:center;
min-height:58px;
padding:0 36px;
background:#000000;
color:#ffffff;
border:1px solid #000000;
text-decoration:none;
transition:background-color .35s ease,border-color .35s ease;
}

.construction-process__btn:hover{
background:#c19a6b;
border-color:#c19a6b;
}

/* ====================================
   RESPONSIVE
==================================== */

@media(max-width:767px){

.construction-process{
padding:90px 20px;
}

.construction-process__header{
margin-bottom:60px;
}

.construction-process__timeline:before{
left:20px;
}

.construction-process__step{
grid-template-columns:40px 1fr;
gap:20px;
}

.construction-process__number{
width:40px;
height:40px;
font-size:.7rem;
}

.construction-process__card{
padding:28px;
}

.construction-process__step-title{
font-size:1.35rem;
}

.construction-process__cta{
padding:45px 24px;
margin-top:70px;
}

.construction-process__btn{
width:100%;
}

}
/* ====================================
   CONSTRUCTION PROCESS SECTION end
==================================== */
/* ====================================
   STATISTICS & ACHIEVEMENTS SECTION sart
==================================== */
.construction-stats{
padding:140px 20px;
background:#000000;
color:#ffffff;
position:relative;
overflow:hidden;
}

.construction-stats__container{
max-width:1380px;
margin:0 auto;
}

/* ====================================
   HEADER
==================================== */

.construction-stats__header{
max-width:850px;
margin-bottom:90px;
}

.construction-stats__eyebrow{
display:inline-flex;
align-items:center;
gap:10px;
margin-bottom:24px;
font-size:.78rem;
letter-spacing:.08em;
text-transform:uppercase;
color:#c19a6b;
}

.construction-stats__eyebrow:before{
content:"";
width:8px;
height:8px;
background:#c19a6b;
border-radius:50%;
}

.construction-stats__title{
margin:0 0 24px;
font-size:clamp(2.5rem,4vw,5rem);
line-height:1.08;
letter-spacing:-.04em;
}

.construction-stats__subtitle{
margin:0;
max-width:760px;
line-height:1.9;
color:#ffffff;
opacity:.8;
}

/* ====================================
   GRID
==================================== */

.construction-stats__grid{
display:grid;
grid-template-columns:1fr;
gap:25px;
}

/* ====================================
   STAT CARD
==================================== */

.construction-stats__card{
padding:40px;
border:1px solid rgba(255,255,255,.08);
background:rgba(255,255,255,.02);
transition:border-color .35s ease,transform .35s ease;
}

.construction-stats__card:hover{
border-color:#c19a6b;
transform:translateY(-6px);
}

.construction-stats__number{
font-size:clamp(3rem,5vw,4.5rem);
line-height:1;
color:#c19a6b;
margin-bottom:22px;
letter-spacing:-.04em;
}

.construction-stats__card-title{
margin:0 0 20px;
font-size:1.4rem;
line-height:1.4;
}

.construction-stats__text{
margin:0;
line-height:1.95;
color:#ffffff;
opacity:.82;
}

/* ====================================
   STATEMENT AREA
==================================== */

.construction-stats__statement{
margin-top:90px;
padding:70px;
border:1px solid rgba(255,255,255,.08);
text-align:center;
}

.construction-stats__statement-title{
margin:0 0 25px;
font-size:1.8rem;
}

.construction-stats__statement-text{
margin:0 auto;
max-width:900px;
line-height:2;
opacity:.9;
}

/* ====================================
   RESPONSIVE
==================================== */

@media(min-width:768px){

.construction-stats__grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(min-width:1200px){

.construction-stats__grid{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:767px){

.construction-stats{
padding:90px 20px;
}

.construction-stats__header{
margin-bottom:60px;
}

.construction-stats__card{
padding:28px;
}

.construction-stats__statement{
padding:40px 25px;
margin-top:70px;
}

.construction-stats__statement-title{
font-size:1.4rem;
}

}
/* ====================================
   STATISTICS & ACHIEVEMENTS SECTION end
==================================== */
/* ====================================
   AREAS WE SERVE SECTION
==================================== */
/* ====================================
   AREAS WE SERVE SECTION
==================================== */

.service-locations{
  padding:140px 20px;
  background:#ffffff;
  color:#000000;
}

.service-locations__container{
  max-width:1300px;
  margin:0 auto;
}

/* ====================================
   HEADER
==================================== */

.service-locations__header{
  text-align:center;
  max-width:820px;
  margin:0 auto 70px;
}

.service-locations__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:24px;
  color:#c19a6b;
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.service-locations__eyebrow::before,
.service-locations__eyebrow::after{
  content:"";
  width:30px;
  height:1px;
  background:#c19a6b;
}

.service-locations__title{
  margin:0 0 24px;
  font-size:clamp(2.4rem,4vw,5rem);
  line-height:1.08;
  letter-spacing:-.04em;
}

.service-locations__subtitle{
  margin:0;
  line-height:1.9;
}

/* ====================================
   LOCATION GRID
==================================== */

.service-locations__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}

.service-locations__item{
  border:1px solid rgba(0,0,0,.08);
  padding:26px 30px;
  text-align:center;
  transition:border-color .35s ease,transform .35s ease;
  position:relative;
}

.service-locations__item:hover{
  border-color:#c19a6b;
  transform:translateY(-4px);
}

.service-locations__number{
  display:block;
  color:#c19a6b;
  font-size:.75rem;
  letter-spacing:.1em;
  margin-bottom:12px;
}

.service-locations__name{
  margin:0;
  font-size:1.15rem;
}

/* ====================================
   CTA AREA
==================================== */

.service-locations__cta{
  margin-top:80px;
  border:1px solid rgba(0,0,0,.08);
  padding:60px 30px;
  text-align:center;
}

.service-locations__cta-text{
  max-width:760px;
  margin:0 auto 30px;
  line-height:1.8;
  font-size:clamp(1.1rem,2vw,1.5rem);
}

.service-locations__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:0 34px;
  background:#000000;
  color:#ffffff;
  border:1px solid #000000;
  text-decoration:none;
  transition:background-color .35s ease,border-color .35s ease;
}

.service-locations__btn:hover{
  background:#c19a6b;
  border-color:#c19a6b;
}

/* ====================================
   RESPONSIVE
==================================== */

@media(min-width:768px){

.service-locations__grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(min-width:1100px){

.service-locations__grid{
grid-template-columns:repeat(4,1fr);
}

}

@media(max-width:767px){

.service-locations{
padding:90px 20px;
}

.service-locations__header{
margin-bottom:50px;
}

.service-locations__cta{
padding:40px 24px;
margin-top:60px;
}

.service-locations__btn{
width:100%;
}

}
/* ====================================
   AREAS WE SERVE SECTION
==================================== */
/* ====================================
   DETAILED EXPERTISE SECTION
==================================== */
.expertise-section{
padding:140px 20px;
background:#ffffff;
color:#000000;
}

.expertise-section__container{
max-width:1100px;
margin:0 auto;
}

/* ====================================
   HEADER
==================================== */

.expertise-section__header{
text-align:center;
max-width:850px;
margin:0 auto 70px;
}

.expertise-section__eyebrow{
display:inline-flex;
align-items:center;
gap:10px;
margin-bottom:24px;
font-size:.78rem;
text-transform:uppercase;
letter-spacing:.08em;
color:#c19a6b;
}

.expertise-section__eyebrow:before,
.expertise-section__eyebrow:after{
content:"";
width:30px;
height:1px;
background:#c19a6b;
}

.expertise-section__title{
margin:0 0 24px;
font-size:clamp(2.4rem,4vw,5rem);
line-height:1.08;
letter-spacing:-.04em;
}

.expertise-section__subtitle{
margin:0;
line-height:1.9;
}

/* ====================================
   ACCORDION
==================================== */

.expertise-section__accordion{
display:flex;
flex-direction:column;
gap:16px;
}

.expertise-section__item{
border:1px solid rgba(0,0,0,.08);
transition:border-color .35s ease;
}

.expertise-section__item:hover{
border-color:#c19a6b;
}

.expertise-section__summary{
list-style:none;
padding:28px 30px;
cursor:pointer;
position:relative;
font-size:1.2rem;
line-height:1.5;
padding-right:70px;
}

.expertise-section__summary::-webkit-details-marker{
display:none;
}

.expertise-section__summary:after{
content:"+";
position:absolute;
right:30px;
top:50%;
transform:translateY(-50%);
font-size:1.8rem;
color:#c19a6b;
transition:.3s;
}

.expertise-section__item[open] .expertise-section__summary:after{
transform:translateY(-50%) rotate(45deg);
}

.expertise-section__content{
padding:0 30px 30px;
border-top:1px solid rgba(0,0,0,.06);
}

.expertise-section__content p{
line-height:1.95;
margin:25px 0;
}

.expertise-section__content strong{
display:block;
margin-top:28px;
margin-bottom:10px;
color:#c19a6b;
font-size:.95rem;
letter-spacing:.04em;
}

/* ====================================
   CTA
==================================== */

.expertise-section__cta{
margin-top:80px;
padding:70px 40px;
text-align:center;
border:1px solid rgba(0,0,0,.08);
}

.expertise-section__cta-text{
margin:0 auto 30px;
max-width:700px;
font-size:clamp(1.1rem,2vw,1.6rem);
line-height:1.8;
}

.expertise-section__btn{
display:inline-flex;
align-items:center;
justify-content:center;
min-height:58px;
padding:0 36px;
background:#000000;
color:#ffffff;
text-decoration:none;
border:1px solid #000000;
transition:background-color .35s ease,border-color .35s ease;
}

.expertise-section__btn:hover{
background:#c19a6b;
border-color:#c19a6b;
}

/* ====================================
   MOBILE
==================================== */

@media(max-width:767px){

.expertise-section{
padding:90px 20px;
}

.expertise-section__header{
margin-bottom:50px;
}

.expertise-section__summary{
padding:22px;
padding-right:60px;
font-size:1rem;
}

.expertise-section__content{
padding:0 22px 22px;
}

.expertise-section__cta{
padding:45px 24px;
}

.expertise-section__btn{
width:100%;
}

}
/* ====================================
   DETAILED EXPERTISE SECTION
==================================== */
/* ====================================
   TESTIMONIALS SECTION
==================================== */
.testimonials{
padding:140px 20px;
background:#000000;
color:#ffffff;
overflow:hidden;
}

.testimonials__container{
max-width:1360px;
margin:0 auto;
}

/* ====================================
   HEADER
==================================== */

.testimonials__header{
max-width:850px;
margin:0 auto 80px;
text-align:center;
}

.testimonials__eyebrow{
display:inline-flex;
align-items:center;
gap:10px;
margin-bottom:24px;
font-size:.78rem;
text-transform:uppercase;
letter-spacing:.08em;
color:#c19a6b;
}

.testimonials__eyebrow:before,
.testimonials__eyebrow:after{
content:"";
width:30px;
height:1px;
background:#c19a6b;
}

.testimonials__title{
margin:0 0 24px;
font-size:clamp(2.5rem,4vw,5rem);
line-height:1.08;
letter-spacing:-.04em;
}

.testimonials__subtitle{
margin:0 auto;
max-width:760px;
line-height:1.9;
opacity:.85;
}

/* ====================================
   GRID
==================================== */

.testimonials__grid{
display:grid;
grid-template-columns:1fr;
gap:25px;
}

.testimonials__card{
border:1px solid rgba(255,255,255,.08);
padding:40px;
transition:border-color .35s ease,transform .35s ease;
background:rgba(255,255,255,.02);
}

.testimonials__card:hover{
border-color:#c19a6b;
transform:translateY(-5px);
}

.testimonials__quote{
font-size:3rem;
line-height:1;
color:#c19a6b;
margin-bottom:20px;
}

.testimonials__text{
line-height:2;
margin-bottom:30px;
opacity:.9;
}

.testimonials__author{
padding-top:24px;
border-top:1px solid rgba(255,255,255,.08);
}

.testimonials__name{
margin:0 0 8px;
font-size:1.1rem;
}

.testimonials__project{
color:#c19a6b;
font-size:.85rem;
letter-spacing:.06em;
text-transform:uppercase;
line-height:1.7;
}

/* ====================================
   BOTTOM STATEMENT
==================================== */

.testimonials__bottom{
margin-top:80px;
border:1px solid rgba(255,255,255,.08);
padding:70px 40px;
text-align:center;
}

.testimonials__statement{
max-width:900px;
margin:0 auto 35px;
line-height:2;
opacity:.9;
}

.testimonials__btn{
display:inline-flex;
align-items:center;
justify-content:center;
min-height:58px;
padding:0 34px;
text-decoration:none;
background:#ffffff;
color:#000000;
border:1px solid #ffffff;
transition:background-color .35s ease,border-color .35s ease,color .35s ease;
}

.testimonials__btn:hover{
background:#c19a6b;
border-color:#c19a6b;
color:#ffffff;
}

/* ====================================
   RESPONSIVE
==================================== */

@media(min-width:768px){

.testimonials__grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(min-width:1200px){

.testimonials__grid{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:767px){

.testimonials{
padding:90px 20px;
}

.testimonials__card{
padding:28px;
}

.testimonials__bottom{
padding:45px 24px;
}

.testimonials__btn{
width:100%;
}

}
/* ====================================
   TESTIMONIALS SECTION
==================================== */
/* ====================================
   FAQ SECTION
==================================== */
.construction-faq{
padding:140px 20px;
background:#ffffff;
color:#000000;
}

.construction-faq__container{
max-width:1100px;
margin:0 auto;
}

/* ====================================
   HEADER
==================================== */

.construction-faq__header{
text-align:center;
max-width:850px;
margin:0 auto 70px;
}

.construction-faq__eyebrow{
display:inline-flex;
align-items:center;
gap:10px;
margin-bottom:24px;
font-size:.78rem;
letter-spacing:.08em;
text-transform:uppercase;
color:#c19a6b;
}

.construction-faq__eyebrow:before,
.construction-faq__eyebrow:after{
content:"";
width:30px;
height:1px;
background:#c19a6b;
}

.construction-faq__title{
margin:0 0 24px;
font-size:clamp(2.5rem,4vw,5rem);
line-height:1.08;
letter-spacing:-.04em;
}

.construction-faq__subtitle{
margin:0;
line-height:1.9;
max-width:760px;
margin-inline:auto;
}

/* ====================================
   FAQ ACCORDION
==================================== */

.construction-faq__list{
display:flex;
flex-direction:column;
gap:16px;
}

.construction-faq__item{
border:1px solid rgba(0,0,0,.08);
transition:border-color .35s ease;
}

.construction-faq__item:hover{
border-color:#c19a6b;
}

.construction-faq__question{
list-style:none;
cursor:pointer;
padding:28px 32px;
position:relative;
padding-right:70px;
font-size:1.1rem;
line-height:1.6;
}

.construction-faq__question::-webkit-details-marker{
display:none;
}

.construction-faq__question:after{
content:"+";
position:absolute;
right:28px;
top:50%;
transform:translateY(-50%);
font-size:1.8rem;
color:#c19a6b;
transition:transform .35s ease;
}

.construction-faq__item[open] .construction-faq__question:after{
transform:translateY(-50%) rotate(45deg);
}

.construction-faq__answer{
padding:0 32px 32px;
border-top:1px solid rgba(0,0,0,.06);
}

.construction-faq__answer p{
line-height:1.95;
margin:25px 0;
}

.construction-faq__answer ul{
padding-left:18px;
margin:20px 0;
}

.construction-faq__answer li{
margin-bottom:12px;
line-height:1.8;
}

.construction-faq__highlight{
color:#c19a6b;
font-weight:600;
}

/* ====================================
   CTA
==================================== */

.construction-faq__cta{
margin-top:80px;
padding:70px 40px;
border:1px solid rgba(0,0,0,.08);
text-align:center;
}

.construction-faq__cta-text{
max-width:720px;
margin:0 auto 30px;
font-size:clamp(1.1rem,2vw,1.5rem);
line-height:1.8;
}

.construction-faq__btn{
display:inline-flex;
align-items:center;
justify-content:center;
min-height:58px;
padding:0 36px;
background:#000;
color:#fff;
border:1px solid #000;
text-decoration:none;
transition:background-color .35s ease,border-color .35s ease;
}

.construction-faq__btn:hover{
background:#c19a6b;
border-color:#c19a6b;
}

/* ====================================
   MOBILE
==================================== */

@media(max-width:767px){

.construction-faq{
padding:90px 20px;
}

.construction-faq__header{
margin-bottom:50px;
}

.construction-faq__question{
padding:22px;
padding-right:60px;
font-size:1rem;
}

.construction-faq__answer{
padding:0 22px 22px;
}

.construction-faq__cta{
padding:45px 24px;
}

.construction-faq__btn{
width:100%;
}

}
/* ====================================
   FAQ SECTION
==================================== */
/* ====================================
   PROJECT CATEGORIES SECTION
==================================== */
.project-categories{
padding:140px 20px;
background:#ffffff;
color:#000000;
}

.project-categories__container{
max-width:1360px;
margin:0 auto;
}

/* ====================================
HEADER
==================================== */

.project-categories__header{
text-align:center;
max-width:850px;
margin:0 auto 80px;
}

.project-categories__eyebrow{
display:inline-flex;
align-items:center;
gap:10px;
margin-bottom:24px;
font-size:.78rem;
text-transform:uppercase;
letter-spacing:.08em;
color:#c19a6b;
}

.project-categories__eyebrow:before,
.project-categories__eyebrow:after{
content:"";
width:30px;
height:1px;
background:#c19a6b;
}

.project-categories__title{
margin:0 0 24px;
font-size:clamp(2.5rem,4vw,5rem);
line-height:1.08;
letter-spacing:-.04em;
}

.project-categories__subtitle{
margin:0 auto;
max-width:760px;
line-height:1.9;
}

/* ====================================
GRID
==================================== */

.project-categories__grid{
display:grid;
grid-template-columns:1fr;
gap:30px;
}

/* ====================================
CARD
==================================== */

.project-categories__card{
border:1px solid rgba(0,0,0,.08);
padding:45px;
transition:border-color .35s ease,transform .35s ease;
display:flex;
flex-direction:column;
}

.project-categories__card:hover{
border-color:#c19a6b;
transform:translateY(-5px);
}

.project-categories__number{
color:#c19a6b;
font-size:.8rem;
letter-spacing:.1em;
margin-bottom:18px;
}

.project-categories__name{
margin:0 0 20px;
font-size:1.8rem;
line-height:1.3;
}

.project-categories__text{
line-height:1.95;
margin-bottom:20px;
}

.project-categories__label{
display:block;
margin:25px 0 12px;
color:#c19a6b;
font-size:.85rem;
text-transform:uppercase;
letter-spacing:.08em;
}

.project-categories__list{
margin:0;
padding-left:18px;
}

.project-categories__list li{
margin-bottom:12px;
line-height:1.8;
}

.project-categories__client{
padding-top:25px;
margin-top:25px;
border-top:1px solid rgba(0,0,0,.08);
line-height:1.9;
}

.project-categories__link{
margin-top:auto;
padding-top:28px;
text-decoration:none;
color:#c19a6b;
font-size:.95rem;
}

/* ====================================
CTA
==================================== */

.project-categories__cta{
margin-top:80px;
padding:70px 40px;
border:1px solid rgba(0,0,0,.08);
text-align:center;
}

.project-categories__cta-text{
max-width:800px;
margin:0 auto 30px;
line-height:1.9;
font-size:clamp(1.1rem,2vw,1.5rem);
}

.project-categories__btn{
display:inline-flex;
align-items:center;
justify-content:center;
min-height:58px;
padding:0 36px;
background:#000000;
color:#ffffff;
text-decoration:none;
border:1px solid #000000;
transition:background-color .35s ease,border-color .35s ease;
}

.project-categories__btn:hover{
background:#c19a6b;
border-color:#c19a6b;
}

/* ====================================
RESPONSIVE
==================================== */

@media(min-width:992px){

.project-categories__grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:767px){

.project-categories{
padding:90px 20px;
}

.project-categories__card{
padding:28px;
}

.project-categories__cta{
padding:45px 24px;
}

.project-categories__btn{
width:100%;
}

}
/* ====================================
   PROJECT CATEGORIES SECTION
==================================== */
/* ====================================
FINAL CTA + CONTACT STRIP
==================================== */
.final-contact{
padding:140px 20px;
background:#000000;
color:#ffffff;
}

.final-contact__container{
max-width:1360px;
margin:0 auto;
}

/* ==========================
HEADER
========================== */

.final-contact__header{
max-width:900px;
margin:0 auto 70px;
text-align:center;
}

.final-contact__eyebrow{
display:inline-flex;
align-items:center;
gap:10px;
margin-bottom:24px;
color:#c19a6b;
font-size:.78rem;
text-transform:uppercase;
letter-spacing:.08em;
}

.final-contact__eyebrow:before,
.final-contact__eyebrow:after{
content:"";
width:30px;
height:1px;
background:#c19a6b;
}

.final-contact__title{
margin:0 0 24px;
font-size:clamp(2.7rem,5vw,5.5rem);
line-height:1.05;
letter-spacing:-.04em;
}

.final-contact__subtitle{
line-height:1.9;
opacity:.85;
margin:0;
}

/* ==========================
MAIN CTA BOX
========================== */

.final-contact__hero{
margin-top:80px;
padding:70px;
border:1px solid rgba(255,255,255,.08);
}

.final-contact__intro{
max-width:920px;
margin-bottom:45px;
}

.final-contact__text{
line-height:2;
margin-bottom:25px;
opacity:.9;
}

.final-contact__grid{
display:grid;
grid-template-columns:1fr;
gap:25px;
margin:50px 0;
}

.final-contact__item{
padding:30px;
border:1px solid rgba(255,255,255,.08);
}

.final-contact__item-title{
margin:0 0 18px;
font-size:1.2rem;
color:#c19a6b;
}

.final-contact__item ul{
margin:0;
padding-left:18px;
}

.final-contact__item li{
margin-bottom:12px;
line-height:1.8;
}

.final-contact__actions{
display:flex;
gap:16px;
flex-wrap:wrap;
margin-top:45px;
}

.final-contact__btn{
min-height:58px;
padding:0 34px;
display:inline-flex;
align-items:center;
justify-content:center;
text-decoration:none;
transition:background-color .35s ease,border-color .35s ease,color .35s ease;
}

.final-contact__btn--primary{
background:#ffffff;
color:#000000;
border:1px solid #fff;
}

.final-contact__btn--primary:hover{
background:#c19a6b;
border-color:#c19a6b;
color:#fff;
}

.final-contact__btn--secondary{
border:1px solid rgba(255,255,255,.2);
color:#fff;
}

.final-contact__btn--secondary:hover{
border-color:#c19a6b;
color:#c19a6b;
}

/* ==========================
CONTACT STRIP
========================== */

.contact-strip{
margin-top:90px;
display:grid;
grid-template-columns:1fr;
gap:20px;
}

.contact-strip__card{
border:1px solid rgba(255,255,255,.08);
padding:30px;
transition:border-color .35s ease;
}

.contact-strip__card:hover{
border-color:#c19a6b;
}

.contact-strip__label{
font-size:.8rem;
text-transform:uppercase;
letter-spacing:.08em;
color:#c19a6b;
margin-bottom:14px;
}

.contact-strip__value{
font-size:1.15rem;
margin-bottom:15px;
}

.contact-strip__info{
line-height:1.8;
opacity:.85;
font-size:.95rem;
}

/* ==========================
BOTTOM INFO
========================== */

.contact-strip__footer{
margin-top:60px;
padding-top:40px;
border-top:1px solid rgba(255,255,255,.08);
text-align:center;
}

.contact-strip__areas{
margin-top:20px;
line-height:2;
opacity:.85;
}

/* ==========================
RESPONSIVE
========================== */

@media(min-width:768px){

.final-contact__grid{
grid-template-columns:repeat(3,1fr);
}

.contact-strip{
grid-template-columns:repeat(4,1fr);
}

}

@media(max-width:767px){

.final-contact{
padding:90px 20px;
}

.final-contact__hero{
padding:30px;
}

.final-contact__actions{
flex-direction:column;
}

.final-contact__btn{
width:100%;
}

}
/* ====================================
FINAL CTA + CONTACT STRIP
==================================== */
