@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --green: #213d35;
  --green-dark: #142923;
  --sage: #aeb8aa;
  --cream: #f5f3ee;
  --white: #fff;
  --dark: #171c1a;
  --text: #5d6561;
  --border: #dde2de;
  --shadow: 0 22px 55px rgba(20, 41, 35, 0.1);
  --radius: 18px;
  --title-font: "Archivo", sans-serif;
  --body-font: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  overscroll-behavior-x: none;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  overscroll-behavior-x: none;
  font-family: var(--body-font);
  color: var(--dark);
  background: var(--white);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  width: 100%;
  display: block;
}
p {
  margin-top: 0;
}

.section {
  padding: 105px 0;
}
.section-soft {
  background: var(--cream);
}
.section-dark {
  background: var(--green-dark);
  color: var(--white);
}
.section-label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.section-dark .section-label,
.commitment-box .section-label {
  color: var(--sage);
}
.section-title {
  margin-bottom: 25px;
  font-family: var(--title-font);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1.2px;
}
.section-text {
  color: var(--text);
  font-size: 16px;
  line-height: 1.9;
}
.section-dark .section-text {
  color: rgba(255, 255, 255, 0.72);
}
.section-head {
  margin-bottom: 48px;
}

.btn {
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  transition: 0.25s ease;
}
.btn i {
  margin-left: 8px;
}
.btn-main {
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--white);
}
.btn-main:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-light-custom {
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--green-dark);
}

.btn-light-custom:hover {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--green-dark);
  transform: translateY(-2px);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}
.text-link:hover {
  gap: 13px;
}

