/* =========================================================
   01. RESET & GLOBAL
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  background: #fff;
  color: #2a2a2a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none !important;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

p {
  color: #555;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
}

::selection {
  background: #fa65b1;
  color: #fff;
}


/* =========================================================
   02. COMMON
========================================================= */

.section-heading {
  position: relative;
  z-index: 2;
}

.section-heading h6,
.section-title h6 {
  margin-bottom: 15px;
  color: #726ae3;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading h4 {
  margin-bottom: 25px;
  color: #2a2a2a;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: capitalize;
}

.section-heading h4 em,
.section-title h2 em,
.top_cat__area em {
  color: #726ae3;
  font-style: normal;
}

.line-dec {
  width: 50px;
  height: 2px;
  background: #726ae3;
}

.border-first-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.border-first-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 42px;
  padding: 0;
  margin: 0;
  line-height: 1;
  text-align: center;
  text-decoration: none;

  border: 1px solid #fa65b1;
  border-radius: 6px;
  color: #fa65b1;
  background: transparent;

  transition: all 0.3s ease;
}

.border-first-button a:hover {
  background: #fa65b1;
  color: #fff !important;
}


/* =========================================================
   03. PRELOADER
========================================================= */

.js-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;
  opacity: 1;
  visibility: visible;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: #fff;
}

.preloader-inner .dot,
.preloader-inner .dots span {
  width: 16px;
  height: 16px;
  background: #fa65b1;
  border-radius: 50%;
}

.preloader-inner .dot {
  position: absolute;
  top: 12px;
  left: 15px;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  margin-top: 12px;
  margin-left: 31px;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  margin-left: 16px;
}

@keyframes dot {
  50% {
    transform: translateX(96px);
  }
}

@keyframes dots {
  50% {
    transform: translateX(-31px);
  }
}


/* =========================================================
   04. HEADER
========================================================= */

/* =========================================================
   04. HEADER
========================================================= */

.header-area {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  z-index: 1000;

  width: 100%;
  height: 100px;

  background: #fff;

  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.03);

  transition: all 0.3s ease;
}


/* =========================================================
   HEADER STICKY
========================================================= */

.header-area.header-sticky {
  min-height: 100px;
}


/* =========================================================
   MAIN NAVIGATION
========================================================= */

.header-area .main-nav {
  display: flex;
  align-items: center;

  width: 100%;
  min-height: 100px;

  background: transparent;
}


/* =========================================================
   LOGO AREA
========================================================= */

.header-area .main-nav .logo {
  display: flex;
  align-items: center;

  /*
   * Memberikan ruang lebih besar
   * untuk logo + nama perusahaan
   */
  width: 55%;

  flex-shrink: 0;

  gap: 14px;

  color: #1a1a1a;

  font-family: "Montserrat", Arial, sans-serif;

  font-size: 21px;
  font-weight: 700;

  line-height: 1.2;

  white-space: nowrap;

  text-decoration: none;

  transition: all 0.3s ease;
}


/* =========================================================
   LOGO IMAGE
========================================================= */

.header-area .main-nav .logo img {
  display: block;

  width: 72px;
  max-width: 72px;

  height: auto;

  flex-shrink: 0;

  object-fit: contain;

  transition: all 0.3s ease;
}


/* =========================================================
   COMPANY NAME
========================================================= */

.header-area .main-nav .logo span {
  display: block;

  color: #1a1a1a;

  font-family: "Montserrat", sans-serif;

  font-size: 25px;
  font-weight: 600;

  line-height: 1.1;

  letter-spacing: 0.3px;

  white-space: nowrap;

  transition: all 0.3s ease;
}


/* =========================================================
   NAVIGATION
========================================================= */

.header-area .main-nav .nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  /*
   * Sisa ruang header
   */
  width: 45%;

  gap: 5px;

  margin: 0;

  padding: 0;

  list-style: none;
}


/* =========================================================
   NAVIGATION ITEM
========================================================= */

.header-area .main-nav .nav li {
  padding: 0 10px;

  margin: 0;

  list-style: none;
}


/* =========================================================
   LAST NAVIGATION ITEM
========================================================= */

.header-area .main-nav .nav li:last-child {
  padding-right: 0;
  padding-left: 15px;
}


/* =========================================================
   NAVIGATION LINK
========================================================= */

