@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* rule */
.border {
  background-color: #3d6db4;
  padding: 0 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.border:hover {
  background-color: #fff;
  color: #3d6db4;
  transition: all 0.3s ease;
  cursor: pointer;
}

.m-border {
  background-color: #3d6db4;
  padding: 0 5px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.m-border:hover {
  background-color: #fff;
  color: #3d6db4;
  transition: all 0.3s ease;
  cursor: pointer;
}
.fade-up,
.fade-down,
.fade-left,
.fade-right {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up {
  transform: translateY(40px);
}

.fade-down {
  transform: translateY(-80px);
}

.fade-left {
  transform: translateX(-40px);
}

.fade-right {
  transform: translateX(40px);
}

.fade-up.active,
.fade-down.active,
.fade-left.active,
.fade-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

.color-blk {
  color: #404040;
}
.color-semar {
  color: #3d6db4;
}
.color-gray {
  color: #d4d4d4;
}
.color-blue {
  color: #1a222b;
}
.color-white {
  color: #ffffff;
}
.color-light-blue {
  color: #f8fbff;
}
.color-dark-blue {
  color: #f8fbff;
}
h1 {
  font-size: 32px;
  margin: 0;
}
h2 {
  font-size: 24px;
  margin: 0;
}
h3 {
  font-size: 18px;
  margin: 0;
}
h4 {
  font-size: 16px;
  margin: 0;
}
h5 {
  font-size: 14px;
  margin: 0;
}

p {
  font-size: 14px;
  margin: 0;
}

.fw-reg {
  font-weight: 400;
}
.fw-med {
  font-weight: 500;
}
.fw-semi {
  font-weight: 600;
}
.fw-bold {
  font-weight: 700;
}

.ta-center {
  text-align: center;
}

.ta-start {
  text-align: start;
}

.flex-row {
  display: flex;
  align-items: center;
  gap: 8px; /* jarak antara icon dan teks */
}
.flex-row svg {
  flex-shrink: 0; /* supaya ikon tidak mengecil */
}

/* style */
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

button {
  background-color: #3d6db4;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #f8fbff;
  color: #3d6db4;
  box-shadow: inset 0 0 0 1px #3d6db4;
  transition: all 0.3s ease;
}

.container {
  width: 1120px;
  margin: 0 auto;
}

.pilih-jasa {
  background-image: url(assets/cover.jpg);
  background-repeat: no-repeat;
  border-radius: 10px;
  object-fit: contain;
}

.pilih-jasa .content {
  padding: 150px 50px;
  margin-right: 450px;
}

.pilih-jasa .content .tags {
  width: 360px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 5px;
}

.pilih-jasa .content .tags a {
  margin-bottom: 10px !important;
}

.pilih-jasa .content .tag {
  border: 1px solid #3d6db4;
  background-color: rgba(61, 109, 180, 0.2);
  border-radius: 5px;
  padding: 3px 5px;
  transition: all 0.3s ease;
  font-weight: 400;
}

.pilih-jasa .content .tag:hover {
  background-color: #3d6db4;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pilih-jasa-mobile {
  display: none;
}

.keunggulan {
  display: flex;
  justify-content: space-around;
  align-items: top;
  gap: 80px;
}

.keunggulan .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 300px;
}

.keunggulan .content img {
  display: block;
  margin: 0 auto;
  height: 120px;
  width: auto;
}

.keunggulan h3,
.keunggulan p {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.keunggulan h3 {
  font-size: 20px;
  margin: 30px 0 0 0;
}

.keunggulan p {
  font-size: 14px;
  margin: 15px 0 0 0;
}

@media screen and (max-width: 1120px) {
  .keunggulan {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    width: 100%;
  }

  .keunggulan .content {
    max-width: 350px;
    padding: 10px;
  }

  .keunggulan p {
    word-wrap: break-word;
  }

  .pilih-jasa {
    display: none;
  }

  .pilih-jasa-mobile {
    display: flex;
  }

  .pilih-jasa-mobile .content {
    position: absolute;
    top: 50% !important;
    left: 50%;
    width: 100%;
    padding: 30px !important;
    z-index: 10;
    text-align: start;
  }

  .pilih-jasa-mobile .cover-image {
    height: 500px !important;
    width: 100%;
  }

  .pilih-jasa-mobile .cover-image img {
    width: 100%;
  }

  .super-container {
    width: 100vw;
  }
}

.pilih-jasa-mobile {
  border-radius: 10px;
  object-fit: cover;
  position: relative;
}

.pilih-jasa-mobile .cover-image {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 10px;
}

.pilih-jasa-mobile .cover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  filter: brightness(70%);
}

.pilih-jasa-mobile .content {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 50px;
  transform: translateY(-50%);
  z-index: 10;
  text-align: center;
}

.pilih-jasa-mobile .content a {
  margin-top: 200px;
}

.pilih-jasa-mobile .content p {
  text-align: center;
}

.two-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 20px;
}

.two-section .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.two-section .content img {
  height: 350px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

@media screen and (max-width: 1120px) {
  .two-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 290px;
  }

  .two-section .content {
    width: 290px;
    max-width: 290px;
    margin: 0;
  }

  .two-section .content img {
    height: 240px;
  }
}

#tentang-kami,
#anti-rayap,
#pest-control,
#fumigasi,
#jakarta-office,
#jabar-office,
#bali-office,
#lampung-office,
#medan-office {
  scroll-margin-top: 5vh;
}
.tentang-semar {
  margin: 50px 0 100px 0;
  background-image: url(assets/fotobersama-semar.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 450px;
  width: 100%;
}

.tentang-semar .section {
  position: relative;
  top: 100%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background-color: #fff;
  border-radius: 10px;
  margin: 0 200px;
  box-shadow: 0 0 20px gray;
}

.tentang-semar .section .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 300px;
  height: 95px;
}

