* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Roboto, Arial, sans-serif;
  color: #1d1d1f;
  background: #fff;
}

.container-lg {
  max-width: 1180px;
  margin: auto;
  padding: 0 20px;
}

/* BUTTON */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e9791d;
  color: #fff;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(233, 121, 29, .22);
  border: 0;
  cursor: pointer;
}

/* BANNER */
.banner {
  min-height: 420px;
  display: flex;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
}

.banner:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.22));
}

.banner .container-lg {
  position: relative;
  z-index: 1;
}

.banner h1 {
  font-size: 50px;
  margin-bottom: 18px;
}

.banner p {
  font-size: 20px;
  margin-bottom: 30px;
}

.eyebrow {
  color: #e9791d;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 12px;
}

/* SECTION */
.section {
  padding: 70px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* TEXT CARD */
.text-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

/* LIST */
.list {
  display: grid;
  gap: 12px;
}

.list-item {
  display: flex;
  gap: 10px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 14px;
}

.list-item i {
  background: #e9791d;
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

/* STEPS */
.steps {
  background: #111;
  color: #fff;
  padding: 20px 0;
}
.steps h2{text-align:center;margin-bottom:40px}
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.step {
  padding: 25px;
  border-right: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-num {
  background: #e9791d;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  font-size:25px ;
}

/* SWIPER */
.swiper {
  border-radius: 25px;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.swiper-pagination-bullet-active {
  background: #e9791d;
}

/* CONTACT */
.contact-section {
  padding: 70px 0;
  background: #fafafa;
}

.contact-form {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 25px;
  padding: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 14px;
}

.contact-form textarea {
  grid-column: 1 / -1;
  min-height: 120px;
}

.full {
  grid-column: 1 / -1;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .container-lg {
    max-width: 100%;
    padding: 0 24px;
  }

  .banner h1 {
    font-size: 44px;
  }

  .banner p {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .section,
  .steps,
  .gallery,
  .contact-section {
    padding: 55px 0;
  }

  .grid-2,
  .step-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .banner {
    min-height: 360px;
  }

  .banner h1 {
    font-size: 36px;
    line-height: 1.15;
  }

  .banner p {
    font-size: 17px;
    line-height: 1.55;
  }

  .text-card {
    padding: 24px;
  }

  .step {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .swiper-slide img {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .container-lg {
    padding: 0 16px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
    font-size: 14px;
    text-align: center;
  }

  .banner {
    min-height: 320px;
    padding: 50px 0;
  }

  .banner h1 {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .banner p {
    font-size: 15.5px;
    margin-bottom: 22px;
  }

  .eyebrow {
    font-size: 12px;
    line-height: 1.4;
  }

  .section,
  .steps,
  .gallery,
  .contact-section {
    padding: 42px 0;
  }

  .text-card {
    padding: 20px;
    border-radius: 18px;
  }

  .text-card h2,
  .steps h2 {
    font-size: 26px;
  }

  .list-item {
    padding: 13px;
    font-size: 15px;
  }

  .step {
    padding: 22px;
  }

  .step h4 {
    font-size: 17px;
  }

  .swiper {
    border-radius: 18px;
  }

  .swiper-slide img {
    height: 220px;
  }

  .contact-form {
    padding: 20px;
    border-radius: 18px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 13px;
    font-size: 15px;
  }
}