@font-face {
  font-family: "Nourd-SemiBold";
  src: url("../fonts/Nourd-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Public Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}

.font-body {
  font-family: "Public Sans", sans-serif;
}

.font-display {
  font-family: "Playfair Display", serif;
}

.font-nourd {
  font-family: "Nourd-SemiBold", sans-serif;
}

.font-montserrat {
  font-family: "Montserrat", sans-serif;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f9f9f4;
}

::-webkit-scrollbar-thumb {
  background: #dc2524;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b91c23;
}

/* Common form styles */
.form-input-clean {
  transition: all 0.3s ease;
}

.form-input-clean:focus {
  box-shadow: 0 4px 12px rgba(218, 41, 28, 0.1);
}

.workflow {
  padding: 30px 10px;
}

.workflow-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.workflow-container::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #d9dee4;
  z-index: 1;
}

.workflow-step {
  text-align: center;
  position: relative;
  z-index: 2;
  width: 120px;
}

.workflow-step p {
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
  margin-top: 12px;
  line-height: 1.3;
}

.icon {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 36px;
  color: #2d4059;
  border: 2px solid #e4e7ea;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.workflow-step.start .icon,
.workflow-step.end .icon {
  border-color: #e53935;
  color: #e53935;
}

.workflow-step:hover .icon {
  transform: translateY(-8px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
  border-color: #e53935;
  color: #e53935;
}

.workflow-step::after {
  position: absolute;
  top: 30px;
  right: -20px;
  font-size: 20px;
  color: #9aa4ad;
}

.workflow-step:last-child::after {
  display: none;
}

@media (max-width: 900px) {
  .workflow-container {
    flex-direction: column;
    gap: 50px;
  }

  .workflow-container::before {
    display: none;
  }

  .workflow-step::after {
    content: "";
  }

  .workflow-step {
    width: auto;
  }

  .workflow-step::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -50px;
    width: 3px;
    height: 50px;
    background: #d9dee4;
    transform: translateX(-50%);
  }

  .workflow-step:first-child::before {
    display: none;
  }
}

/* Why Section Styles */
:root {
  --mota-red: #d42716;
  --mota-navy: #0b163f;
  --ink: #263249;
  --muted: #677288;
  --line: #e4e8ed;
  --soft: #f7f7f4;
  --soft-red: #fff3f1;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(11, 22, 63, 0.1);
  --radius: 22px;
  --max: 1180px;
}

#why {
  padding: 88px 0;
}

#why .wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}

.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.why-visual {
  background: var(--soft-red);
  border-radius: 28px;
  padding: 18px;
  border: 1px solid #f2d7d3;
}

.why-visual img {
  border-radius: 20px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

#why .eyebrow {
  color: var(--mota-red);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

#why h2 {
  margin: 0 0 16px;
  color: var(--mota-navy);
  line-height: 1.15;
  font-size: clamp(2.15rem, 4vw, 3.7rem);
  letter-spacing: -0.035em;
}

#why .lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 760px;
  margin: 0 0 16px;
}

.benefits {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.benefit {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.why .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--soft-red);
  color: var(--mota-red);
  font-weight: 900;
  /* Reset styles from global .icon */
  margin: initial;
  font-size: initial;
  border: initial;
  box-shadow: initial;
  transition: initial;
}

#why h3 {
  margin: 0;
  color: var(--mota-navy);
  line-height: 1.15;
  font-size: 1.45rem;
}

.benefit p {
  margin: 4px 0 0;
  color: var(--muted);
}

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

@media (max-width: 650px) {
  #why {
    padding: 66px 0;
  }
  #why .wrap {
    width: min(var(--max), calc(100% - 24px));
  }
}

#contact-banner {
  padding: 88px 0;
}

#contact-banner .wrap {
  width: min(var(--max, 1180px), calc(100% - 40px));
  margin: auto;
}

.cta-banner {
  background: linear-gradient(135deg, var(--mota-red, #d42716), #b11d10);
  color: #fff;
  border-radius: 28px;
  padding: 52px 24px;
  text-align: center;
  max-width: 900px;
  margin: auto;
  box-shadow: 0 18px 48px rgba(11, 22, 63, 0.1);
}

.cta-banner .eyebrow {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.9;
}

.cta-banner h2 {
  color: #fff;
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
  font-family: "Playfair Display", serif;
}

.cta-banner .lead-banner {
  font-size: 1.1rem;
  color: #ffe6e2;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.65;
}

@media (max-width: 650px) {
  #contact-banner {
    padding: 50px 0;
  }
  #contact-banner .wrap {
    width: min(var(--max, 1180px), calc(100% - 24px));
  }
  .cta-banner {
    padding: 34px 20px;
    border-radius: 20px;
  }
}