@media screen and (max-width: 1120px) {
  .tentang-semar {
    width: 100%;
    max-width: 100%;
    height: 290px;
    margin-bottom: 300px;
  }

  .tentang-semar .section {
    margin: 0 auto;
    width: 330px;
    padding: 20px;
    transform: translateY(-20px);
    flex-direction: column;
    align-items: center;
  }

  .tentang-semar .section .content {
    width: 100%;
    max-width: 400px;
    padding: 10px;
  }
}

.visi-misi {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.visi-misi .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.visi-misi .content .full-img {
  height: 350px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px !important;
}

.visi-misi .content .subcontent {
  max-width: 540px;
}

.visi-misi .content .subcontent .floating {
  width: 620px;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px gray;
}

@media screen and (max-width: 1120px) {
  .visi-misi {
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
    gap: 0px;
    display: flex;
  }

  .visi-misi .content {
    width: 350px;
    padding: 10px;
    margin: 0;
  }

  .visi-misi .content .full-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 0 10px 0;
    border-radius: 0;
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
  }

  .visi-misi .content p {
    word-wrap: break-word;
    text-align: start;
  }

  .visi-misi .content .subcontent .floating {
    z-index: 0;
    width: 100%;
    height: auto;
  }
}

.row-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 100px;
}

.row-image .section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 90px;
}

.row-image .section .content {
  margin: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 205px;
}

.row-image .section .content img {
  display: block;
  margin: 0 auto;
  height: auto;
  width: 90%;
}

@media screen and (max-width: 1120px) {
  .row-image .section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
    align-items: start;
  }

  .row-image .section .content {
    width: 75px;
    margin: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .row-image .section .content img {
    max-width: 100px;
    height: auto;
  }

  .row-image {
    width: 100%;
  }
}

.testimonial-container {
  max-width: 100%;
  margin: auto;
  text-align: center;
  background-color: #fff;
}

.testimonial-slider {
  max-width: 100%;
  position: relative;
  padding: 50px 0;
  border-radius: 10px;
  border-top: 4px solid #3d6db4;
  box-shadow: 0 0 20px gray;
  overflow: hidden;
  background-color: #fff;
}

.testimonial-slide {
  display: none;
  transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
  display: block;
}

.quote {
  color: #222;
  padding: 0 100px;
}

.author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.author img {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  object-fit: cover;
}

.author-info h3 {
  display: flex;
  justify-content: flex-start;
  text-align: start;
}

.author-info h4 {
  text-align: start;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 24px;
  color: #ccc;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.nav:hover {
  color: #3d6db4;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.dots {
  margin-top: 12px;
}

