@import url("reset.css");

@import url("https://fonts.googleapis.com/css?family=Inter:regular,500,600,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap");

/* ************COMMON************ */

.logo {
  font-weight: 700;
  font-size: 1.75rem;
  white-space: nowrap;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #303a4d;
}

[class*="__container"] {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #fff;
  background-color: #303a4d;
}

.title {
  font-size: 3.5rem;
  font-weight: 600;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

/* ************HEADER************ */

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.75rem;
  flex-wrap: wrap;
  max-width: 74.624rem;
}

.header__logo {
  position: relative;
  z-index: 2;
}

.header__navigation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.menu__body {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu__link {
  font-weight: 600;
  position: relative;
  color: #ffffff;
  
}

.actions-header {
  display: flex;
  align-items: center;
  gap: 0.624rem;
}

.icon-menu {
  display: none;
}

.actions-header__button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 30px;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.actions-header__button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* ****************PAGES**************** */
.page__main {
  padding-bottom: 160px;
}

/* *****************HOME**************** */

.main {
  background: url("../img/home/Khotbah Kristen.webp") center / cover no-repeat;
  min-height: 120vh;
  position: relative;
}

.main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.main__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 11rem;
  padding-bottom: 4rem;
}

.main__caption {
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-size: 1.25rem;
  color: #ffffff;
}

.main__title {
  position: relative;
  z-index: 2;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  line-height: 1.2;
  max-width: 45rem;
  color: #ffffff;
}

.main__text {
  position: relative;
  z-index: 2;
  margin-bottom: 3.5rem;
  max-width: 40rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-size: 1.2rem;
  color: #f0f0f0;
}

.main__button {
  position: relative;
  z-index: 2;
  font-weight: 600;
  display: inline-block;
  padding: 1.25rem 3rem;
  background-color: #4a90e2;
  color: white;
  border-radius: 30px;
  transition: all 0.3s;
  line-height: 1.4;
}

.main__button:hover {
  background-color: #357abd;
  transform: translateY(-2px);
}

.outro_home {
  background: url("../img/home/hero_placeholder.jpg") center / cover no-repeat;
}

/* ************ABOUT**************** */

.main_about {
  background: url("../img/home/Khotbah Kristen.webp") center / cover no-repeat;
  position: relative;
  min-height: 100vh;
}

.main_about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.main_about .main__container {
  position: relative;
  z-index: 2;
}

.main_about .main__title,
.main_about .main__text {
  color: #ffffff;
  text-shadow: none;
}

.main_about .menu__link,
.main_about .logo,
.main_about .actions-header__button {
  text-shadow: none;
}

.about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.about__image {
  position: relative;
  max-width: 552px;
  height: 614px;
}

.about__image img {
  border-radius: 16px;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__title {
  margin-bottom: 1.5rem;
}

.about__text {
  max-width: 30rem;
  letter-spacing: 0.02em;
  line-height: 150%;
  margin-bottom: 3.5rem;
}

.about__text p:not(:last-child) {
  margin-bottom: 2.5rem;
}

.outro_about {
  background: url("../img/about/hero_placeholder.jpg") center / cover no-repeat;
}

/* **************SERVICES**************** */

.main_services {
  background: url("../img/home/Khotbah Kristen.webp") center / cover no-repeat;
}

.services {
  background-color: #e1e4eb;
}

.services__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.services__title {
  text-align: center;
  margin-bottom: 5rem;
}

.services__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.item-services {
  display: flex;
  flex-direction: column;
  align-items: start;
  min-height: 100%;
}

.item-services__button {
  background-color: inherit;
  border: 2px solid #303a4d;
  color: #303a4d;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.item-services__button:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #303a4d;
  transition: all 0.3s ease;
  z-index: -1;
}

.item-services__button:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(48, 58, 77, 0.3);
}

.item-services__button:hover:before {
  left: 0;
}

.item-services__button:active {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(48, 58, 77, 0.2);
}