.topbar {
  padding: 9px 0;
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
}
.topbar-row {
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar-row.end {
  justify-content: flex-end;
}
.topbar a,
.topbar span {
  color: rgba(255, 255, 255, 0.78);
}
.topbar i {
  margin-right: 7px;
  color: var(--sage);
}
.topbar a:hover {
  color: var(--white);
}

.main-navbar {
  position: sticky !important;
  top: 0;
  z-index: 1030;
  min-height: 86px;
  border-bottom: 1px solid rgba(23, 28, 26, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  transition: 0.3s ease;
}
.main-navbar.scrolled {
  min-height: 72px;
  box-shadow: 0 10px 30px rgba(16, 32, 27, 0.08);
}
.navbar-logo {
  width: auto;
  height: 72px;
  object-fit: contain;
  transition: 0.3s ease;
}
.main-navbar.scrolled .navbar-logo {
  height: 60px;
}
.main-navbar .nav-link {
  position: relative;
  margin: 0 8px;
  color: #343a36;
  font-size: 13px;
  font-weight: 600;
}
.main-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 1px;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transition: 0.25s ease;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--green);
}
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.hero,
.page-hero,
.cta {
  position: relative;
  overflow: hidden;
}
.hero {
  min-height: 720px;
}
.hero-image,
.page-hero-image,
.cta-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay,
.page-hero-overlay,
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 27, 23, 0.91),
    rgba(13, 27, 23, 0.58) 52%,
    rgba(13, 27, 23, 0.18)
  );
}
.hero-content,
.page-hero-content,
.cta-content {
  position: relative;
  z-index: 2;
}
.hero-content {
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 75px 0 120px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--sage);
}
.hero h1,
.page-hero h1 {
  margin-bottom: 24px;
  color: var(--white);
  font-family: var(--title-font);
  font-weight: 600;
  letter-spacing: -3px;
}
.hero h1 {
  max-width: 850px;
  margin-bottom: 27px;
  color: var(--white);
  font-family: var(--title-font);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -2px;
}
.hero h1 span {
  display: block;
  color: #c4ccc2;
}
.hero p {
  max-width: 720px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-strip {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(15, 27, 23, 0.52);
  backdrop-filter: blur(12px);
}
.hero-strip .row > div {
  padding: 20px 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

.page-hero {
  min-height: 430px;
}
.page-hero-content {
  min-height: 430px;
  display: flex;
  align-items: end;
  padding: 70px 0;
}
.page-hero h1 {
  margin-bottom: 20px;
  color: var(--white);
  font-family: var(--title-font);
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -1.5px;
}
.page-hero p {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.8;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.media-frame img {
  height: 580px;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.media-frame:hover img {
  transform: scale(1.035);
}
.year-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  min-width: 150px;
  padding: 20px;
  border-radius: 14px;
  background: var(--green);
  color: var(--white);
}
.year-badge strong {
  display: block;
  font-family: var(--title-font);
  font-size: 30px;
  line-height: 1;
}
.year-badge span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.feature-list {
  margin: 28px 0 34px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: #343b37;
  font-size: 14px;
  font-weight: 600;
}
.feature-item i {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green);
  font-size: 10px;
}

.info-card,
.service-card,
.contact-card {
  height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: 0.3s ease;
}
.info-card:hover,
.service-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(33, 61, 53, 0.35);
  box-shadow: var(--shadow);
}
.info-card {
  padding: 30px;
}
.info-card .num {
  display: block;
  margin-bottom: 18px;
  color: #a4aaa6;
  font-size: 11px;
}
.info-card h3,
.service-card h3,
.why-card h3,
.contact-card h3 {
  margin-bottom: 12px;
  font-family: var(--title-font);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
}

.info-card p {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.8;
}

.service-card {
  min-height: 270px;
  padding: 32px;
}

.service-card:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(19, 39, 33, 0.14);
}
.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 72px;
}
.service-card-top span {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  color: var(--green);
  font-size: 18px;
  font-weight: 500;
}
.service-card:hover .service-card-top span {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}
.service-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green);
  font-size: 22px;
}
.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.service-card h3 {
  margin: 0;
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}
.service-card:hover h3 {
  color: var(--white);
}
.service-card p {
  margin: 12px 0 0;
  color: var(--text);
  font-size: 11px;
  line-height: 1.6;
}
.service-card.accent {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.service-card.accent .service-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.service-card.accent .service-card-top span {
  color: rgba(255, 255, 255, 0.6);
}
.service-card.accent p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.services-carousel .owl-stage {
  display: flex;
}
.services-carousel .owl-item {
  display: flex;
}
.services-carousel .service-card {
  width: 100%;
}
.services-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.services-carousel .owl-nav button.owl-prev,
.services-carousel .owl-nav button.owl-next {
  width: 46px;
  height: 46px;
  margin: 0;
  border: 1px solid var(--border) !important;
  border-radius: 50% !important;
  background: var(--white) !important;
  color: var(--green) !important;
  transition: 0.25s ease;
}
.services-carousel .owl-nav button:hover {
  border-color: var(--green) !important;
  background: var(--green) !important;
  color: var(--white) !important;
}

.quote {
  padding: 34px;
  border-left: 3px solid var(--sage);
  background: rgba(174, 184, 170, 0.12);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.quote strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-family: var(--title-font);
  font-size: 32px;
  line-height: 1.2;
}

.project-card {
  margin-bottom: 44px;
}
.project-image {
  position: relative;
  height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
}
.project-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-image:hover img {
  transform: scale(1.04);
}
.project-status {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(20, 41, 35, 0.9);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.project-status.after {
  background: rgba(245, 243, 238, 0.94);
  color: var(--green-dark);
}

.commitment-box {
  padding: 46px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
}
.commitment-box h2 {
  font-family: var(--title-font);
  font-size: 40px;
  line-height: 1.1;
}
.commitment-box p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.85;
}

/* CTA */
.cta {
  min-height: 430px;
}

.cta-content {
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  text-align: center;
}

.cta-content .row {
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-content .row > div {
  width: 100%;
  max-width: 820px;
  text-align: center !important;
}

.cta-content .row > div + div {
  margin-top: 32px;
}

.cta .eyebrow {
  justify-content: center;
}

.cta h2 {
  margin: 0 0 20px;
  color: var(--white);
  font-family: var(--title-font);
  font-size: 46px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.cta p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.9;
}

.cta-actions {
  margin-top: 32px;
}

.contact-card {
  padding: 32px;
}
.contact-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 14px;
  background: var(--cream);
  color: var(--green);
  font-size: 19px;
}
.contact-card a,
.contact-card p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.8;
}
.contact-card a:hover {
  color: var(--green);
}
.map-frame {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.map-frame iframe {
  width: 100%;
  height: 460px;
  display: block;
  border: 0;
}
/* FOOTER */

.footer {
  padding: 75px 0 0;
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.78);
}

.footer-logo {
  width: auto;
  height: 82px;
  margin-bottom: 22px;
  object-fit: contain;
}

.footer-description {
  max-width: 360px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.85;
}

.footer-tagline {
  color: var(--sage);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.7;
  text-transform: uppercase;
}

.footer h4 {
  margin-bottom: 22px;
  color: var(--white);
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 600;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.75;
}

