* {
  margin: 0;
  padding: 0;
  font-family: "League Spartan", sans-serif;
  box-sizing: border-box;
  transition: all 0.2s linear;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
}

:root {
  --dark-green: #8dc44d;
  --green-color: #1a5832;
  --white-color: #fff;
}

::selection {
  background: var(--green-color);
  color: var(--white-color);
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: "League Spartan", sans-serif;
}

html {
  font-size: 90%;
  scroll-behavior: smooth;
}

.heading {
  font-size: 3rem;
  margin-top: 1rem;
}

section {
  padding: 0 8rem;
  width: 100%;
}

.label {
  font-size: 1.1rem;
  color: #666;
  text-transform: uppercase;
  font-weight: 500;
}

.heading {
  font-size: 3rem;
  margin-top: 1rem;
}

/* Home */
section.home {
  padding: 1rem;
  width: 100%;
  height: 100vh;
}

.home .home-box {
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url("../img/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.home .home-box nav {
  width: 100%;
  height: 65px;
  background: linear-gradient(rgb(255, 255, 255, 0.2), rgb(255, 255, 255, 0.2));
  backdrop-filter: blur(1px);
  border-radius: 0.7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4rem;
  z-index: 10;
  position: relative;
}

.home .home-box nav img {
  width: 120px;
  margin-left: -50px;
}

.home .home-box nav .logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home .home-box nav .logo .bar {
  font-size: 1.35rem;
  color: var(--white-color);
  cursor: pointer;
  display: none;
}

.home .home-box nav .logo .bar:hover {
  color: var(--green-color);
}

.home .home-box nav .logo h3 {
  color: var(--white-color);
  font-weight: 400;
}

.home .home-box nav .menu .close {
  display: none;
}

.home .home-box nav .menu ul {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.home .home-box nav .menu ul li a {
  color: var(--white-color);
  font-weight: 400;
}

.home .home-box nav .menu ul li a:hover {
  color: rgb(255 255 255/70%);
}

.home .home-box nav .signup-login {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.home .home-box nav .signup-login a {
  color: var(--white-color);
  padding: 0.3rem 1rem;
  border-radius: 2rem;
}

.home .home-box nav .signup-login a:last-child {
  background: var(--green-color);
  padding: 0.3rem 1rem;
  border-radius: 2rem;
}

.home .home-box nav .signup-login a:hover {
  color: rgb(255 255 255/70%);
}

.home .home-box nav .signup-login a:last-child:hover {
  color: var(--white-color);
  background: #02636e;
}

.home .home-box .content {
  width: 100%;
  height: calc(100% - 65px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: translate(0, -65px);
}

.home .home-box .content h2 {
  text-transform: uppercase;
  color: var(--white-color);
  font-size: 2.5rem;
  font-weight: 600;
  margin-top: 2rem;
}

.home .home-box .content h4 {
  text-transform: uppercase;
  color: var(--white-color);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.home .home-box .content h1 {
  font-size: 4rem;
  max-width: 60rem;
  color: var(--white-color);
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.home .home-box .content p {
  color: #eee;
  font-weight: 300;
  max-width: 40rem;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 2rem;
}

.home .home-box .content .search {
  width: 100%;
  max-width: 40em;
  height: 45px;
  background: var(--white-color);
  border-radius: 3rem;
  display: flex;
  align-items: center;
  padding: 0.3rem;
}

.home .home-box .content .search i {
  color: rgba(0, 0, 0, 0.5);
  margin: 0 0.6rem;
}

.home .home-box .content .search input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-weight: 400;
}

.home .home-box .content .search button {
  height: 100%;
  padding: 0 1rem;
  border-radius: inherit;
  background: var(--green-color);
  border: none;
  outline: none;
  color: var(--white-color);
  font-weight: 400;
  cursor: pointer;
}

.home .home-box .content .search button:hover {
  background: #02636e;
}

/* Book form */
.book-form {
  width: 100%;
  max-width: 900px;
  margin: 1rem auto;
  margin-top: -3rem;
  background: var(--white-color);
  border-radius: 1rem;
  box-shadow: 0 0.2rem rgba(17, 17, 17, 0.2);
  padding: 0.5rem;
}

.book-form form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.book-form form .inputBox {
  flex: 1;
  min-width: 20%;
  margin-right: 0.5rem;
}

.book-form form .inputBox input {
  width: 100%;
  padding: 0.5rem 0.5rem;
  border-radius: 1.5rem;
  border: 0.1rem solid var(--green-color);
  font-size: 1rem;
  margin-top: 0.3rem;
  background: none;
}

.book-form form .inputBox span {
  font-size: 0.8rem;
  color: var(--green-color);
}

.book-form form .btn {
  padding: 0.6rem 1rem;
  border-radius: 1.5rem;
  background-color: var(--green-color);
  color: white;
  font-size: 1rem;
  text-align: center;
  border: 0.1rem var(--green-color);
  cursor: pointer;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.book-form form .btn:hover {
  background-color: #02636e;
}

/* About */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
}

.container {
  display: flex;
  max-width: 1200px;
  border-radius: 8px;
  overflow: hidden;
}

.image-section img {
  width: 400px;
  height: auto;
  margin-left: 20px;
}

.image-section {
  flex: 0 0 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-section {
  flex: 1;
  padding: 40px;
}

.title-section {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.title-section h3 {
  color: var(--green-color);
  font-size: 20px;
  text-transform: uppercase;
  margin-right: 10px;
  font-weight: bold;
}

.lines {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 5px;
}

.lines div {
  background-color: var(--green-color);
  height: 2px;
}

.line1 {
  width: 50px;
  margin-bottom: 3px;
}

.line2 {
  width: 30px;
}

.underline {
  height: 2px;
  width: 50px;
  background-color: var(--green-color);
}

.content-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.highlight {
  color: var(--green-color);
}

.content-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.features {
  list-style: none;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.features li {
  font-size: 16px;
  color: #555;
  display: flex;
  align-items: center;
}

.features li i {
  color: var(--green-color);
  font-size: 18px;
  margin-right: 10px;
}

.read-more-btn {
  background-color: var(--green-color);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.read-more-btn:hover {
  background-color: #02636e;
}

/* Packages section */
.title-section-packages {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.title-section-packages h2 {
  color: var(--green-color);
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}

.line-left,
.line-right {
  height: 2px;
  background-color: var(--green-color);
  width: 50px;
  margin: 0 10px;
}

section .section__title {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--green-color);
}

.card__container1 {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background-color: var(--white-color);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 280px;
  position: relative;
  transition: transform 0.3s;
  margin-bottom: var(--mb-1-5);
  display: grid;
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
}

.card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card__content {
  padding: 16px;
}

.card h3 {
  font-size: var(--h3-font-size);
  margin: 0 0 10px;
  color: black;
}

.card p {
  font-size: var(--small-font-size);
  color: #777;
  margin: 0 0 10px;
}

.card__details {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.rating {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #fff;
  color: #333;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.rating i {
  color: #ffeb55;
}

.card__details i {
  color: #333;
}

.card__details li {
  font-size: var(--smaller-font-size);
  color: #555;
  display: flex;
  align-items: center;
}

.packages__icon {
  margin-right: 5px;
}

.card__price {
  font-size: 18px;
  font-weight: var(--font-semi-bold);
  margin: 10px 0;
  color: #333;
}

.card__price small {
  font-weight: normal;
  color: #777;
}

.button_packages {
  display: inline-block;
  background-color: var(--green-color);
  color: var(--white-color);
  padding: 0.5rem 1rem;
  font-weight: 400;
  transition: 0.3s;
  border-radius: 5px;
}

.button_packages:hover {
  background-color: #02636e;
}

/* Testimoni */
.title-section-testimoni {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.title-section-testimoni h2 {
  color: var(--green-color);
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}

.line-left,
.line-right {
  height: 2px;
  background-color: var(--green-color);
  width: 50px;
  margin: 0 10px;
}

.feedback {
  background: url("../img/home-background.jpg");
  background-position: center;
  background-size: cover;
  margin-top: 6rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.feedback .container-testimoni {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.feedback .container-testimoni h4 {
  color: rgb(255 255 255/90%);
}

.feedback .container-testimoni h2 {
  max-width: 40rem;
  color: var(--white-color);
  text-align: center;
}

.feedback .container-testimoni p {
  color: #eee;
  font-size: 1.2rem;
  margin-top: 1rem;
  text-align: center;
}

.feedback .voices {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}

.feedback .voices .voice {
  flex: 1 0 320px;
  background: var(--white-color);
  padding: 2rem;
  border-radius: 0.7rem;
}

.feedback .voices .voice .profile {
  display: flex;
  align-items: center;
}

.feedback .voices .voice .profile img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  object-position: center;
  border-radius: 2rem;
}

.feedback .voices .voice .profile .detail {
  margin-left: 1rem;
}

.feedback .voices .voice .profile .detail li {
  list-style: none;
}

.feedback .voices .voice .profile .detail li:first-child {
  font-size: 1.1rem;
  color: #000;
  font-weight: 600;
}

.feedback .voices .voice p {
  margin-top: 1rem;
}

/* Article */
.title-section-article {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.title-section-article h2 {
  color: var(--green-color);
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}

.line-left,
.line-right {
  height: 2px;
  background-color: var(--green-color);
  width: 50px;
  margin: 0 10px;
}

.article {
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-top: 5rem;
}

.article .container-article {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.article .container-article .latest-article,
.article .container-article .more-article {
  width: 100%;
  flex: 1 0 350px;
}

.article .container-article .latest-article img {
  width: 100%;
  height: 28rem;
  border-radius: 1rem;
  object-fit: cover;
  object-position: center;
}

.article .container-article .latest-article p {
  margin: 0.8rem 0;
  color: #666;
}

.article .container-article .latest-article h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

.article .container-article .latest-article .author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.article .container-article .latest-article .author img {
  width: 30px;
  height: 30px;
  border-radius: 3rem;
}

.article .container-article .latest-article .author p {
  font-size: 0.9rem;
}

.article .container-article .more-article {
  display: grid;
  gap: 1rem;
}

.article .container-article .more-article .box {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.article .container-article .more-article .box img {
  width: 135px;
  height: 120px;
  object-fit: cover;
  object-position: center;
  border-radius: 0.5rem;
}

.article .container-article .more-article .box .text h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.article .container-article .more-article .box .text li {
  margin-top: 0.3rem;
  list-style: none;
  color: #666;
}

/* Footer */
footer {
  padding: 1rem;
  width: 100%;
}

footer .footer {
  background: var(--dark-green);
  border-radius: 0.7rem;
  padding: 6rem 7rem;
  padding-bottom: 1rem;
}

footer .footer .container-footer {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--green-color);
  gap: 1rem;
}

footer .footer .container-footer .detail {
  max-width: 32rem;
}

footer .footer .container-footer .detail h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--white-color);
}

footer .footer .container-footer .detail p {
  line-height: 1.6;
  color: rgb(255 255 255/80%);
  margin-bottom: 1.5rem;
}

footer .footer .container-footer .detail h5 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--white-color);
}

footer .footer .container-footer .detail a {
  color: rgb(255 255 255/80%);
  font-size: 0.9rem;
  padding: 1px 0;
  display: inline-block;
}

footer .footer .container-footer .detail .social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

footer .footer .container-footer .detail .social a {
  border: none;
  font-size: 1.3rem;
  color: var(--white-color);
}

footer .footer .container-footer h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--white-color);
}

footer .footer .container-footer li {
  list-style: none;
  margin-top: 1rem;
}

footer .footer .container-footer a {
  color: rgb(255 255 255/80%);
}

footer .footer .container-footer a:hover {
  color: var(--white-color);
}

footer .footer .container-footer span {
  color: #000;
  background: #00cee4;
  font-size: 0.9rem;
  padding: 0.1rem 0.5rem;
  border-radius: 0.3rem;
  font-weight: 500;
}

footer .footer .copyright {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgb(255 255 255/80%);
  text-align: center;
}

footer .footer .copyright a {
  color: rgb(255 255 255/80%);
  margin-left: 1rem;
  text-align: center;
}

/* Contact Us Page */
section.contact {
  padding: 1rem;
  width: 100%;
}

.contact .home-box-contact {
  width: 100%;
  height: 70%;
  background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url("../img/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.contact .home-box-contact nav {
  width: 100%;
  height: 65px;
  background: linear-gradient(rgb(255, 255, 255, 0.2), rgb(255, 255, 255, 0.2));
  backdrop-filter: blur(1px);
  border-radius: 0.7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4rem;
  z-index: 10;
  position: relative;
}

.contact .home-box-contact nav img {
  width: 120px;
  margin-left: -50px;
}

.contact .home-box-contact nav .logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact .home-box-contact nav .logo .bar {
  font-size: 1.35rem;
  color: var(--white-color);
  cursor: pointer;
  display: none;
}

.contact .home-box-contact nav .logo .bar:hover {
  color: var(--green-color);
}

.contact .home-box-contact nav .logo h3 {
  color: var(--white-color);
  font-weight: 400;
}

.contact .home-box-contact nav .menu .close {
  display: none;
}

.contact .home-box-contact nav .menu ul {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.contact .home-box-contact nav .menu ul li a {
  color: var(--white-color);
  font-weight: 400;
}

.contact .home-box-contact nav .menu ul li a:hover {
  color: rgb(255 255 255/70%);
}

.contact .home-box-contact nav .signup-login {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact .home-box-contact nav .signup-login a {
  color: var(--white-color);
  padding: 0.3rem 1rem;
  border-radius: 2rem;
}

.contact .home-box-contact nav .signup-login a:last-child {
  background: var(--green-color);
  padding: 0.3rem 1rem;
  border-radius: 2rem;
}

.contact .home-box-contact nav .signup-login a:hover {
  color: rgb(255 255 255/70%);
}

.contact .home-box-contact nav .signup-login a:last-child:hover {
  color: var(--white-color);
  background: #02636e;
}

.contact .content-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  color: var(--white-color);
  padding-bottom: 0;
  margin-top: 3rem;
}

.contact .content-contact h1 {
  font-size: 3rem;
  margin-bottom: 5rem;
}

.contact .content-about p {
  font-size: 1.2rem;
  line-height: 1.5;
  max-width: 800px;
  margin-bottom: 3rem;
}

.contact-us {
  text-align: center;
  padding: 40px 20px;
  background-color: #e8f0f7;
}

.contact-us h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: var(--green-color);
}

.contact-us p {
  margin-bottom: 30px;
  color: #555;
}

.contact-form {
  display: flex;
  justify-content: space-around;
  margin-bottom: 40px;
}

.contact-form form {
  flex: 1;
  margin-right: 20px;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.contact-form form button {
  background-color: var(--green-color);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}

.contact-form form button:hover {
  background-color: #02636e;
}

.newsletter {
  flex: 1;
  background-color: #cfe5e8;
  padding: 20px;
  border-radius: 12px;
}

.newsletter h3 {
  margin-bottom: 15px;
}

.newsletter p {
  margin-bottom: 15px;
}

.newsletter form input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

.newsletter form button {
  background-color: var(--green-color);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}

.newsletter form button:hover {
  background-color: #02636e;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-info .contact-detail {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.contact-info .contact-detail strong {
  margin-left: 0.5rem;
}

.contact-info .contact-detail i {
  color: var(--green-color);
}

.map {
  margin-bottom: 40px;
}

.articleText {
  margin: 40px auto;
  width: 80%;
  padding-left: 20px;
  text-align: justify;
  line-height: 1.6;
  color: #666;
}

.articleText img {
  width: 50%;
  margin: 0 auto;
}

.articleText h2 {
  color: var(--green-color);
  font-size: 28px;
  margin-bottom: 20px;
}

.articleText p,
.articleText li {
  color: #666;
  margin-top: 5px;
}

.justify {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.justify figure img {
  border-radius: 8px;
}

ol {
  margin: 20px auto;
  padding-left: 20px;
}

.services {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin: 50px 0;
}

.service {
  text-align: center;
  width: 30%;
}

.service img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 20px;
}

.service h3 {
  font-size: 22px;
  color: var(--green-color);
}

.service p {
  font-size: 16px;
  color: #777;
}

.media {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.media figure,
.media video {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
}

.media figure img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.media video {
  width: 100%;
  height: auto;
}

.team {
  text-align: center;
  margin-bottom: 50px;
}

.team h2 {
  font-size: 28px;
  color: var(--green-color);
  /* margin-bottom: 30px; */
  margin-top: 5rem;
}

.team-members {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin-top: 2rem;
}

.member {
  text-align: center;
  width: 22%;
}

.member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.member h3 {
  font-size: 20px;
  color: var(--green-color);
  margin-bottom: 5px;
}

.member p {
  font-size: 16px;
  color: #555;
}

.mission-vision {
  text-align: center;
  margin: 50px 0;
}

.mission-vision h2 {
  font-size: 28px;
  color: var(--green-color);
  margin-top: 40px;
}

.mission-vision p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  color: #555;
}

footer {
  padding: 1rem;
  width: 100%;
}

footer .footer {
  background: var(--dark-green);
  border-radius: 0.7rem;
  padding: 6rem 7rem;
  padding-bottom: 1rem;
}

footer .footer .container-footer {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--green-color);
  gap: 1rem;
}

footer .footer .container-footer .detail {
  max-width: 32rem;
}

footer .footer .container-footer .detail h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--white-color);
}

footer .footer .container-footer .detail p {
  line-height: 1.6;
  color: rgb(255 255 255/80%);
  margin-bottom: 1.5rem;
}

footer .footer .container-footer .detail h5 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--white-color);
}

footer .footer .container-footer .detail a {
  color: rgb(255 255 255/80%);
  font-size: 0.9rem;
  padding: 1px 0;
  display: inline-block;
}

footer .footer .container-footer .detail .social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

footer .footer .container-footer .detail .social a {
  border: none;
  font-size: 1.3rem;
  color: var(--white-color);
}

footer .footer .container-footer h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--white-color);
}

footer .footer .container-footer li {
  list-style: none;
  margin-top: 1rem;
}

footer .footer .container-footer a {
  color: rgb(255 255 255/80%);
}

footer .footer .container-footer a:hover {
  color: var(--white-color);
}

footer .footer .container-footer span {
  color: #000;
  background: #00cee4;
  font-size: 0.9rem;
  padding: 0.1rem 0.5rem;
  border-radius: 0.3rem;
  font-weight: 500;
}

footer .footer .copyright {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgb(255 255 255/80%);
  text-align: center;
}

footer .footer .copyright a {
  color: rgb(255 255 255/80%);
  margin-left: 1rem;
  text-align: center;
}

/* Travel Packages */
.card__container__packages {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
}

.card {
  background-color: var(--white-color);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 280px;
  position: relative;
  transition: transform 0.3s;
  margin-bottom: var(--mb-1-5);
  display: grid;
  height: 100%;
}

.card__container {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.card:hover {
  transform: translateY(-10px);
}

.card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card__content {
  padding: 16px;
}

.card h3 {
  font-size: var(--h3-font-size);
  margin: 0 0 10px;
  color: black;
}

.card p {
  font-size: var(--small-font-size);
  color: #777;
  margin: 0 0 10px;
}

.card__details {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.packages__icon {
  margin-right: 5px;
}

.card__price {
  font-size: 18px;
  font-weight: var(--font-semi-bold);
  margin: 10px 0;
  color: #333;
}

.card__price small {
  font-weight: normal;
  color: #777;
}

.button_packages {
  display: inline-block;
  background-color: var(--green-color);
  color: var(--white-color);
  padding: 0.5rem 1rem;
  font-weight: 400;
  transition: 0.3s;
  border-radius: 5px;
}

.button_packages:hover {
  background-color: #02636e;
}

.package-container {
  width: 85%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.package-header {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: #f7f9fc;
  border-bottom: 1px solid #e2e8f0;
}

.package-image {
  width: 50%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.package-info {
  margin-left: 20px;
}

.trip-title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.trip-tagline {
  font-size: 1.1rem;
  color: #7f8c8d;
}

.package-details {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.trip-info {
  width: 65%;
}

.trip-info h2 {
  font-size: 1.6rem;
  color: var(--green-color);
  margin-bottom: 10px;
  border-bottom: 2px solid var(--green-color);
  padding-bottom: 5px;
}

.trip-info p,
.trip-info ul {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.trip-info ul {
  list-style-type: disc;
  padding-left: 20px;
}

.trip-info ul li {
  margin-bottom: 10px;
}

.package-container {
  width: 90%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.package-header {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: #f0f4f8;
  border-bottom: 1px solid #e2e8f0;
}

.package-image {
  width: 50%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.package-info {
  margin-left: 20px;
}

.trip-title {
  font-size: 2.8rem;
  color: var(--green-color);
  margin-bottom: 8px;
}

.trip-tagline {
  font-size: 1.2rem;
  color: #7f8c8d;
}

.package-details {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.trip-info {
  width: 65%;
}

.trip-info h2 {
  font-size: 1.8rem;
  color: var(--green-color);
  margin-bottom: 12px;
  border-bottom: 2px solid var(--green-color);
  padding-bottom: 6px;
}

.trip-info p,
.trip-info ul {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.trip-info ul {
  list-style-type: disc;
  padding-left: 20px;
}

.trip-info ul li {
  margin-bottom: 10px;
}

.trip-booking {
  width: 30%;
  padding: 20px;
  background-color: #f9fbfd;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  height: 80%;
}

.trip-booking h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--green-color);
}

.trip-booking p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.price-info p {
  font-size: 1.3rem;
  color: var(--dark-green);
  font-weight: bold;
}

.extras ul {
  list-style-type: none;
  padding-left: 0;
}

.extras li {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.booking-buttons {
  margin-top: 20px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  margin-right: 10px;
  width: 100%;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary {
  background-color: var(--green-color);
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #02636e;
}

.btn-secondary {
  background-color: white;
  color: var(--green-color);
  border: 2px solid var(--green-color);
  margin-top: 1rem;
}

.btn-secondary:hover {
  background-color: #ecf0f1;
}

.social-share {
  margin-top: 30px;
}

.social-share h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.social-share a {
  color: var(--green-color);
  font-size: 1rem;
  margin-right: 0.9rem;
}

.package-image:hover {
  transform: scale(1.05);
}

.recommended-packages {
  margin-top: 40px;
}

.recommended-packages h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 2px solid var(--green-color);
  padding-bottom: 10px;
}

.recommended-list {
  display: flex;
  justify-content: space-between;
}

.package-card {
  width: 30%;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.package-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.package-card h3 {
  font-size: 1.4rem;
  color: #34495e;
  margin: 10px 0;
}

.package-card .price {
  font-size: 1.6rem;
  color: var(--green-color);
  font-weight: bold;
}

.package-card p {
  font-size: 1.1rem;
  color: #7f8c8d;
}

.package-card .btn-primary {
  margin-top: 15px;
  background-color: var(--green-color);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.package-card .btn-primary:hover {
  background-color: #02636e;
}

.package-card:hover {
  transform: scale(1.05);
}

/* Media section */
@media (max-width: 1020px) {
  html {
    font-size: 85%;
  }

  section {
    padding: 0 2rem;
  }

  footer .footer {
    padding: 2rem;
  }
}

@media (max-width: 910px) {
  .home .home-box nav {
    padding: 0 1rem;
  }

  .home .home-box nav .menu ul {
    gap: 2rem;
  }

  footer .footer .container-footer {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .content-section {
    padding: 20px;
  }

  .content-section h2 {
    font-size: 28px;
  }

  .features li {
    font-size: 14px;
  }

  .media {
    flex-direction: column;
  }

  .media img,
  .media .team-video {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .home .home-box nav .menu {
    display: none;
  }

  .home .home-box nav .logo .bar {
    display: block;
  }

  .home .home-box nav .menu.active {
    display: block;
    position: absolute;
    left: -1.5rem;
    top: -1.5rem;
    width: 100vw;
    height: 100vh;
    background: rgb(0 0 0/90%);
    display: flex;
    align-items: center;
    padding: 0 3rem;
  }

  .home .home-box nav .menu .close {
    display: block;
    position: absolute;
    left: 3rem;
    top: 3rem;
    cursor: pointer;
    color: var(--white-color);
    font-size: 2rem;
  }

  .home .home-box nav .menu .close:hover {
    color: rgb(0 0 0/40%);
  }

  .home .home-box nav .menu ul {
    flex-direction: column;
    font-size: 1.3rem;
    gap: 1rem;
  }

  .home .home-box nav .menu ul:hover li a {
    color: rgb(255 255 255/40%);
  }

  .home .home-box nav .menu ul li a:hover {
    color: var(--white-color);
  }

  .home .home-box .content {
    padding: 2rem;
  }
}

@media (max-width: 607px) {
  .home .home-box .content h1 {
    font-size: 2rem;
  }

  .home .home-box .content p {
    font-size: 0.8rem;
  }
}

@media (max-width: 457px) {
  .article .container-article .latest-article,
  .article .container-article .more-article {
    width: 100%;
    flex: 1 0 250px;
  }

  .article .container-article .more-article .box img {
    width: 100%;
    height: 85px;
  }

  .article .container-article .more-article .text h3 {
    font-size: 1.1rem;
  }
}