.item-services__top {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

.item-services__top:hover {
  transform: translateY(-5px);
}

.item-services__image {
  margin-bottom: 2rem;
  max-width: 360px;
  height: 421px;
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.item-services__image img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.item-services__top:hover .item-services__image img {
  transform: scale(1.05);
}

.item-services__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.item-services__text {
  max-width: 21.5rem;
  line-height: 150%;
  margin-bottom: 2rem;
  flex-grow: 1;
  letter-spacing: 0.02em;
}

.item-services__button {
  background-color: inherit;
  border: 2px solid #303a4d;
  color: #303a4d;
}

.outro_services {
  background: url("../img/services/hero_placeholder.jpg") center / cover no-repeat;
}

/* ************TESTIMONIAL**************** */

.testimonial__container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.testiomonial__caption {
  margin-bottom: 4rem;
  font-weight: 600;
  text-transform: uppercase;
}

.testimonial__title {
  margin-bottom: 4rem;
  font-size: 2rem;
  max-width: 40.75rem;
  line-height: 136%;
  font-weight: 500;
}

.item-testimonial__image {
  max-width: 64px;
  margin: 0 auto;
  margin-bottom: 1.063rem;
  height: 64px;
}

.item-testimonial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.item-testimonial__title {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.item-testimonial__caption {
  font-size: 0.938rem;
}

/* ****************OUTRO**************** */

.outro__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.outro__title {
  margin-bottom: 1.25rem;
}

.outro__text {
  max-width: 33.625rem;
  line-height: 150%;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.outro__button {
  padding: 1.25rem 3rem;
}

/* ****************FOOTER**************** */

.footer {
  line-height: 150%;
}

.footer__container {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
  max-width: 74.624rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer__policy {
  font-weight: 600;
  letter-spacing: 0.02em;
  justify-self: start;
}

.footer__logo {
  justify-self: center;
}

.footer__copyright {
  font-weight: 600;
  letter-spacing: 0.02em;
  justify-self: end;
}

/* ****************ABOUT PAGE**************** */
.main__text_pages {
  max-width: 37.5rem;
}

.main__container_pages {
  padding-top: 300px;
}

.main_pages {
  min-height: 676px !important;
}

/* ****************SERVICES PAGE**************** */
.services-page__container {
  padding-top: 160px;
}

.services-page__item {
  margin-bottom: 132px;
}

.services-page__item:not(:last-child) {
  padding-bottom: 132px;
  margin-bottom: 132px;
  border-bottom: 1px solid rgba(48, 58, 77, 0.4);
}

.services-page__column {
  display: flex;
  align-items: center;
  gap: 97px;
}

.services-page__title {
  margin-bottom: 24px;
}

.services-page__text {
  margin-bottom: 56px;
  max-width: 480px;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.services-page__text p:not(:last-child) {
  margin-bottom: 20px;
}

.services-page__img {
  max-width: 552px;
  height: 614px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.services-page__img:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.services-page__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.services-page__img:hover img {
  transform: scale(1.05);
}

.services-page__button {
  background-color: inherit;
  border: 2px solid #303a4d;
  color: #303a4d;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.services-page__button:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #303a4d;
  transition: all 0.3s ease;
  z-index: -1;
}

.services-page__button:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(48, 58, 77, 0.3);
}

.services-page__button:hover:before {
  left: 0;
}

.services-page__button:active {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(48, 58, 77, 0.2);
}

.services-page__title a {
  transition: color 0.3s ease;
}

.services-page__title a:hover {
  color: #4a90e2;
}

/* Styling khusus untuk menu di halaman Renungan */
.services-page .header .menu__link,
.services-page .header .logo,
.services-page .header .actions-header__button {
  color: #303a4d;
  text-shadow: none;
}

.services-page .header .actions-header__button {
  border-color: #303a4d;
}

.services-page .header .icon-menu span,
.services-page .header .icon-menu::before,
.services-page .header .icon-menu::after {
  background-color: #303a4d;
}

.services-page .header .actions-header__button:hover {
  background-color: #303a4d;
  color: #ffffff;
}

/* Styling untuk submenu di halaman Renungan */
.services-page .menu__submenu {
  background: rgba(255, 255, 255, 0.95);
}

.services-page .menu__submenu-link {
  color: #303a4d;
}

.services-page .menu__item-dropdown:hover > .menu__link {
  color: #303a4d;
}

/* ****************CONTACT PAGE****************/

.main_contact {
  background: url("../img/home/Khotbah Kristen.webp") center / cover no-repeat;
  position: relative;
  min-height: 100vh;
}

.main_contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.contact__container {
  position: relative;
  z-index: 2;
  padding-top: 11rem;
  padding-bottom: 4rem;
}

.main_contact .main__title {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.main_contact .main__text {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.connect-contact__label {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.contact__text {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.connect-contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e1e4eb;
}

.connect-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.connect-contant__type {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 110%;
  text-transform: uppercase;
}

.connect-contact__label {
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.contact__links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact__text {
  max-width: 545px;
  font-size: 18px;
  line-height: 150%;
}

.contact__text p:not(:last-child) {
  margin-bottom: 15px;
}

iframe {
  width: 100vw;
  height: 482px;
  filter: grayscale(100%);
}

/* **************REVIEWS PAGE**************** */
.reviews__container {
  padding-top: 160px;
  padding-bottom: 160px;
}

.reviews__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
}

.reviews__column {
  border: 1px solid #e1e4eb;
  border-radius: 8px;
}

.reviews__item {
  padding-top: 48px;
  padding-bottom: 56px;
  padding-right: 32px;
  padding-left: 32px;
}

.item-reviews {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-reviews__img {
  max-width: 46px;
  height: 36px;
  margin: 0 auto;
  margin-bottom: 46px;
}

.item-reviews__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-reviews__text {
  margin-bottom: 40px;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 150%;
}

.item-reviews__author {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.item-reviews__geo {
  font-size: 14px;
  letter-spacing: 0.002em;
}

/* ******************PRICING PAGE******************** */
.pricing__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing__caption {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 4%;
}

.pricing__title {
  font-weight: 600;
  font-size: 72px;
  margin-bottom: 24px;
}

.pricing__text {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 88px;
}

.pricing__row {
  display: flex;
  align-items: start;
  gap: 24px;
}

.pricing__column {
  border: 2px solid #e1e4eb;
  border-radius: 8px;
}

.pricing__item {
  padding: 40px;
  padding-bottom: 48px;
}

.item-pricing__info {
  padding-bottom: 32px;
  border-bottom: 1px solid #e1e4eb;
  margin-bottom: 32px;
}

.item-pricing__label {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1%;
  margin-bottom: 16px;
}

.item-pricing__cost {
  font-size: 72px;
  font-weight: 600;
  margin-bottom: 16px;
}

.item-pricing__list {
  margin-bottom: 64px;
}

.item-pricing__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-pricing__item::before {
  content: "";
  background: url("../img/pricing/check.svg") 0 0 no-repeat;
  width: 16px;
  height: 18px;
}

.item-pricing__item:not(:last-child) {
  margin-bottom: 12px;
}

.item-pricing__button {
  display: inline-block;
  font-size: 22px;
  letter-spacing: 2%;
  font-weight: 600;
  color: #fff;
  padding: 20px 82px;
  background-color: #303a4d;
  border-radius: 64px;
}

.team {
  background-color: #e1e4eb;
}

.team__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.team__title {
  text-align: center;
  margin-bottom: 96px;
  max-width: 483px;
}

.team__row {
  display: grid;
  column-gap: 24px;
  row-gap: 96px;
  grid-template-columns: repeat(3, 1fr);
}

.team__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-team__img {
  max-width: 360px;
  height: 363px;
  margin-bottom: 40px;
}

.item-team__img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.item-team__name {
  max-width: 186px;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  margin-bottom: 12px;
}

.item-team__role {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 26px;
  letter-spacing: 2%;
}

.item-team__role span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-team__role span::after {
  content: "";
  background: url("../img/team/icons/star.svg") 0 0 no-repeat;
  width: 12px;
  height: 12px;
}

.item-team__text {
  font-size: 16px;
  text-align: center;
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 328px;
  margin-bottom: 20px;
}

.item-team__icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* *************FAQ PAGE************** */
.faqs__container {
  padding-top: 140px;
  padding-bottom: 140px;
}

.faqs__title {
  text-align: center;
  margin-bottom: 80px;
}

.spollers-faq__item {
  width: 100%;
}

.spollers-faq__item:not(:last-child) {
  margin-bottom: 24px;
}

.spollers-faq__button {
  display: inline-block;
  border: 2px solid #e1e4eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 8px;
}

.spollers-faq__button span {
  padding-left: 40px;
  padding-top: 32px;
  padding-bottom: 32px;
  font-weight: 600;
}

.spollers-faq__button img {
  padding-right: 34.5px;
}

.spollers-faq__text {
  max-height: 0;
  overflow: hidden;
  width: 100%;
  display: block;
}

.spollers-faq__item.active .spollers-faq__text {
  max-height: 1000px;
  max-height: calc(1000px + 16px);
}

.spollers-faq__item.active .spollers-faq__button {
  border-bottom: none;
  border-radius: 8px 8px 0px 0px;
}

.spollers-faq__item.active .spollers-faq__button span {
  padding-bottom: 32px;
}

.spollers-faq__item.active .spollers-faq__button img {
  transform: translate(-34px, 0px) rotate(180deg);
}

.spollers-faq__inner {
  padding-top: 20px;
  padding-left: 40px;
  border: 2px solid #e1e4eb;
  border-radius: 0px 0px 8px 8px;
  line-height: 150%;
  padding-bottom: 20px;
  border-top: none;
  padding-right: 100px;
}

/* ****************TEAM PAGE**************** */
.director__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  align-items: center;
  gap: 96px;
}

.director__title {
  margin-bottom: 16px;
}

.director__role {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 40px;
}

.director__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 480px;
}

.director__text p:not(:last-child) {
  margin-bottom: 20px;
}

.director__img {
  max-width: 552px;
  height: 614px;
}

.director__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ****************GALLERY**************** */
.gallery__container {
  padding-bottom: 140px;
  padding-top: 140px;
}

.gallery__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  margin-bottom: 96px;
  justify-items: center;
}

.gallery__item {
  max-width: 360px;
  height: 407px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.gallery__paggination {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 42px;
}

.gallery__paggination button:first-child {
  transform: translate(0px, 5px);
}

.gallery__paggination button:last-child {
  transform: rotate(-180deg) translate(0px, 5px);
}

.gallery_active {
  color: #fff;
  padding: 10px 15px;
  background-color: #303a4d;
  border-radius: 100px;
  display: inline-block;
}

/* ****************RESOURCES**************** */
.resources__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  justify-items: center;
}

.resources__img {
  max-width: 360px;
  height: 330px;
  margin-bottom: 32px;
}

.resources__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.resources__title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 12px;
}

.resources__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 243px;
  margin-bottom: 32px;
}

.resources__button {
  background-color: #fff;
  color: #303a4d;
  font-weight: 600;
  letter-spacing: 2%;
  border: 2px solid #303a4d;
  border-radius: 64px;
}

/* ****************ADAPTIVE**************** */

@media (max-width: 992px) {
  .services__row {
    grid-template-columns: 1fr;
    gap: 6rem;
    justify-items: center;
  }

  .item-services {
    text-align: center;
    align-items: center;
  }

  .page__main {
    padding-bottom: 80px;
  }
}

@media (min-width: 47.999rem) {
  .menu__list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 995px) {
  .item-pricing__button {
    font-size: 19px;
  }
}

@media (max-width: 62.6875rem) {
  .resources__container {
    padding-top: 70px;
    padding-bottom: 70px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__paggination {
    gap: 27px;
  }

  .gallery__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .team__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .director__container {
    flex-direction: column;
    padding-top: 70px;
    padding-bottom: 70px;
    gap: 10px;
    text-align: center;
  }

  .item-pricing {
    padding: 20px;
    padding-bottom: 30px;
  }

  .pricing__title {
    font-size: 39px;
  }

  .pricing__text {
    margin-bottom: 25px;
  }

  .item-pricing__button {
    padding: 16px 42px;
  }

  .footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }

  .footer__policy,
  .footer__copyright {
    justify-self: center;
    text-align: center;
    margin: 0.5rem 0;
  }

  .footer__logo {
    margin-bottom: 1rem;
  }

  .services-page__column {
    gap: 30px;
    font-size: 15px;
  }

  .services-page__title {
    font-size: 29px;
  }

  .reviews__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    column-gap: 10px;
  }

  .reviews__item {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
    display: inline-block;
  }

  .item-reviews__text {
    font-size: 16px;
  }

  .item-reviews__author {
    font-size: 16px;
  }
}

@media (max-width: 61.936rem) {
  .footer__container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    row-gap: 0.938rem;
  }

  .logo {
    font-size: 2rem;
  }
}

@media (max-width: 530px) {
  .reviews__row {
    grid-template-columns: 1fr;
  }

  .team__row {
    grid-template-columns: 1fr;
  }

  .gallery__row {
    grid-template-columns: 1fr;
  }

  .resources__container {
    grid-template-columns: 1fr;
  }
}

/* Styling untuk menu Renungan dan submenu */
.menu__item-dropdown {
  position: relative;
}

.menu__submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  min-width: 200px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  border-radius: 8px;
  padding: 8px 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.menu__item-dropdown.active .menu__submenu {
  display: block;
}

.menu__submenu-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin: 0;
  text-align: center;
}

.menu__submenu-link {
  color: #303a4d;
  font-size: 1.1rem;
  padding: 12px 25px;
  display: block;
  width: 100%;
  transition: all 0.3s ease;
  text-align: center;
}

.menu__item-dropdown:hover > .menu__link,
.menu__item-dropdown.active > .menu__link {
  color: #4a90e2;
}

.menu__submenu-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
  border-left: 4px solid #4a90e2;
}

.menu__submenu-link:hover {
  color: #4a90e2;
  padding-left: 5px;
}

/* Menambahkan ikon panah untuk dropdown */
.menu__item-dropdown > .menu__link {
  display: flex;
  align-items: center;
  gap: 4px;
}

.menu__item-dropdown > .menu__link::after {
  content: "▾";
  display: inline-block;
  font-size: 0.8em;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

/* Rotasi panah saat hover/active */
.menu__item-dropdown:hover > .menu__link::after,
.menu__item-dropdown.active > .menu__link::after {
  transform: rotate(180deg);
}

/* Mobile adjustments */
@media (max-width: 47.999rem) {
  .spollers-faq__item.active .spollers-faq__button img {
    transform: translate(-10px, -10px) rotate(180deg);
  }

  .spollers-faq__button span {
    padding-top: 15px;
    padding-left: 10px;
    padding-bottom: 15px;
    font-weight: 600;
    font-size: 14px;
  }

  .spollers-faq__button img {
    padding-right: 10px;
  }

  .spollers-faq__inner {
    font-size: 16px;
    padding-left: 10px;
    line-height: 130%;
  }

  .pricing__container {
    text-align: center;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .pricing__row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .item-pricing__button {
    font-size: 17px;
    padding: 15px 32px;
  }

  .reviews__container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .icon-menu {
    display: block;
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1.875rem;
    flex: 0 0 1.875rem;
    width: 2.2rem;
    height: 1.4rem;
    cursor: pointer;
    z-index: 5;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .icon-menu span {
    top: calc(50% - 1.5px);
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 1.5px);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 1.5px);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  /* Mengubah warna tanda X saat di halaman tertentu */
  .services-page .menu-open .icon-menu::before,
  .services-page .menu-open .icon-menu::after {
    background-color: #303a4d;
  }

  .contact__container {
    flex-direction: column;
    padding-top: 80px;
    gap: 50px;
    padding-bottom: 80px;
  }

  .menu__body {
    background-color: rgba(255, 255, 255, 0.98);
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 9.375rem 0.938rem 1.875rem 0.938rem;
    overflow: auto;
    flex-direction: column;
    row-gap: 5rem;
    transition: left 0.3s ease;
    z-index: 999;
    font-family: 'Poppins', sans-serif;
  }

  .menu__body::before {
    content: "";
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    min-height: 5.75rem;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: left 0.3s ease;
  }

  .menu-open .menu__body {
    left: 0;
  }

  .menu-open .menu__body::before {
    left: 0;
  }

  .menu__item {
    text-align: center;
  }

  .menu__item:not(:last-child) {
    margin-bottom: 2.5rem;
  }

  .menu__link {
    color: #303a4d;
    text-shadow: none;
    font-size: 1.7rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
  }

  .menu__link:active {
    color: #4a90e2;
  }

  .actions-header__button {
    color: #303a4d;
    border-color: #303a4d;
    text-shadow: none;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    margin-top: 1.5rem;
  }

  /* Submenu styles for mobile - perbaikan untuk posisi tengah */
  .menu__submenu {
    position: static;
    display: none;
    box-shadow: none;
    padding: 0;
    margin: 1rem auto;
    background: #f5f7fa;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(74, 144, 226, 0.3);
    width: 100%;
    overflow: hidden;
    text-align: center;
  }
  
  .menu__submenu-link {
    color: #303a4d;
    font-size: 1.1rem;
    padding: 12px 0;
    display: inline-block;
    width: auto;
    min-width: 80%;
    transition: all 0.3s ease;
    text-align: center;
  }
  
  .menu__submenu-item {
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin: 0;
    text-align: center;
  }

  .main__container {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }

  .main__container_pages {
    padding-top: 290px;
  }

  .main__title {
    font-size: 2.5rem;
    max-width: 100%;
  }

  .main__text {
    font-size: 1.1rem;
  }

  .title {
    font-size: 2rem;
  }

  .about__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .about__container {
    flex-direction: column;
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
    gap: 4rem;
  }

  .services__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  .testimonial__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .testiomonial__caption {
    margin-bottom: 2rem;
  }

  .outro__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  .logo {
    font-size: 1.25rem;
  }

  .services-page__column {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    gap: 4rem;
  }

  /* Dropdown arrow styling */
  .menu__item-dropdown > .menu__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
    text-align: center;
  }

  .menu__item-dropdown > .menu__link::after {
    content: "▾";
    display: inline-block;
    font-size: 1rem;
    margin-left: 10px;
    transition: transform 0.3s ease;
    position: relative;
    right: auto;
  }

  .menu__item-dropdown.active > .menu__link::after {
    transform: rotate(180deg);
    color: #4a90e2;
  }
}

/* ************ARTIKEL TERBARU************ */
.recent-articles__container {
  padding: 80px 15px;
  background-color: #ffffff;
}

.section__header {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

.recent-articles__grid {
  max-width: 1200px;
  margin: 0 auto;
}

.recent-articles__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.recent-article__card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e1e4eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 500px;
}

.recent-article__card:hover {
  transform: translateY(-8px);
  border-color: #d0d4db;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
}

.recent-article__image-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
  transition: all 0.5s ease;
}

.recent-article__card:hover .recent-article__image-wrapper {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.recent-article__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.recent-article__card:hover .recent-article__image {
  transform: scale(1.1);
}

.recent-article__content {
  padding: 20px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  transition: all 0.3s ease;
  background-color: white;
}

.recent-article__card:hover .recent-article__content {
  background-color: transparent;
  padding-top: 30px;
  height: 100%;
  justify-content: flex-end;
}

.article-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  color: white;
  text-transform: uppercase;
  width: fit-content;
  align-self: flex-start;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.recent-article__card:hover .article-category {
  background-color: white !important;
  color: #303a4d;
  opacity: 0.95;
  transform: translateY(0);
}

.recent-article__content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.4;
  color: #303a4d;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 5.2em;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.recent-article__content p {
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  font-weight: 400;
  transition: all 0.3s ease;
}

.recent-article__card:hover .recent-article__content h3 {
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  -webkit-line-clamp: 2;
  max-height: 2.8em;
}

.recent-article__card:hover .recent-article__content p {
  color: rgba(255, 255, 255, 0.9);
  -webkit-line-clamp: 2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Overlay gradient untuk keterbacaan teks saat hover */
.recent-article__card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.recent-article__card:hover::before {
  opacity: 1;
}

.recent-article__link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.recent-article__meta {
  color: #5A5A5A;
  font-size: 0.8rem;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
  font-style: italic;
  transition: all 0.3s ease;
}

.recent-article__card:hover .recent-article__meta {
  color: rgba(255, 255, 255, 0.9);
  border-top-color: rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Kategori spesifik */
.mtpj {
  background-color: #4a90e2;
}

.khotbah-mtpj {
  background-color: #50b674;
}

.khotbah-kristen {
  background-color: #e67e22;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .recent-articles__row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .recent-articles__container {
    padding: 60px 15px;
  }
  
  .recent-article__card {
    height: 480px;
  }
}

@media (max-width: 768px) {
  .section__header {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
  
  .recent-articles__container {
    padding: 40px 15px;
  }
  
  .recent-article__content h3 {
    font-size: 1.1rem;
    -webkit-line-clamp: 2;
    max-height: 3.1em;
  }
  
  .recent-article__content p {
    font-size: 0.85rem;
    -webkit-line-clamp: 3;
  }
  
  .recent-article__card {
    height: 460px;
  }
  
  /* Nonaktifkan efek hover di mobile */
  .recent-article__card:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-color: #e1e4eb;
  }
  
  .recent-article__image-wrapper {
    height: 260px;
  }
  
  .recent-article__card:hover .recent-article__image-wrapper {
    height: 260px;
    position: relative;
  }
  
  .recent-article__card:hover .recent-article__image {
    transform: none;
  }
  
  .recent-article__card:hover .recent-article__content {
    background-color: white;
    padding: 15px;
    height: auto;
    justify-content: flex-start;
  }
  
  .recent-article__card:hover .article-category {
    background-color: inherit !important;
    color: white;
    opacity: 1;
  }
  
  .recent-article__card:hover .recent-article__content h3 {
    color: #303a4d;
    text-shadow: none;
    max-height: 3.1em;
  }
  
  .recent-article__card:hover .recent-article__content p {
    color: #666;
    text-shadow: none;
    -webkit-line-clamp: 3;
  }
  
  .recent-article__card:hover .recent-article__meta {
    color: #5A5A5A;
    border-top-color: #f0f0f0;
    text-shadow: none;
  }
  
  .recent-article__card::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .recent-articles__row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .recent-articles__container {
    padding: 30px 15px;
  }
  
  .recent-article__image-wrapper {
    height: 280px;
  }
  
  .recent-article__content {
    padding: 15px;
  }
  
  .article-category {
    font-size: 0.75rem;
    padding: 3px 10px;
  }
  
  .recent-article__card {
    height: auto;
    max-height: 450px;
  }
}

/* Contact Popup Styles */
.contact-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  backdrop-filter: blur(5px);
}

.contact-popup-content {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  position: relative;
  width: 90%;
  max-width: 500px;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s ease-out;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-popup.closing {
  opacity: 0;
  visibility: hidden;
}

.contact-popup.closing .contact-popup-content {
  transform: translateY(60px);
  opacity: 0;
}

.close-popup {
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  font-size: 1.8rem;
  cursor: pointer;
  color: #666;
  transition: color 0.2s ease;
}

.close-popup:hover {
  color: #333;
}

.contact-popup h2 {
  margin-bottom: 1.5rem;
  color: #333;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #555;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.submit-button {
  background-color: #4a90e2;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  width: 100%;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-weight: 600;
}

.submit-button:hover {
  background-color: #357abd;
  transform: translateY(-2px);
}

.submit-button:active {
  transform: translateY(0);
}

.submit-button:disabled {
  background-color: #a5c6ee;
  cursor: not-allowed;
  transform: none;
}

/* Animasi popup ketika ditampilkan */
.contact-popup[style*="opacity: 1"] .contact-popup-content {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive Styles untuk popup */
@media (max-width: 576px) {
  .contact-popup-content {
    padding: 1.5rem;
    width: 95%;
  }
  
  .form-group label {
    font-size: 0.9rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.6rem;
    font-size: 0.95rem;
  }
  
  .submit-button {
    padding: 0.6rem 1.2rem;
  }
}

/* Tombol X untuk menutup menu mobile */
.menu__close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  color: #303a4d;
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-weight: 300;
  z-index: 1001;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: none;
}

.menu__close-button:hover {
  background-color: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg);
}

@media (max-width: 47.999rem) {
  .menu__close-button {
    display: block;
  }
  
  .menu-open .menu__close-button {
    display: block;
  }
}

/* Styling untuk tombol X di halaman Renungan */
.services-page .menu__close-button {
  color: #303a4d;
}