.header-area .main-nav .nav li a {
  display: block;

  height: 40px;

  line-height: 40px;

  color: #2a2a2a;

  font-family: "Poppins", sans-serif;

  font-size: 15px;

  font-weight: 500;

  letter-spacing: 0.3px;

  text-decoration: none;

  transition: all 0.3s ease;
}


/* =========================================================
   NAVIGATION HOVER
========================================================= */

.header-area .main-nav .nav li:hover > a {
  color: #fa65b1 !important;
}


/* =========================================================
   ACTIVE MENU
========================================================= */

.header-area .main-nav .nav li a.active {
  color: #fa65b1 !important;
}


/* =========================================================
   CONTACT BUTTON
========================================================= */

.header-area .main-nav .nav li:last-child .border-first-button {
  margin-left: 0;
}

.header-area .main-nav .nav li:last-child .border-first-button a {
  height: auto;

  line-height: normal;

  padding: 9px 20px;

  border: 1px solid #fa65b1;

  border-radius: 23px;

  color: #fa65b1 !important;

  font-size: 14px;

  transition: all 0.3s ease;
}


/* Contact Hover */

.header-area .main-nav .nav li:last-child .border-first-button a:hover {
  background: #fa65b1;

  color: #fff !important;
}


/* =========================================================
   FIXED / SCROLL HEADER
========================================================= */

.background-header {
  position: fixed !important;

  top: 0;
  left: 0;
  right: 0;

  width: 100%;

  height: 80px !important;

  min-height: 80px !important;

  background: #fff !important;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);

  transition: all 0.3s ease;
}


/* Fixed Main Nav */

.background-header .main-nav {
  min-height: 80px;
}


/* Fixed Logo */

.background-header .main-nav .logo {
  color: #1a1a1a;
}


/* Fixed Company Name */

.background-header .main-nav .logo span {
  color: #1a1a1a;
}


/* Fixed Navigation */

.background-header .main-nav .nav {
  margin-top: 0 !important;
}

.background-header .main-nav .nav li a {
  color: #2a2a2a;
}


/* =========================================================
   MOBILE MENU TRIGGER
========================================================= */

.menu-trigger {
  display: none;

  position: absolute;

  top: 30px;
  right: 25px;

  width: 32px;
  height: 40px;

  cursor: pointer;

  z-index: 999;

  text-indent: -9999px;
}


/* =========================================================
   HAMBURGER
========================================================= */

.menu-trigger span,
.menu-trigger span::before,
.menu-trigger span::after {
  position: absolute;

  left: 0;

  display: block;

  width: 30px;
  height: 2px;

  background: #2a2a2a;

  transition: all 0.3s ease;
}


/* Middle Line */

.menu-trigger span {
  top: 16px;
}


/* Top & Bottom Line */

.menu-trigger span::before,
.menu-trigger span::after {
  content: "";
}


/* Top Line */

.menu-trigger span::before {
  top: -10px;
}


/* Bottom Line */

.menu-trigger span::after {
  top: 10px;
}


/* =========================================================
   HAMBURGER ACTIVE
========================================================= */

.menu-trigger.active span {
  background: transparent;
}

.menu-trigger.active span::before {
  top: 0;

  transform: rotate(45deg);
}

.menu-trigger.active span::after {
  top: 0;

  transform: rotate(-45deg);
}


/* =========================================================
   LARGE DESKTOP
   1200px +
========================================================= */

@media (min-width: 1200px) {

  .header-area .main-nav .logo {
    width: 55%;
  }

  .header-area .main-nav .logo img {
    width: 72px;
    max-width: 72px;
  }

  .header-area .main-nav .logo span {
    font-size: 25px;
  }

  .header-area .main-nav .nav {
    width: 45%;
  }

}


/* =========================================================
   LAPTOP / TABLET LANDSCAPE
   992px - 1199px
========================================================= */

@media (min-width: 992px) and (max-width: 1199px) {

  .header-area {
    height: 90px;
  }

  .header-area .main-nav {
    min-height: 90px;
  }


  /* Logo Area */

  .header-area .main-nav .logo {
    width: 53%;

    gap: 10px;
  }


  /* Logo */

  .header-area .main-nav .logo img {
    width: 62px;
    max-width: 62px;
  }


  /* Company Name */

  .header-area .main-nav .logo span {
    font-size: 19px;

    letter-spacing: 0.2px;
  }


  /* Navigation */

  .header-area .main-nav .nav {
    width: 47%;

    gap: 0;
  }


  .header-area .main-nav .nav li {
    padding: 0 6px;
  }


  .header-area .main-nav .nav li:last-child {
    padding-left: 7px;
  }


  /* Navigation Text */

  .header-area .main-nav .nav li a {
    font-size: 13px;

    letter-spacing: 0;
  }


  /* Contact */

  .header-area .main-nav .nav li:last-child .border-first-button a {
    padding: 8px 14px;

    font-size: 13px;
  }

}