/* Contact Section */
#contact {
  padding: 88px 0;
}

#contact .wrap {
  width: min(var(--max, 1180px), calc(100% - 40px));
  margin: auto;
}

.cta {
  background: linear-gradient(135deg, var(--mota-red, #d42716), #b11d10);
  color: #fff;
  border-radius: 28px;
  padding: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cta h2 {
  color: #fff;
  max-width: 700px;
  margin: 0 0 16px;
  font-size: clamp(2.15rem, 4vw, 3.7rem);
  letter-spacing: -0.035em;
  font-family: "Playfair Display", serif;
}

.cta p {
  max-width: 700px;
  color: #ffe6e2;
  margin: 0;
}

.cta .eyebrow {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media (max-width: 650px) {
  #contact {
    padding: 66px 0;
  }
  #contact .wrap {
    width: min(var(--max, 1180px), calc(100% - 24px));
  }
  .cta {
    display: block;
    padding: 34px 24px;
    border-radius: 28px;
  }
}

/* Services Section Styles */
#services {
  padding: 88px 0;
}

#services .wrap {
  width: min(var(--max, 1180px), calc(100% - 40px));
  margin: auto;
}

#services .section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 42px;
}

#services .section-head .lead {
  margin: 0;
}

#services .eyebrow {
  color: var(--mota-red, #d42716);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

#services h2 {
  margin: 0;
  color: var(--mota-navy, #0b163f);
  line-height: 1.15;
  font-size: clamp(2.15rem, 4vw, 3.7rem);
  letter-spacing: -0.035em;
  font-family: "Playfair Display", serif;
}

.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

#services .card {
  overflow: hidden;
  border-radius: var(--radius, 22px);
  border: 1px solid var(--line, #e4e8ed);
  background: #fff;
  box-shadow: 0 10px 28px rgba(11, 22, 63, 0.06);
  transition: 0.25s ease;
}

#services .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow, 0 18px 48px rgba(11, 22, 63, 0.1));
}

#services .card-image {
  position: relative;
  background: var(--soft, #f7f7f4);
  min-height: 300px;
}

#services .card-image img {
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  width: 100%;
}

#services .service-no {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--mota-red, #d42716);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(212, 39, 22, 0.25);
}

#services .card-body {
  padding: 30px;
}

#services .card-body h3 {
  margin: 0 0 12px;
  color: var(--mota-navy, #0b163f);
  font-size: 1.45rem;
  font-family: "Playfair Display", serif;
}

#services .card-body p {
  color: var(--muted, #677288);
  margin: 0 0 16px;
}

#services .features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin-top: 22px;
}

#services .feature {
  position: relative;
  padding-left: 18px;
  font-size: 0.96rem;
  color: var(--ink, #263249);
}

#services .feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mota-red, #d42716);
}

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

@media (max-width: 650px) {
  #services {
    padding: 66px 0;
  }
  #services .wrap {
    width: min(var(--max, 1180px), calc(100% - 24px));
  }
  #services .section-head {
    display: block;
    margin-bottom: 30px;
  }
  #services .section-head .lead {
    margin-top: 18px;
  }
  #services .features {
    grid-template-columns: 1fr;
  }
}

/* Photo Grid  */
#services .photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  height: 100%;
  min-height: 300px;
  padding: 6px;
  background: #fff;
}

#services .photo-grid img {
  min-height: 147px;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 650px) {
  #services .photo-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 280px;
  }
  #services .photo-grid img {
    min-height: 130px;
  }
}

#services .expertise-media {
  background: #fff;
  border: 1px solid #e4e8ed;
  border-radius: 30px;
  padding: 16px;
  box-shadow: 0 18px 48px rgba(11, 22, 63, 0.1);
  position: relative;
}

#services .expertise-media-img {
  border-radius: 20px;
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  display: block;
}

#services .expertise-chip {
  position: absolute;
  left: 34px;
  bottom: 32px;
  background: rgba(11, 22, 63, 0.95);
  color: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(11, 22, 63, 0.2);
}

@media (max-width: 650px) {
  #services .expertise-chip {
    position: static;
    margin-top: 12px;
    display: inline-block;
  }
}
