* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

body {
  max-width: 100%;
  font-family: "poppins", sans-serif;
  margin: 0;
}
.navbar-top {
  width: 100%;
  margin-top: 0.5rem;
  background: #003b4e;
  color: white;
  padding: 10px 20px;
  box-sizing: border-box;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  position: fixed;
  box-sizing: border-box;
  right: 0;
  left: 0;
  z-index: 9999;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 7%;
  background-color: #f5f5f5;
  border-bottom: 1px solid #54504c;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
}
.navbar img {
  border-radius: 50%;
  width: 6rem;
  display: inline-block;
}

.navbar .navbar-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0c0808;
  font-style: italic;
}

.navbar .navbar-logo span {
  color: var(--primary);
}

.navbar .navbar-nav a {
  color: #0a0909;
  display: inline-block;
  font-size: 1.3rem;
  margin: 0 1rem;
}

.navbar .navbar-nav a:hover {
  color: #002c3e;
}

.navbar .navbar-nav a::after {
  content: "";
  display: block;
  padding-bottom: 0.5rem;
  border-bottom: 0.1rem solid #002c3e;
  transform: scaleX(0);
  transition: 0.2s linear;
}
.navbar .navbar-nav a:hover::after {
  transform: scaleX(0.5);
}

.navbar .navbar-extra a {
  color: #110202;
  margin: 0 0.5rem;
}

.navbar .navbar-extra a:hover {
  color: var(--primary);
}

#hamburger-menu {
  display: none;
}

/* Navbar Search Form */
.navbar .search-form {
  position: absolute;
  top: 100%;
  right: 7%;
  background-color: #002c3e;
  width: 50rem;
  height: 5rem;
  display: flex;
  align-items: center;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.5s;
}

.navbar .search-form.active {
  transform: scaleY(1);
}
.navbar .search-form input {
  height: 100%;
  width: 100%;
  font-size: 1.7rem;
  color: #002c3e;
  padding: 1rem;
}

.navbar .search-form label {
  cursor: pointer;
  font-size: 2rem;
  margin-right: 1.5rem;
  color: #00888b;
}
/* navbar end */

/* dropdown galery start */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  min-width: 100px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 1px 10px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Perbaikan bagian ini supaya tidak mengubah background */
.dropdown:hover .dropbtn {
  /* Hapus background-color atau set jadi transparent agar background tidak berubah */
  background-color: transparent;
  color: #ffd700; /* Contoh warna tulisan menyala saat hover */
  transition: color 0.3s ease;
}

/* dropdown galery end */

/* Navbar Search Form */
.search-form {
  position: absolute;
  top: 100%;
  right: 7%;
  background-color: #030303;
  width: 50rem;
  height: 5rem;
  display: flex;
  align-items: center;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.5s;
}

.cta {
  background-color: #00888b;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
}
/* navbar search-form end */
.shopping-cart-button {
  position: relative;
}
#shopping-cart-button .quantity-badge {
  display: inline-block;
  padding: 1px 5px;
  background-color: red;
  border-radius: 6px;
  font-size: 0.8rem;
  position: absolute;
}
.shopping-cart {
  position: absolute;
  top: 100%;
  right: -100%;
  height: -100vh;
  width: 35rem;
  padding: 0 1.5rem;
  background-color: #646a6a;
  color: white;
  transition: 0.3s;
}
.shopping-cart.active {
  right: 0;
}

.shopping-cart .cart-item {
  margin: 2rem 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #666;
  position: relative;
}

.shopping-cart img {
  height: 6rem;
  border-radius: 50%;
}

.shopping-cart h3 {
  font-size: 1.3rem;
}

.shopping-cart .item-price {
  font-size: 1.2rem;
}

.shopping-cart .cart-item .add,
.shopping-cart .cart-item .remove {
  display: inline-block;
  padding: 2px 2px;
  margin: 0;
  background-color: #030303;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
}