/* =========================================================
   MOBILE
   <= 991px
========================================================= */

@media (max-width: 991px) {

  .header-area {
    position: absolute;

    height: 80px;

    min-height: 80px;
  }


  /* Main Nav */

  .header-area .main-nav {
    min-height: 80px;
  }


  /* Logo */

  .header-area .main-nav .logo {
    width: auto;

    gap: 10px;
  }


  /* Logo Image */

  .header-area .main-nav .logo img {
    width: 60px;
    max-width: 60px;
  }


  /* =====================================================
     HIDE COMPANY NAME
  ===================================================== */

  .header-area .main-nav .logo span {
    display: none;
  }


  /* =====================================================
     HIDE DESKTOP NAV
  ===================================================== */

  .header-area .main-nav .nav {
    display: none;
  }


  /* =====================================================
     SHOW MOBILE MENU
  ===================================================== */

  .menu-trigger {
    display: block;

    top: 20px;
  }

}


/* =========================================================
   MOBILE FIXED HEADER
========================================================= */

@media (max-width: 991px) {

  .background-header {
    height: 80px !important;

    min-height: 80px !important;
  }

  .background-header .main-nav {
    min-height: 80px;
  }

  .background-header .main-nav .logo img {
    width: 60px;
    max-width: 60px;
  }

}


/* =========================================================
   SMALL MOBILE
   <= 480px
========================================================= */

@media (max-width: 480px) {

  .header-area {
    height: 75px;

    min-height: 75px;
  }


  .header-area .main-nav {
    min-height: 75px;
  }


  /* Logo */

  .header-area .main-nav .logo img {
    width: 52px;
    max-width: 52px;
  }


  /* Menu */

  .menu-trigger {
    top: 17px;

    right: 15px;
  }

}


/* =========================================================
   VERY SMALL MOBILE
   <= 360px
========================================================= */

@media (max-width: 360px) {

  .header-area .main-nav .logo img {
    width: 48px;
    max-width: 48px;
  }

  .menu-trigger {
    right: 12px;
  }

}

/* =========================================================
   06. MAIN BANNER
========================================================= */

.main-banner {
  position: relative;
  overflow: hidden;

  padding: 226px 0 120px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.main-banner::after {
  content: "";

  position: absolute;
  top: 60px;
  left: 0;

  width: 262px;
  height: 625px;

  background: url("../images/slider-left-dec.jpg") no-repeat;
  z-index: 1;
}

.main-banner::before {
  content: "";

  position: absolute;
  top: 60px;
  right: 0;

  width: 1159px;
  height: 797px;

  background: url("../images/slider-right-dec.jpg") no-repeat;
  z-index: 0;
}

.main-banner .container {
  position: relative;
  z-index: 2;
}

.main-banner .left-content {
  margin-right: 15px;
}

.main-banner .left-content h6 {
  margin-bottom: 15px;

  color: #fa65b1;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-banner .left-content h2 {
  position: relative;

  margin-bottom: 20px;

  color: #2a2a2a;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
}

.main-banner .left-content p {
  margin-right: 45px;
  margin-bottom: 30px;
}

.main-banner .right-image {
  position: relative;
  z-index: 2;
  text-align: right;
}

.main-banner .right-image img {
  width: 100%;
  max-width: 593px;
  margin-left: auto;
}


/* =========================================================
   07. ABOUT
========================================================= */

#about {
  padding-top: 130px;
  padding-bottom: 60px;
}

.about-left-image img {
  width: 100%;
  margin-right: 45px;
}

.about-right-content p {
  margin-top: 30px;
  margin-bottom: 30px;
}

.about-right-content p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   08. SERVICE CATEGORY
========================================================= */

.top_cat__area {
  padding: 80px 0 60px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section-title {
  margin-bottom: 55px;
  text-align: center;
}

.section-title h2 {
  margin: 0;

  color: #2a2a2a;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
}

.section-title .line-dec {
  margin: 20px auto 0;
}

.cat_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;

  text-align: center;
}