.dot {
  height: 8px;
  width: 16px;
  background-color: #ccc;
  border-radius: 5px;
  display: inline-block;
}

.dot.active {
  background-color: #3d6db4;
  width: 24px;
}

@media screen and (max-width: 1120px) {
  .testimonial-slider {
    margin: 0 10px;
    width: 340px;
  }

  .author {
    margin: 0 30px;
  }

  .author-info {
    max-width: 150px;
    text-align: start;
  }

  .testimonial-slide h3 {
    font-size: 14px;
  }

  .next,
  .prev {
    width: 30px;
  }
}
.layanan-kami {
  background-image: url(assets/layanan-cover.jpg);
  object-fit: cover;
  background-position-y: 900px;
}

.layanan-kami .section .content {
  text-align: center;
  padding: 75px 300px;
}

.layanan-kami .content img {
  width: 350px;
  height: auto;
}

@media screen and (max-width: 1120px) {
  .layanan-kami .section .content {
    padding: 75px 20px;
    width: 100%;
    max-width: 100%;
  }

  .layanan-kami .content img {
    width: 280px;
    height: auto;
    display: block;
    margin: auto;
    margin-top: 20px;
  }
}

.layanan-catalog .section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.layanan-catalog .section .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.layanan-catalog .section .content .content-image {
  width: 100%;
  height: 240px;
}

.layanan-catalog .section .content img {
  height: 100%;
  min-width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

@media screen and (max-width: 1120px) {
  .layanan-catalog .section {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
    margin: 0px;
  }

  .layanan-catalog .section .content {
    width: 340px;
    max-width: 340px;
  }

  .layanan-catalog .section .content .content-image {
    width: 100%;
    height: 200px;
  }
}

@media screen and (max-width: 790px) {
  .layanan-catalog .section {
    grid-template-columns: repeat(1, 1fr);
  }

  .layanan-catalog .section .content {
    width: 320px;
    max-width: 320px;
  }
}

.kenapa-harus {
  display: flex;
  justify-content: space-between;
  align-items: top;
  gap: 80px;
}

.kenapa-harus .content {
  margin-left: 50px;
}

.kenapa-harus .content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.kenapa-harus .content-grid .subcontent {
  width: 300px;
  height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #f8fbff;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  padding: 35px;
  transition: transform 0.2s ease;
}

.kenapa-harus .content-grid .subcontent:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

@media screen and (max-width: 1120px) {
  .kenapa-harus {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 30px;
  }

  .kenapa-harus .content {
    width: 320px;
    max-width: 320px;
    padding: 10px;
    margin: 0;
  }

  .kenapa-harus .content-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    justify-items: center;
  }

  .layanan-selected .content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    padding: 30px !important;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: start;
  }

  .layanan-selected .cover-image {
    height: 500px !important;
    width: 100%;
  }

  .super-container {
    width: 100vw;
  }
}

.layanan-selected {
  border-radius: 10px;
  object-fit: cover;
  position: relative;
}

.layanan-selected .cover-image {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 10px;
}

.layanan-selected .cover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  filter: brightness(40%);
}

.layanan-selected .content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 50px;
  transform: translateY(-50%);
  z-index: 10;
  text-align: center;
}

.layanan-selected .content p {
  text-align: center;
}

.solusi .solusi-content ol {
  padding: 10px 20px;
}

.download-proposal:hover {
  transform: scale(1.01);
  transition: transform 0.2s ease;
}

@media screen and (max-width: 1120px) {
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .s-section {
    width: 320px;
    max-width: 320px;
    margin: 0;
  }

  .f-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .page-heading .cover-image {
    width: 100vw;
  }
}

.page-heading {
  position: relative;
}

.page-heading .cover-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.page-heading .cover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  filter: brightness(50%);
}

.page-heading .content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 50px;
  text-align: center;
  transform: translateY(-50%);
  z-index: 10;
  border-radius: 10px;
}

.page-heading p {
  text-align: center;
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-items: space-around;
}

.qr-content {
  display: grid;
  text-align: center;
  padding: 20px;
  justify-items: center;
}

.qr-content img {
  width: 300px;
}

@media screen and (max-width: 1120px) {
  .qr-grid {
    grid-template-columns: 1fr; /* jadi 1 kolom */
  }
  .info-career {
    max-width: 300px;
  }
}