/* hero section */
.hero {
  margin-top: 8rem;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  padding-bottom: 5rem;
  align-items: center;
  background-color: #0b4d54;
}
.hero::after {
  content: "";
  display: block;
  position: absolute;
  min-width: 100%;
  height: 30%;
  pointer-events: none;
  background: linear-gradient(1deg, rgb(#0b4d54) 5%, rgba(#fff) 50%);
  bottom: 0;
}
.hero .content h1,
h2 {
  margin-left: 1.5rem;
  font-size: 2rem;
  line-height: 3rem;
  color: #ffffff;
  margin-top: 10px;
  margin-bottom: 20px;
}

.hero .content p {
  margin-left: 1.5rem;
  line-height: 1rem;
  font-size: 1rem;
  color: #d0f3f1;
  margin-bottom: 30px;
}

.hero .content .cta {
  margin-bottom: 2rem;
  margin-left: 5rem;
  display: inline-block;
  margin-right: 15px;
  background-color: #00b5b7;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}
.hero .content .cta a {
  cursor: pointer;
  color: white;
}

.hero img {
  margin-right: 5rem;
  width: 480px;
  height: auto;
}

/* hero section end */

/* about section */
.about {
  background-color: #ffffff;
  color: #002d2f;
  padding: 80px 20px;
}

.about h2 {
  color: #030303;
  text-align: center;
  display: flex;
  justify-content: center;
}
.about-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}
.highlight-box {
  position: relative;
  background-color: #03b1be;
  color: white;
  padding: 30px;
  border-radius: 15px;
  flex: 1 1 350px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.highlight-box h3 {
  font-size: 2rem;
  padding-top: 3rem;
}
.highlight-box p {
  padding-top: 1rem;
  font-size: 2rem;
}
.highlight-box img {
  width: 80px;
  border-radius: 20%;
  position: absolute;
  left: 0;
  top: 0;
}
.highlight-box i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #00c9b7;
  display: block;
}
/* about section end (highlight) */

/* about section start one */
.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.about-image {
  border-radius: 8rem;
  margin-top: 3rem;
  border: 2px solid #030303;
  position: relative;
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 8rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.experience {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #00b5b7;
  color: #fff;
  padding: 15px 20px;
  border-radius: 10rem;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.experience span {
  display: block;
  font-size: 1rem;
  font-weight: normal;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-top: 6rem;
  font-size: 32px;
  margin-bottom: 20px;
  color: #0b4d54;
}

.about-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.features .row1 {
  border: 2px solid #030303;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 2rem;
}

.features .row2 {
  border: 2px solid #030303;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 2rem;
}

.features .row3 {
  border: 2px solid #030303;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 2rem;
}

.feature-item h4 {
  text-align: left;
  margin-left: 1rem;
  font-size: 2rem;
  color: #00b5b7;
  margin-bottom: 10px;
}

.feature-item p {
  text-align: left;
  font-size: 1rem;
  margin-bottom: 5px;
}
.feature-item .row2 p {
  text-align: left;
  font-size: 1.5rem;
  margin-bottom: 5px;
}
.features .row1 img {
  width: 70px;
  height: 70px;
  background-color: #00c9b7;
  border-radius: 60%;
  margin-top: 3.5rem;
  margin-left: 2rem;
  border: 1px solid #030303;
}
.features .row2 img {
  width: 70px;
  height: 70px;
  background-color: #00c9b7;
  border-radius: 60%;
  margin-top: 3.5rem;
  margin-left: 2rem;
  border: 1px solid #030303;
}
.features .row3 img {
  width: 70px;
  height: 70px;
  background-color: #00c9b7;
  border-radius: 60%;
  margin-top: 3.5rem;
  margin-left: 2rem;
  border: 1px solid #030303;
}

.btn-discover {
  background-color: #00b5b7;
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

.services-section {
  background-color: #002c3e;
  padding: 80px 20px;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.services-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

.services-text {
  flex: 1 1 100%;
  max-width: 500px;
}

/* Untuk list dengan strip */
.strip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: left;
}

.strip-list li {
  margin-bottom: 6px;
  padding-left: 1em;
  text-indent: -1em;
}

/* Scrollbar halus */
.strip-list::-webkit-scrollbar {
  width: 6px;
}
.strip-list::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
}

.section-title span {
  color: #00d1b2;
}

.section-subtitle {
  font-size: 1rem;
  color: #b0c4d0;
  margin-top: 20px;
  line-height: 1.6;
}

.services-grid {
  flex: 1 1 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  max-width: 25rem;
  background-color: #fff;
  color: #00394c;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.services-section {
  background-color: #002c3e;
  padding: 80px 20px;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
}

/* Kiri */
.services-left {
  margin-right: 2rem;
  flex: 1;
  min-width: 280px;
}

.section-title {
  padding-right: 2rem;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-title span {
  font-size: 2rem;
  color: #00d1b2;
}

.section-subtitle {
  padding-left: 2rem;
  color: #b0c4d0;
  font-size: 1rem;
  line-height: 1.6;
}
.services-section img {
  max-width: 25rem;
  margin-top: 3rem;
  margin-left: 2rem;
  border-radius: 20px;
  border: 2px solid #fff;
}

/* Kanan (Card Grid) */
.services-right {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card Style */
.service-card {
  background-color: #fff;
  color: #002c3e;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: transform 0.3s ease;
}

.service-card h3 {
  padding-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-10px);
}

.icon img {
  width: 100px;
  height: 100px;
  background-color: #00d1b2;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 20px;
  margin: auto;
}

.product {
  background-color: #ffffff;
  padding: 80px 20px;
  color: #002c3e;
}

.product .section-title {
  color: #00394c;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
}

.product .section-title span {
  color: #00d1b2;
}

.product .section-subtitle {
  font-size: 1rem;
  color: #100000;
  margin-top: 20px;
  line-height: 1.6;
}

/* Grid sama seperti service */
.product .services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
}
.product .services-left {
  flex: 1;
  min-width: 280px;
}

.product .services-right {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card Style seperti service */
.product .product-card {
  background-color: #00b5b7;
  color: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.product .product-card:hover {
  transform: translateY(-10px);
}

.product .product-icons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.product .product-icons a:hover {
  background-color: var(--primary);
  border: 3px solid #666;
}
/* .product .product-icons a {
  width: 40px;
  height: 40px;
  background-color: #04bffd;
  color: #060606;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  border: 1px solid #ccc;
} */

.product .product-image img {
  height: 10rem;
  margin-bottom: 1rem;
}

.product .product-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.product-stars svg {
  stroke: #020201; /* outline */
  fill: #ffc107; /* isi */
}

.product .product-price {
  font-weight: bold;
  font-size: 1.2rem;
}

.product .services-left img {
  margin-top: 5rem;
}
.product a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #ff5722; /* Warna oranye menyala */
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 1rem;
  text-decoration: none;
}

.product a:hover {
  background-color: #e64a19;
  transform: translateY(-2px);
}

.product a:active {
  transform: scale(0.98);
}

.contact {
  padding-right: 40px;
  background: #f9f9f9;
}
.contact h2,
p {
  text-align: center;
  color: #444;
  padding-left: 1rem;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.contact-info,
.contact-form {
  flex: 1 1 300px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.info-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background-color: #01c9c4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 15px;
}

.icon-circle i {
  width: 24px;
  height: 24px;
}

.info-text h4 {
  margin: 0 0 5px;
  color: #333;
}

.info-text p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.input-group {
  margin-bottom: 15px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.btn {
  background-color: #01c9c4;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.map-container {
  margin-top: 30px;
  margin-left: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 10px;
}

.reviews {
  background-color: #f7f7f7;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2em;
  margin-bottom: 40px;
  color: #333;
}

.review-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.review-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-card p {
  font-style: italic;
  color: #555;
  margin-bottom: 10px;
}

.review-card h4 {
  color: #111;
  font-weight: bold;
}
.review-button {
  text-align: center;
  margin-top: 30px;
}

.review-button a {
  display: inline-block;
  background-color: #28a745;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.review-button a:hover {
  background-color: #218838;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* review sectio start */
.gallery-section {
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #002c3e;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: #777;
  margin-bottom: 30px;
}

.gallery-choices {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.gallery-button {
  background-color: #00b5b7;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.gallery-button:hover {
  background-color: #00888b;
}

.gallery-container {
  margin-bottom: 60px;
}

.gallery-container h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00b5b7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.gallery-grid img,
.gallery-grid iframe {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
/* review sectio endt */

/* Footer Umum */
.reparo-footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column h3,
.footer-column h4 {
  margin-bottom: 15px;
  color: #f5b400;
}

.footer-column p,
.footer-column li,
.footer-column a {
  text-align: left;
  font-size: 14px;
  color: #ccc;
  line-height: 1.9;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

.footer-column a:hover {
  color: #fff;
}

.footer-contact li {
  list-style: none;
  margin-bottom: 8px;
}

.footer-contact i {
  margin-right: 8px;
}

/* Bottom Footer */
.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px; /* jarak antar icon */
  margin-top: 20px;
}

.footer-social a img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-social a img:hover {
  transform: scale(1.2);
}

.footer-social a:hover {
  color: #f5b400;
}

.brand {
  color: #f5b400;
}

/* modal box */
/* item detail */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}
.modal .show {
  display: flex;
}

.modal-container {
  position: relative;
  background-color: #fefefe;
  color: #0c0808;
  margin: 15% auto;
  padding: 1.2rem;
  border: 2px solid #666;
  width: 80%;
}

.modal-container .close-icon {
  position: absolute;
  right: 1rem;
}

.modal-content {
  display: flex;
  flex-wrap: nowrap;
}

.modal-content img {
  height: 15rem;
  margin-right: 2rem;
  margin-bottom: 2rem;
}

.modal-content p {
  font-size: 1.2rem;
  line-height: 1.8rem;
  margin-top: 1.2rem;
}

.modal-content a {
  display: flex;
  gap: 1rem;
  width: 12rem;
  background-color: #00b5b7;
  color: #fff;
  margin-top: 1rem;
  padding: 1rem 1.6rem;
}
.wa-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.wa-float:hover {
  transform: scale(1.1);
}
.wa-float img {
  border-radius: 50%;
  width: 35px;
  height: 35px;
}

/* Responsif */
/* ===================== RESPONSIVE DESIGN ===================== */

/* Laptop/Desktop (≥ 1025px) */
@media (max-width: 1366px) {
  html {
    font-size: 75%;
  }
  .navbar {
    flex-direction: row;
  }

  .hero {
    flex-direction: row;
    padding: 4rem;
  }

  .hero img {
    width: 480px;
  }

  .about-container {
    flex-direction: row;
  }

  .services-row,
  .product .services-row {
    flex-direction: row;
  }

  .services-left,
  .product .services-left {
    flex: 1;
  }

  .services-right,
  .product .services-right {
    flex: 2;
  }
}

/* Tablet (601px – 1024px) */
@media (max-width: 768px) {
  html {
    font-size: 62.5%;
  }

  #hamburger-menu {
    display: inline-block;
  }
  .hero {
    padding-top: 10rem;
  }
  .navbar-top {
    margin-top: 1rem;
  }
  .navbar .navbar-nav {
    position: absolute;
    top: 100%;
    right: -100%;
    background-color: #fff;
    width: 30rem;
    height: 100vh;
  }
  .navbar .navbar-nav.active {
    right: 0;
  }
  .navbar .navbar-nav a {
    color: var(--bg);
    display: block;
    margin: 1.5rem;
    padding: 0.5rem;
    font-size: 2rem;
  }

  .navbar img {
    width: 8rem;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero::after {
    content: "";
    display: block;
    position: absolute;
    min-width: 100%;
    height: 30%;
    pointer-events: none;
    background: linear-gradient(1deg, rgb(#0b4d54) 5%, rgba(#fff) 50%);
    bottom: 0;
  }

  .hero .content h1,
  .hero .content h2 {
    font-size: 2rem;
  }

  .hero img {
    width: 80%;
  }

  .about img {
    width: 6rem;
  }

  .about-container {
    flex-direction: column;
    padding: 0 1rem;
  }

  .about-text {
    text-align: center;
  }

  .services-row,
  .product .services-row {
    flex-direction: column;
  }

  .services-left,
  .services-right,
  .product .services-left,
  .product .services-right {
    width: 100%;
  }
  .modal-content {
    flex-wrap: wrap;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Mobile (≤ 600px) */
@media (max-width: 398px) {
  html {
    font-size: 55%;
  }

  .navbar,
  .navbar .navbar-nav,
  .navbar .navbar-extra {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar img {
    width: 6rem;
    margin: 0;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 20rem;
  }

  .navbar-top {
    margin-top: 6rem;
  }

  .hero .content h1,
  .hero .content h2 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .hero img {
    width: 90%;
    margin: 2rem auto;
  }

  .about-container {
    flex-direction: column;
  }

  .about-image,
  .about-text {
    width: 100%;
  }

  .services-row,
  .product .services-row {
    flex-direction: column;
  }

  .services-left,
  .services-right,
  .product .services-left,
  .product .services-right {
    width: 100%;
  }

  .service-card {
    margin-left: 6rem;
  }
  .map-container {
    margin-left: 3rem;
  }

  .highlight-box p {
    font-size: 1.2rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