.footer-links a,
.footer-contact a {
  transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact p {
  margin-bottom: 12px;
}

.footer-contact i {
  width: 24px;
  color: var(--sage);
}

.footer-map {
  overflow: hidden;
  border-radius: 14px;
}

.footer-map iframe {
  width: 100%;
  height: 160px;
  display: block;
  border: 0;
}

/* FOOTER BOTTOM */

.footer-bottom {
  margin-top: 55px;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright,
.footer-powered {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.footer-powered {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-powered a {
  display: inline-flex;
  align-items: center;
}

.powered-logo {
  width: auto;
  height: 24px;
  object-fit: contain;
}

/* WHY CHOOSE US */

.why-section {
  overflow: hidden;
}

.why-intro {
  max-width: 470px;
  padding-top: 10px;
}

.why-intro .section-title {
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(38px, 4vw, 52px);
}

.why-intro p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.9;
}

.why-line {
  width: 55px;
  height: 2px;
  margin-bottom: 28px;
  background: var(--sage);
}

.why-card {
  height: 145px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  transition: 0.3s ease;
}

.why-card span {
  color: var(--sage);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
}

.why-card h3 {
  max-width: 270px;
  margin: 20px 0 0;
  color: var(--white);
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(174, 184, 170, 0.5);
  background: rgba(255, 255, 255, 0.07);
}

.why-image {
  width: 100%;
  margin-top: 35px;
  overflow: hidden;
  border-radius: 18px;
}

.why-image img {
  width: 100%;
  height: 265px;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.why-image:hover img {
  transform: scale(1.04);
}

/* AREAS WE COVER */

.service-area {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.service-area .section-label {
  margin-bottom: 10px;
}

.service-area .section-title {
  margin-bottom: 16px;
  font-size: 36px;
}

.service-area .section-text {
  max-width: 620px;
  margin: 0 auto 8px;
  font-size: 14px;
  line-height: 1.7;
}

/* ANIMATIONS */
.fadeindown {
  opacity: 0;
  transform: translateY(-100px);
  transition: all 1.2s ease-out;
}

.fadeinup {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1.2s ease-out;
}

.active-down,
.active-up {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 991.98px) {
  /* GLOBAL SPACING */
  .container {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .section {
    padding: 80px 0;
  }

  .section-head {
    margin-bottom: 40px;
  }

  /* TOPBAR */
  .topbar-row,
  .topbar-row.end {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  /* NAVBAR */
  .main-navbar {
    position: sticky !important;
    top: 0;
    z-index: 1050;
  }

  .main-navbar,
  .main-navbar.scrolled {
    min-height: 74px;
  }

  .navbar-logo,
  .main-navbar.scrolled .navbar-logo {
    height: 62px;
  }

  .navbar-collapse {
    padding: 16px 0 22px;
  }

  .main-navbar .nav-link {
    margin: 3px 0;
  }

  .main-navbar .btn {
    margin-top: 12px;
    margin-left: 0 !important;
  }

  /* HERO */
  .hero,
  .hero-content {
    min-height: 650px;
  }

  .hero-content {
    padding-top: 70px;
    padding-bottom: 120px;
  }

  /* REMOVE BOOTSTRAP ROW OVERFLOW */
  .hero-content > .row,
  .page-hero-content > .row,
  .cta-content > .row {
    width: 100% !important;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-content > .row > div,
  .page-hero-content > .row > div,
  .cta-content > .row > div {
    padding-left: 0;
    padding-right: 0;
  }

  /* PAGE HERO */
  .page-hero,
  .page-hero-content {
    min-height: 380px;
  }

  /* IMAGES */
  .media-frame img {
    height: 500px;
  }

  /* CTA */
  .cta,
  .cta-content {
    min-height: 390px;
  }

  .cta-content {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  /* WHY CHOOSE US */
  .why-intro {
    max-width: 650px;
    margin-bottom: 15px;
  }
}

/* MOBILE */
@media (max-width: 767.98px) {
  /* GLOBAL SPACING */
  .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding: 65px 0;
  }

  .section-head {
    margin-bottom: 34px;
  }

  /* TOPBAR */
  .topbar .col-md-6:first-child {
    display: none;
  }

  .topbar-row.end {
    justify-content: center;
  }

  /* NAVBAR */
  .main-navbar {
    position: sticky !important;
    top: 0;
    z-index: 1050;
  }

  .main-navbar,
  .main-navbar.scrolled {
    min-height: 72px;
  }

  .navbar-logo,
  .main-navbar.scrolled .navbar-logo {
    height: 58px;
  }

  .navbar-collapse {
    padding: 14px 0 20px;
  }

  /* HERO */
  .hero,
  .hero-content {
    min-height: 560px;
  }

  .hero-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.05;
    letter-spacing: -1.5px;
  }

  .hero p {
    margin-bottom: 26px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }

  .hero-actions .btn {
    width: auto;
  }

  .hero-strip {
    display: none;
  }

  /* PAGE HERO */
  .page-hero,
  .page-hero-content {
    min-height: 340px;
  }

  .page-hero-content {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .page-hero h1 {
    font-size: 38px;
    letter-spacing: -1.5px;
  }

  /* TITLES */
  .section-title {
    font-size: 34px;
    letter-spacing: -1.2px;
  }

  /* IMAGES */
  .media-frame img {
    height: 420px;
  }

  .project-image {
    height: 340px;
  }

  /* SERVICE CARDS */
  .service-card-top {
    margin-bottom: 55px;
  }

  /* COMMITMENT */
  .commitment-box {
    padding: 32px;
  }

  .commitment-box h2 {
    font-size: 34px;
  }

  /* WHY */
  .why-intro .section-title {
    font-size: 34px;
  }

  /* CTA */
  .cta-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .cta h2 {
    font-size: 34px;
  }

  /* CONTACT */
  .map-frame iframe {
    height: 360px;
  }

  /* AREAS WE COVER */
  .service-area {
    max-width: 100%;
  }

  .service-area .section-title {
    font-size: 32px;
  }

  /* FOOTER */
  .footer {
    padding-top: 60px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-powered {
    margin-top: 2px;
  }
}

/* SMALL MOBILE */
@media (max-width: 575.98px) {
  /* GLOBAL SPACING */
  .container {
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  /* TOPBAR */
  .topbar {
    font-size: 10px;
  }

  .topbar-row.end {
    gap: 8px 14px;
  }

  /* NAVBAR */
  .main-navbar {
    position: sticky !important;
    top: 0;
    z-index: 1050;
  }

  .main-navbar,
  .main-navbar.scrolled {
    min-height: 70px;
  }

  .navbar-logo,
  .main-navbar.scrolled .navbar-logo {
    height: 56px;
  }

  /* HERO */
  .hero,
  .hero-content {
    min-height: 520px;
  }

  .hero-content {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.05;
    letter-spacing: -1.3px;
  }

  .hero p {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-actions {
    gap: 9px;
  }

  .hero-actions .btn {
    width: auto;
    padding: 12px 17px;
    font-size: 12px;
  }

  .hero-strip {
    display: none;
  }

  /* PAGE HERO */
  .page-hero,
  .page-hero-content {
    min-height: 320px;
  }

  .page-hero-content {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .page-hero p {
    font-size: 14px;
  }

  /* TITLES */
  .section-title {
    font-size: 31px;
  }

  /* IMAGES */
  .media-frame img {
    height: 350px;
  }

  .project-image {
    height: 280px;
  }

  /* YEAR BADGE */
  .year-badge {
    right: 14px;
    bottom: 14px;
    min-width: 130px;
    padding: 16px;
  }

  /* SERVICE CARDS */
  .service-card {
    min-height: 245px;
    padding: 26px;
  }

  .service-card-top {
    margin-bottom: 48px;
  }

  .service-card-top span {
    width: 52px;
    height: 52px;
    font-size: 16px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }

  /* WHY CHOOSE US */
  .why-card {
    height: auto;
    min-height: 135px;
    padding: 24px;
  }

  .why-intro .section-title {
    font-size: 30px;
  }

  .why-image img {
    height: 230px;
  }

  /* COMMITMENT */
  .commitment-box {
    padding: 28px;
  }

  .commitment-box h2 {
    font-size: 30px;
  }

  /* CTA */
  .cta,
  .cta-content {
    min-height: 350px;
  }

  .cta h2 {
    font-size: 30px;
  }

  .cta p {
    font-size: 14px;
    line-height: 1.7;
  }

  /* CONTACT */
  .contact-card {
    padding: 26px;
  }

  .map-frame iframe {
    height: 300px;
  }

  /* AREAS WE COVER */
  .service-area .section-title {
    font-size: 30px;
  }

  /* FOOTER */
  .footer-bottom {
    gap: 12px;
  }
}
