@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Poppins:wght@400;600;800&display=swap");

:root {
  --primary-color: #1B447F;
  --primary-color-dark: #1B447F;
  --secondary-color: #f5f5f5;
  --text-dark: #000000;
  --text-light: #f5f5f5;
  --extra-light: #ffffff;
  --max-width: 1200px;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden
}

/* ======== LOADING SPINNER ======== */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid rgba(27, 68, 127, 0.2);
  border-top: 6px solid #1B447F;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Animasi putar lingkaran */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Sembunyikan loader setelah selesai */
#loading.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Navbar desktop */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Logo lebih besar di desktop */
nav .logo {
  width: 250px;
  height: auto;
  object-fit: contain;
}

/* Navbar mobile */
@media (max-width: 768px) {
  nav .logo {
    width: 140px;
    height: auto;
  }

  nav {
    padding: 15px 20px;
  }
}

/* Nav links desktop */
.nav__links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav__links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav__links a:hover {
  color: #000;
}

/* Toggle button */
.menu-toggle {
  display: none;
  font-size: 32px;
  cursor: pointer;
  background: none;
  border: none;
  color: #1B447F;
  z-index: 10000;
}

/* Responsive mobile */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
    font-size: 32px;
    cursor: pointer;
    background: none;
    border: none;
    color: #1B447F;
    z-index: 10000;
  }

/* Panel menu di mobile */
.nav__links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 70px;               /* Mulai di bawah navbar */
  left: -100%;
  width: 80%;
  height: calc(100% - 70px); /* sisakan ruang untuk navbar */
  background-color: #fff;
  padding: 40px 20px 20px;   /* jarak isi menu dari atas panel */
  gap: 25px;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 900;              /* panel di bawah navbar */
  transition: left 0.4s ease;
}

/* Saat toggle ditekan */
.nav__links.show {
  left: 0;
}

/* Navbar tetap di atas */
nav {
  background: #fff;
  z-index: 1100;  /* lebih tinggi dari panel */
  height: 70px;   /* tentukan tinggi navbar */
}

  /* Link style mobile */
  .nav__links a {
    color: black;
    font-size: 1.1rem;
    text-align: left;
    display: block;
    transition: color 0.3s ease;
  }

  .nav__links a:hover {
    color: #1B447F;
  }
}