.cat_list li {
  display: flex;
  align-items: center;

  margin: 0;

  background: #fff;
  border: 1px solid #ddd;
  border-radius: 100px;

  transition: all 0.3s ease;
}

.cat_list li a {
  display: flex;
  align-items: center;

  min-height: 65px;
  padding: 8px 22px 8px 10px;

  color: #6d7193;
  font-size: 14px;
  font-weight: 500;

  transition: all 0.3s ease;
}

.cat_list li a img {
  width: 48px;
  height: 48px;
  margin-right: 10px;

  object-fit: contain;

  background: #fff;
  border: 4px solid #ecedff;
  border-radius: 50%;
}

.cat_list li:hover {
  background: #525fe1;
  border-color: #525fe1;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(82, 95, 225, 0.2);
}

.cat_list li:hover a {
  color: #fff;
}


/* =========================================================
   09. PORTFOLIO
========================================================= */

.our-portfolio {
  position: relative;
  overflow: hidden;

  padding-top: 130px;
  padding-bottom: 30px;
}

.our-portfolio::before {
  content: "";

  position: absolute;
  top: 0;
  right: 0;

  width: 414px;
  height: 861px;

  background: url("../images/portfolio-right-dec.jpg") no-repeat;
  z-index: 0;
}

.our-portfolio::after {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 677px;
  height: 759px;

  background: url("../images/portfolio-left-dec.jpg") no-repeat;
  z-index: 0;
}

.our-portfolio .container,
.our-portfolio .container-fluid {
  position: relative;
  z-index: 2;
}

.our-portfolio .section-heading {
  margin-bottom: 70px;
}

.our-portfolio .container-fluid {
  padding-right: 15px;
  padding-left: 15px;
}

.our-portfolio .item {
  position: relative;
  z-index: 2;
}

.portfolio-item {
  overflow: hidden;

  margin: 15px;

  background: #fff;
  border-radius: 25px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);

  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.portfolio-item .thumb {
  position: relative;
  overflow: hidden;

  height: 300px;

  border-radius: 23px 23px 0 0;
}

.portfolio-item .thumb img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.portfolio-item:hover .thumb img {
  transform: scale(1.05);
}

.portfolio-item .down-content {
  padding: 20px 15px;

  background: #fff;
  text-align: center;

  border-radius: 0 0 23px 23px;
}

.portfolio-item .down-content h4 {
  margin-bottom: 8px;

  color: #2a2a2a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;

  transition: color 0.3s ease;
}

.portfolio-item .down-content span {
  color: #999;
  font-size: 14px;
  font-weight: 500;

  transition: color 0.3s ease;
}

.portfolio-item:hover .down-content h4,
.portfolio-item:hover .down-content span {
  color: #fa65b1;
}

.our-portfolio .owl-nav {
  position: absolute;
  top: -115px;
  right: 10%;

  display: flex !important;
  gap: 10px;
}

.our-portfolio .owl-nav span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;

  background: #eee;
  border-radius: 50%;

  color: #fff;
  font-size: 30px;

  transition: all 0.3s ease;
}

.our-portfolio .owl-nav span:hover {
  background: #fa65b1;
}


/* =========================================================
   10. CONTACT
========================================================= */

.contact-us {
  padding-top: 130px;
  padding-bottom: 80px;

}


/* =========================================================
   SECTION HEADING
========================================================= */
.contact-us .section-heading {
  margin-bottom: 80px;
  text-align: center;
}

.contact-us .section-heading .line-dec {
  margin: 0 auto;

}


/* =========================================================
   CONTACT WRAPPER
========================================================= */

.contact-wrapper {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 23px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);

}


/* =========================================================
   GOOGLE MAP
========================================================= */

#map {
  width: 100%;
  height: 100%;
}

#map iframe {
  display: block;
  width: 100%;
  min-height: 636px;
  height: 636px;
  border: 0;
  border-radius: 23px 0 0 23px;
  position: relative;
  z-index: 2;

}


/* =========================================
   CONTACT INFORMATION
========================================= */

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Contact Item */
.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
}

/* Icon */
.contact-item-icon {
  flex-shrink: 0;
  width: 65px;
  height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;
  border-radius: 50%;

  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
}

.contact-item-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

/* Content */
.contact-item-content {
  flex: 1;
}

.contact-label {
  display: block;
  margin-bottom: 5px;

  color: #fa65b1;

  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;

  letter-spacing: 1px;
}

/* WhatsApp & Email */
.contact-item-content > a {
  display: inline-block;

  color: #2a2a2a;

  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;

  text-decoration: none;

  transition: all 0.3s ease;
}

.contact-item-content > a:hover {
  color: #fa65b1;
}

/* Head Office */
.contact-item-content h5 {
  margin: 0 0 8px 0;

  color: #2a2a2a;

  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;

  line-height: 1.4;
}

.contact-item-content p {
  margin: 0 0 8px 0;

  color: #777;

  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 400;

  line-height: 1.7;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
  .contact-item {
    padding: 20px;
    gap: 15px;
    align-items: flex-start;
  }
  .contact-item-icon {
    width: 55px;
    height: 55px;
  }
  .contact-item-icon img {
    width: 32px;
    height: 32px;
  }
  .contact-label {
    font-size: 11px;
  }
  .contact-item-content > a {
    font-size: 12px;
  }
  .contact-item-content h5 {
    font-size: 14px;
  }
  .contact-item-content p {
    font-size: 12px;
  }
}


@media (max-width: 480px) {
  .contact-item {
    padding: 18px 15px;
  }
  .contact-item-icon {
    width: 50px;
    height: 50px;
  }
  .contact-item-icon img {
    width: 30px;
    height: 30px;
  }
}


.contact-information .info-post {
  margin-bottom: 20px;
}

.contact-information .info-post .icon {
  min-height: 160px;
  padding: 25px 15px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;

}


.contact-information .info-post .icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(228, 10, 210, 0.12);
}

.contact-information .info-post .icon img {
  display: block;
  width: 50px;
  max-width: 50px;
  height: 50px;
  margin-bottom: 10px;
  object-fit: contain;

}

.contact-information .info-title {
  display: block;
  margin-bottom: 5px;
  color: #2a2a2a;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;

}

.contact-information .info-post .icon a {
  display: block;
  color: #2a2a2a;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  word-break: break-word;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-information .info-post .icon:hover a {
  color: #fa65b1;
}


@media (max-width: 991px) {

  .contact-us {
    padding-top: 100px;
    padding-bottom: 60px;
  }


  /* Map */

  #map iframe {
    min-height: 450px;
    height: 450px;
    border-radius: 23px 23px 0 0;
  }


  /* Information */
  .contact-information {
    padding: 40px 30px;
  }


  /* Contact Cards */
  .contact-cards {
    margin-bottom: 10px;
  }

  /* Head Office */
  .head-office {
    margin-top: 10px;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .contact-us .section-heading {
    margin-bottom: 50px;
  }


  /* Map */

  #map iframe {
    min-height: 350px;
    height: 350px;
    border-radius: 23px 23px 0 0;
  }


  /* Information */
  .contact-information {
    padding: 30px 20px;
  }

  /* Contact Cards */
  .contact-information .info-post .icon {
    min-height: 145px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
  .contact-information {
    padding: 25px 15px;
  }


  .contact-information .info-post .icon {
    min-height: 140px;
    padding: 20px 10px;
  }


  .contact-information .info-post .icon img {
    width: 45px;
    height: 45px;
  }

}


/* =========================================================
   11. FOOTER
========================================================= */

footer {
  margin-top: 130px;
  padding: 20px 0;

  background: url("../images/footer-bg.jpg") center / cover no-repeat;
}

footer p {
  margin: 0;

  color: #fff;
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}

footer p a {
  color: #fff;
}


/* =========================================================
   12. TABLET
========================================================= */

@media (max-width: 1200px) {

  .header-area .main-nav .nav {
    gap: 0;
  }

  .header-area .main-nav .nav li {
    padding: 0 8px;
  }

  .header-area .main-nav .nav li:last-child {
    padding-left: 15px;
  }

  .header-area .main-nav .logo {
    font-size: 16px;
  }

  .main-banner .left-content h2 {
    font-size: 44px;
  }

  .cat_list ul {
    gap: 14px;
  }

}