/* Text dan button responsive mobile */
@media (max-width: 768px) {

  /* Header text */
  .header__content h1 {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .header__content .sub__header {
    font-size: 0.9rem;
  }

  .header__content .action__btns .btn {
    padding: 8px 20px;
    font-size: 14px;
  }

  /* Service section */
  .service__text .section__title {
    font-size: 1.5rem;
  }

  .service__text .section__subtitle {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  /* Contact us */
  .contact__title {
    font-size: 1.3rem;
  }

  .contact__subtitle {
    font-size: 0.9rem;
  }

  .contact__btn {
    padding: 8px 18px;
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  #home {
    background-size: contain;
    background-position: center top;
    height: 200px;
  }

  .header__content {
    max-width: 90%;
    padding: 1rem;
  }

  .header__content h1 {
    font-size: 1.2rem;
  }

  .header__content .section__subtitle {
    font-size: 0.8rem;
  }

  .action__btns .btn {
    padding: 6px 15px;
    font-size: 12px;
  }
}

/* Service section mobile layout */
@media (max-width: 768px) {
  .service {
    flex-direction: column;
    position: relative;
    min-height: auto;
  }

  .service__image {
    position: relative;
    width: 100% !important;
    height: 300px;
    margin-bottom: 0;
  }

  .service__container {
    margin-left: 0 !important;
    padding: 2rem 1.5rem !important;
    width: 100%;
    background-color: #F5F5F5;
  }

  .service__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Optional: Tambahan untuk memperbaiki tampilan desktop */
@media (min-width: 769px) {
  .service {
    display: flex;
    align-items: center;
    min-height: 500px;
  }
  
  .service__image {
    position: absolute;
    left: 0;
    width: 40%;
    height: 100%;
  }
  
  .service__container {
    margin-left: 40%;
    padding-left: 8rem;
    padding-right: 2rem;
  }
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__container.header__container {
  max-width: 100%;
  margin: 0;
  padding: 0 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
}

.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.section__title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section__subtitle {
  font-size: 1rem;
  color: var(--extra-light);
  max-width: calc(var(--max-width) / 2);
}

.btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 280;
  background-color: white;
  color: black;
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn:hover,
.btn:active {
  background-color: #39A0D9;
  color: white;
}

/* Animasi slide kiri dan kanan */
.slide-left {
  animation: slideLeft 0.7s ease forwards;
}

.slide-right {
  animation: slideRight 0.7s ease forwards;
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.slider-indicators {
  position: absolute;
  bottom: 220px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-indicators .dot {
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.slider-indicators .dot.active {
  background: var(--primary-color);
  width: 25px;
  border-radius: 10px;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

body {
  font-family: "Poppins", sans-serif;
}

nav {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

nav img {
  width: 220px;
  height: auto;
  object-fit: contain;
}

.nav__links a {
  position: relative;
  text-decoration: none;
  color: #333;
  padding-bottom: 5px;
}

.nav__links a.active {
  color: #1B447F;
}

.nav__links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #1B447F;
}

.link a:hover {
  color: var(--primary-color);
}

header {
  background-color: var(--secondary-color);
}

.header__container {
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.header__image {
  position: relative;
}

header {
  position: relative;
  background: url("assets/bg-header 1.png") no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 13rem;
  transition: background-image 0.6s ease-in-out;
}

/* Tombol panah */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  cursor: pointer;
  user-select: none;
  z-index: 10;
  transition: transform 0.2s ease;
}

.slide-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

/* Tombol kiri ujung */
.prev-btn {
  left: 30px;
}

/* Tombol kanan ujung */
.next-btn {
  right: 30px;
}

.header__image img:nth-child(1) {
  max-width: 350px;
  transform: translate(-75%, -50%);
}

.header__image img:nth-child(2) {
  max-width: 250px;
  transform: translate(0%, -25%);
}

.header__content {
  text-align: left;
  max-width: 600px;
}

.header__content > div {
  max-width: 400px;
  display: grid;
  gap: 1rem;
}

.header__content .sub__header {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.header__content h1 {
  text-align: left;
  margin-left: 0;
  line-height: 1.3;
  color: var(--extra-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 280;
}

.header__content .action__btns {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
}

.destination__nav {
  display: flex;
  gap: 1rem;
}

.destination__nav span {
  width: 30px;
  height: 30px;
  display: grid;
  place-content: center;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 100%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: 0.3s;
}

.destination__nav span:hover {
  color: var(--extra-light);
  background-color: var(--primary-color);
}

.destination__wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.destination__wrapper img {
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
}

/* Awal posisi animasi */
.destination__image {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s ease;
}

.destination__text {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

/* Class aktif ketika terlihat */
.animate-left {
  opacity: 1;
  transform: translateX(0);
}

.animate-up {
  opacity: 1;
  transform: translateY(0);
}

.service {
  position: relative;
  background-color: #F5F5F5;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
}

/* Foto menempel ke kiri full */
.service__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  overflow: hidden;
}

.service__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Container teks agar tidak tertutup foto */
.service__container {
  margin-left: 40%;
  padding-left: 8rem;
  padding-right: 2rem;
}

/* Teks */
.service__text .section__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 280;
  font-size: 2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
}

.service__text .section__subtitle {
  font-size: 1rem;
  color: #000;
  line-height: 1.6;
}

/* Awal posisi animasi dari kanan */
.service__text {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s ease;
}

/* Class aktif ketika terlihat */
.animate-left {
  opacity: 1;
  transform: translateX(0);
}

.destination__text {
  flex: 1;
  min-width: 300px;
}

.about__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 280;
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.about__subtitle {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Subjudul (Vision, Mission) */
h3.about__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 280;
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

h4.about__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 280;
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 0.4rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

/* Subtitle Vision & Mission */
h3.about__title + .about__subtitle,
h4.about__title + .about__subtitle {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.destination__card img {
  border-radius: 1rem;
}

.destination__details {
  position: absolute;
  width: calc(100% - 2rem);
  padding: 1rem;
  bottom: -6rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--extra-light);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  z-index: 1;
  transition: 0.3s;
}

.destination__card:hover .destination__details {
  bottom: 1rem;
}

.destination__title {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.destination__subtitle {
  font-size: 1rem;
  font-weight: 600;
}

.gallery__tabs {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  margin-left: 30px;
}

.gallary__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.gallery__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
  justify-items: center;
}

.tab-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 280;
  flex: 0 0 auto;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  background: #f5f5f5;
  color: black;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.tab-btn.active {
  background: #1B447F;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.tab-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* Default (sebelum muncul) */
.gallery__tabs .tab-btn {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Saat muncul */
.gallery__tabs .tab-btn.show {
  opacity: 1;
  transform: translateY(0);
}

.gallery__tabs .tab-btn.show:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* Gambar sebelum muncul */
.gallery__item img {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Saat aktif (masuk viewport) */
.gallery__item img.show {
  opacity: 1;
  transform: scale(1);
}

.gallery__content {
  display: flex;
  justify-content: center;
  width: 100%;
}

.tab-content {
  display: none;
  width: 100%;
  text-align: center;
}

.tab-content.active {
  display: flex;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.tab-content img {
  width: 250px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tab-content img:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.gallery__item-wrapper {
  position: relative;
  display: inline-block;
  overflow: visible;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 1rem;
}

.gallery__item-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.gallery__item-wrapper .gallery__item {
  border-radius: 1rem;
  overflow: hidden;
}

.read-more-btn {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;

  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
  animation-delay: 0.3s;
}

/* Kalau sudah pernah animasi → jangan ulang */
.read-more-btn.animated {
  opacity: 1;
  animation: none;
}

/* Animasi fade in */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Ukuran tombol */
.read-more-btn img {
  width: 120px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .gallery__tabs {
    justify-content: space-between;
    flex-wrap: nowrap;
    margin-left: 0;
    gap: 0.5rem;
  }

  .tab-btn {
    flex: 1;
    font-size: 0.8rem;
    padding: 6px 6px;
  }
}

.partners {
  background-color: #f5f5f5;
  width: 100vw;
  margin: 0;
  padding: 4rem 0;
}

.partners__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}


.partners__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 280;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  margin: 0 0 3rem 0;
}

.partners__slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.partners__track {
  display: flex;
  gap: 40px;
  animation: scroll 25s linear infinite;
  animation-play-state: paused;
}

.partners__track.animate {
  animation-play-state: running;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.partners__track img {
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s;
}

.partners__track img:hover {
  transform: scale(1.2);
}

.faq__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-top: 50px;
  padding: 2rem 2rem;
}

/* Wrapper FAQ kiri */
.faq__wrapper {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
  margin-left: 0;
}

/* Header */
.faq__box {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  margin-bottom: 10px;
}

.faq__box h2 {
  font-weight: 400;
}

.faq__box h2 .highlight {
  font-family: 'Montserrat', sans-serif;
  font-weight: 280;
  color: #1B447F;
}

.faq__box p {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

/* Setiap box FAQ */
.faq__item {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  padding: 15px 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq__item:hover .faq__question,
.faq__item:hover .faq__arrow {
  color: #1B447F;
}

.faq__icon {
  width: 28px;
  height: 28px;
  margin-right: 12px;
}

/* Pertanyaan */
.faq__question {
  flex: 1;
  font-size: 16px;
  color: #000;
  transition: color 0.3s ease;
  margin-left: 0;
} 

.faq__arrow {
  font-size: 32px;
  font-weight: 200;
  color: #333;
  display: inline-block;
  transform: scaleX(1.5);
  transition: transform 0.3s ease, color 0.3s ease;
}


/* Answer (hidden by default) */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 0 0 10px 10px;
  padding: 0 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__answer p {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

/* Open State */
.faq__item.active .faq__question,
.faq__item.active .faq__arrow {
  color: #1B447F;
}

.faq__item.active + .faq__answer {
  max-height: 200px;
  padding: 15px 20px;
}

.faq__item.active .faq__arrow {
  transform: rotate(90deg);
}

/* Bagian gambar (kanan) */
.faq__image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.faq__image img {
  max-width: 120%;
  border-radius: 12px;
  transform: translateX(60px) scale(1.4);
  transition: transform 0.3s ease;
}

.faq__item,
.faq__image {
  opacity: 0;
  transform: scale(0.8);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

/* Saat muncul (zoom-in untuk FAQ) */
.faq__item.show {
  opacity: 1;
  transform: scale(1);
}

/* Saat muncul (slide-in untuk foto) */
.faq__image.show {
  opacity: 1;
  transform: translateX(0);
}

.faq__image {
  transform: translateX(100px);
  transition: transform 1s ease, opacity 1s ease;
}

/* Responsive mobile */
@media (max-width: 768px) {
  .faq__container {
    flex-direction: column;
    padding: 1rem;
    gap: 1.5rem;
  }

  .faq__wrapper {
    flex: unset;
    width: 100%;
    order: 1;
  }

  .faq__image {
    flex: unset;
    width: 100%;
    justify-content: center;
    order: 2;
  }

  .faq__image img {
    max-width: 100%;
    transform: none;
    border-radius: 10px;
  }

  /* FAQ Box & Item biar full width */
  .faq__box,
  .faq__item,
  .faq__answer {
    width: 100%;
  }
}

/* Bagian utama putih */
.contact {
  background: #fff; 
  position: relative;
  color: #333;
}

.contact__header {
  background: url("assets/bg-contact-us.png") no-repeat center center;
  background-size: cover;          
  background-position: center;

  position: relative;
  text-align: center;
  padding: 120px 25px;
  color: #fff;

  width: 100%;
  min-height: 400px;
  margin: 0;
  overflow: hidden;
}


.contact__header h2,
.contact__header p {
  position: relative;
  z-index: 1;
}

.contact__header h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 280;
  margin-bottom: 10px;
}

.contact__header p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.5;
}

/* Konten putih (info & form) */
.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #f5f5f5;
  color: #333;
  border-radius: 10px;
  margin: -40px auto 40px;
  padding: 40px;
  max-width: 1100px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact__info h3,
.contact__form h3 {
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 280;
  color: #1B447F;
}

.contact__info p {
  margin-bottom: 20px;
  color: #555;
}

.info__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  color: #1B447F;
}

.info__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.info__item span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 280;
  margin-right: 15px;
  color: #1B447F;
}

.contact__form form {
  display: flex;
  flex-direction: column;
}

.contact__form label {
  margin: 10px 0 5px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 280;
  color: #1B447F;
}

.contact__form input,
.contact__form textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  outline: none;
  margin-bottom: 10px;
  font-size: 14px;
}

.contact__form button {
  background: #1B447F;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact__form button:hover {
  background: #39A0D9;
}

/* Responsive */
@media (max-width: 768px) {
  .contact__container {
    grid-template-columns: 1fr;
  }
}

/* Footer Utama */
.footer {
  background: #1B447F;
  color: #fff;
  padding: 50px 80px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

/* Garis di bawah judul Useful Links */
.footer > div:nth-child(2) h3 {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.footer > div:nth-child(2) h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 3px;
  background-color: #fff;
}

/* Garis di bawah judul Our Service */
.footer > div:nth-child(3) h3 {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.footer > div:nth-child(3) h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 3px;
  background-color: #fff;
}

/* Styling teks */
.footer h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 280;
  margin-bottom: 15px;
}

.footer p {
  line-height: 1.6;
  font-size: 14px;
  margin: 0 0 10px 0;
}

.footer a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  transition: 0.3s;
}

.footer a:hover {
  text-decoration: underline;
}

/* Logo */
.footer .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer .logo img {
  width: 380px;
  height: 80px;
}

.footer .office p strong {
  display: inline-block;
  width: 80px;
}

/* Copyright */
.footer-bottom {
  background: #f5f5f5;
  color: #000;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

/* Footer Mobile */
@media (max-width: 768px) {
  .footer {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 30px 20px;
  }

  .footer > div {
    margin-bottom: 15px;
  }

  /* Logo lebih kecil di mobile */
  .footer .logo img {
    width: 100%;
    max-width: 200px;
    height: auto;
  }
}