/* =========================================================
   13. TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 991px) {

  /* Header */

  .header-area {
    height: 90px;
  }

  .header-area .main-nav {
    min-height: 90px;
  }

  .header-area .main-nav .logo {
    font-size: 15px;
  }

  .header-area .main-nav .logo img {
    width: 60px;
    max-width: 60px;
  }

  .header-area .main-nav .nav {
    display: none !important;
  }

  .menu-trigger {
    display: block;
  }

  /* Banner */

  .main-banner {
    padding: 180px 0 70px;
    text-align: center;
  }

  .main-banner::before {
    display: none;
  }

  .main-banner .left-content {
    margin-right: 0;
  }

  .main-banner .left-content h2 {
    font-size: 42px;
  }

  .main-banner .left-content p {
    margin-right: 0;
  }

  .main-banner .right-image {
    margin-top: 40px;
    text-align: center;
  }

  .main-banner .right-image img {
    max-width: 520px;
    margin: 0 auto;
  }

  /* About */

  #about {
    padding-top: 90px;
  }

  .about-left-image {
    margin-bottom: 45px;
  }

  .about-left-image img {
    margin: 0 auto;
  }

  /* Service */

  .top_cat__area {
    padding: 70px 0 50px;
  }

  .section-title h2 {
    font-size: 34px;
  }

  /* Portfolio */

  .our-portfolio {
    padding-top: 90px;
  }

  .our-portfolio .section-heading {
    margin-bottom: 50px;
  }

  .our-portfolio .owl-nav {
    display: none !important;
  }

  .portfolio-item .thumb {
    height: 260px;
  }

  /* Contact */

  .contact-us {
    padding-top: 90px;
  }

  .contact-us .section-heading {
    margin-bottom: 50px;
  }

  form#contact {
    padding: 0;
  }

  form#contact #map iframe {
    min-height: 400px;
    border-radius: 23px 23px 0 0;
  }

  .fill-form {
    padding: 40px 30px 50px;
  }

  .fill-form .icon {
    min-height: 135px;
  }

  footer {
    margin-top: 90px;
  }
}


/* =========================================================
   14. MOBILE
========================================================= */

@media (max-width: 767px) {

  /* Global */

  p {
    font-size: 14px;
    line-height: 1.8;
  }

  .section-heading h4 {
    font-size: 28px;
  }

  /* Header */

  .header-area {
    height: 80px;
    padding: 0 15px;
  }

  .header-area .container {
    padding: 0;
  }

  .header-area .main-nav {
    min-height: 80px;
  }

  .header-area .main-nav .logo {
    gap: 8px;

    margin-left: 5px;

    font-size: 12px;
    max-width: calc(100% - 60px);
  }

  .header-area .main-nav .logo img {
    width: 50px;
    max-width: 50px;
  }

  .menu-trigger {
    top: 22px;
    right: 10px;
  }

  /*
     Mobile menu dari custom.js
     Pastikan JS memberikan display:block
     ketika .nav dibuka.
  */

  .header-area .main-nav .nav {
    position: absolute;
    top: 80px;
    left: 0;

    width: 100%;

    margin: 0 !important;
    padding: 0;

    background: #fff;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
  }

  .header-area .main-nav .nav li {
    width: 100%;
    padding: 0 !important;

    border-bottom: 1px solid #eee;
  }

  .header-area .main-nav .nav li a {
    width: 100%;
    height: 50px !important;
    padding: 0 20px !important;

    background: #fff !important;

    color: #2a2a2a !important;
    font-size: 14px;

    line-height: 50px !important;
    text-align: left;
  }

  .header-area .main-nav .nav li a:hover,
  .header-area .main-nav .nav li a.active {
    background: #f8f8f8 !important;
    color: #fa65b1 !important;
  }

  .header-area .main-nav .nav li:last-child {
    display: block;
  }

  .header-area .main-nav .nav li:last-child a {
    padding: 0 20px !important;
  }

  /* Background header */

  .background-header {
    height: 80px !important;
  }

  .background-header .main-nav {
    min-height: 80px;
  }

  /* Banner */

  .main-banner {
    padding: 150px 15px 60px;
  }

  .main-banner::after {
    display: none;
  }

  .main-banner .left-content h6 {
    font-size: 16px;
  }

  .main-banner .left-content h2 {
    font-size: 32px;
    line-height: 1.25;
  }

  .main-banner .left-content p {
    margin-bottom: 25px;
  }

  .main-banner .right-image {
    margin-top: 35px;
  }

  .main-banner .right-image img {
    max-width: 400px;
  }

  /* About */

  #about {
    padding-top: 70px;
  }

  .about-left-image {
    margin-bottom: 35px;
  }

  .about-right-content p {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  /* Service */

  .top_cat__area {
    padding: 60px 15px 45px;
  }

  .section-title {
    margin-bottom: 35px;
  }

  .section-title h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .cat_list ul {
    gap: 12px;
  }

  .cat_list li {
    width: 100%;
    max-width: 330px;
  }

  .cat_list li a {
    width: 100%;
    justify-content: flex-start;

    padding: 7px 18px 7px 8px;

    font-size: 13px;
  }
  .cat_list li a img {
    width: 45px;
    height: 45px;
  }

  /* Portfolio */

  .our-portfolio {
    padding-top: 70px;
  }
  .our-portfolio::before,
  .our-portfolio::after {
    display: none;
  }
  .our-portfolio .section-heading {
    margin-bottom: 35px;
    text-align: center;
  }
  .our-portfolio .section-heading .line-dec {
    margin: 0 auto;
  }
  .portfolio-item {
    margin: 10px;
  }
  .portfolio-item .thumb {
    height: 240px;
  }
  .portfolio-item .down-content {
    padding: 16px 12px;
  }
  .portfolio-item .down-content h4 {
    font-size: 16px;
  }
  .portfolio-item .down-content span {
    font-size: 13px;
  }

  /* Contact */

  .contact-us {
    padding-top: 70px;
  }
  .contact-us .section-heading {
    margin-bottom: 35px;
  }
  form#contact::before,
  form#contact::after,
  .contact-dec {
    display: none;
  }
  form#contact #map iframe {
    min-height: 350px;
    height: 350px;
    border-radius: 23px 23px 0 0;
  }
  .fill-form {
    padding: 30px 20px 35px;
  }
  .fill-form .icon {
    min-height: 125px;
    padding: 18px 10px;
  }
  .fill-form .icon img {
    width: 45px;
    height: 45px;
  }
  .fill-form .icon a {
    font-size: 12px;
  }
  form#contact input {
    margin-top: 20px;
  }
  form#contact textarea {
    height: 170px;
    min-height: 170px;
    max-height: 220px;
    margin-top: 20px;
  }
  form#contact button {
    margin-top: 20px;
  }
  /* Footer */
  footer {
    margin-top: 70px;
    padding: 15px;
  }
  footer p {
    font-size: 12px;
  }
}


/* =========================================================
   15. VERY SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .header-area .main-nav .logo {
    font-size: 10px;
  }
  .header-area .main-nav .logo img {
    width: 45px;
    max-width: 45px;
  }
  .main-banner {
    padding-top: 140px;
  }
  .main-banner .left-content h2 {
    font-size: 27px;
  }
  .main-banner .left-content h6 {
    font-size: 14px;
  }
  .main-banner .right-image img {
    max-width: 320px;
  }
  .section-title h2 {
    font-size: 27px;
  }
  .section-heading h4 {
    font-size: 25px;
  }
  .portfolio-item .thumb {
    height: 210px;
  }
  form#contact #map iframe {
    height: 300px;
    min-height: 300px;
  }
  .fill-form {
    padding: 25px 15px 30px;
  }

}


/* =========================================================
   16. EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

  .header-area .main-nav .logo {
    font-size: 9px;
  }
  .header-area .main-nav .logo img {
    width: 40px;
    max-width: 40px;
  }
  .main-banner .left-content h2 {
    font-size: 24px;
  }
  .cat_list li {
    max-width: 100%;
  }
  .portfolio-item .thumb {
    height: 190px;
  }

}

/* =========================================================
   FLOATING WHATSAPP BUTTON
========================================================= */

.floating-wa {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 58px;
  padding: 6px 20px 6px 7px;
  background: #25D366;
  border-radius: 50px;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
}

/* WhatsApp Icon */

.floating-wa .wa-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: #fff;
  border-radius: 50%;
  color: #25D366;
  font-size: 25px;
  transition: all 0.3s ease;
}

/* Text */

.floating-wa .wa-text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

/* Hover */

.floating-wa:hover {
  transform: translateY(-5px);
  background: #20bd5a;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.floating-wa:hover .wa-icon {
  transform: rotate(10deg) scale(1.05);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .floating-wa {
    right: 18px;
    bottom: 18px;
    width: 55px;
    height: 55px;
    padding: 5px;
    justify-content: center;
  }

  .floating-wa .wa-icon {
    width: 45px;
    height: 45px;
    font-size: 24px;
  }

  .floating-wa .wa-text {
    display: none;
  }

}

.floating-wa::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 2px solid #25D366;
  animation: waPulse 2s infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.15);
    opacity: 0;
  }

  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}