@import url("https://fonts.googleapis.com/css2?family=Kufam:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kufam:ital,wght@0,400..900;1,400..900&family=Murecho:wght@100..900&display=swap");

/* ====================
  Reset Default CSS Start
  ==================== */

:root {
  --primary-font: "Kufam", sans-serif;
  --secondary-font: "Murecho", sans-serif;
  --primary-color: rgba(250, 180, 29, 0.3);
  --secondary-color: #f7b935;
  --btn-hover: #ffcd29;
  --bg-1: #ffffff;
  --bg-2: #000000;
  --text-color-1: #000000;
  --text-color-2: #7d7d7d;
  --text-color-3: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

a {
  text-decoration: none !important;
}

ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

button {
  border: none;
  outline: none;
  font-family: var(--secondary-font);
}

input {
  outline: none;
}

/* Width of the scrollbar */
::-webkit-scrollbar {
  width: 14px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--btn-hover);
}

/*====================
Reset Default CSS End
====================*/

/* Hero Start */
.room-suites-hero {
  width: 100%;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.21) 0%,
      rgba(0, 0, 0, 0.7) 74%
    ),
    url(../img/contact-page/contact-hero-bg.webp) lightgray 50% / cover
      no-repeat;
}

#breadcrumbs {
  text-align: center;
  width: 100%;
  object-fit: cover;
}

#breadcrumbs h2 {
  font-size: 46px;
  color: var(--text-color-3);
  font-family: var(--primary-font);
  font-weight: bold;
  margin-bottom: 24px;
}

#breadcrumbs a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color-3);
  font-family: var(--secondary-font);
}

#breadcrumbs .breadcrumb_last {
  font-size: 16px;
  color: var(--secondary-color);
  font-weight: 600;
  font-family: var(--secondary-color);
}

@media screen and (max-width: 768px) {
  #breadcrumbs h1 {
    font-size: 32px;
  }
  #breadcrumbs {
    margin-top: 20px;
  }

  .room-suites-hero {
    height: 300px;
  }

  #breadcrumbs h2 {
    font-size: 26px;
    margin-bottom: 16px;
  }
}

/* Hero End */

/* Contact Us page Start */

.contact-section {
  padding: 80px 0px 0px 0px;
  background: var(--bg-1);
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-family: var(--primary-font);
  font-weight: bold;
  color: var(--text-color-1);
  margin-bottom: 40px;
}

.contact-cards {
  width: 100%;
  padding: 0;
  margin-bottom: 50px;
}

.contact-cards {
  width: 100%;
}

.contact-section .card {
  background-color: var(--bg-1);
  border-radius: 24px;
  border: 1px solid var(--text-color-2);
  text-align: center;
  box-shadow: none;
  padding: 40px 20px;
  width: 100%;
}

.contact-section .card h3 {
  text-align: center;
  font-size: 32px;
  font-family: var(--primary-font);
  font-weight: bold;
  color: var(--text-color-1);
  margin: 20px 0;
}

.contact-section .card p {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--text-color-2);
}

.contact-section .card a {
  font-size: 16px;
  font-family: var(--primary-font);
  color: var(--text-color-1);
  font-weight: 500;
  text-decoration: underline !important;
  transition: 0.3s;
}

.contact-section .card a:hover {
  text-decoration: none !important;
  color: var(--secondary-color);
}

.contact-section .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-section .icon .icon-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 10px;
}

.contact-section .icon img {
  width: 100%;
}

.contact-section .contact-faq-section {
  display: flex;
  justify-content: space-between;
}

.contact-section .contact-form {
  width: 45%;
  background-color: transparent;
  padding: 20px;
  border-radius: 10px;
}

.contact-form .heading {
  text-align: center;
}

.contact-form .heading p {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--text-color-2);
  margin-bottom: 40px;
}

.emailjs_response {
  font-size: 16px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--text-color-2);
  margin-top: 10px;
}

.contact-form h3 {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: bold;
  font-family: var(--primary-font);
  color: var(--text-color-1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--text-color-2);
  background: transparent;
  border-radius: 12px;
  font-size: 16px;
  outline: none;
  font-family: var(--secondary-font);
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: var(--bg-1) !important;
}

.contact-form button {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--secondary-font);
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 30px;
  font-size: 16px;
  color: var(--text-color-1);
  transition: 0.4s;
}

.contact-form button:hover {
  background-color: transparent;
}

.faq-wrapper {
  background: linear-gradient(270deg, #fff2d4 0%, #fcfcfc 100%);
  padding: 80px 0;
}

.faq {
  width: 45%;
  background-color: transparent;
  padding: 20px;
  border-radius: 10px;
}

.faq h3 {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 32px;
  text-align: center;
  font-weight: bold;
  font-family: var(--primary-font);
  color: var(--text-color-1);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 15px;
  font-size: 18px;
  font-family: var(--primary-font);
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  display: flex;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  font-size: 16px;
  color: var(--text-color-2);
  font-weight: 500;
  line-height: 1.6;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-question {
  padding: 15px 15px 10px 15px !important;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0px 15px 15px 15px !important;
}

.faq-answer p {
  font-size: 16px !important;
  font-family: var(--secondary-font);
  color: var(--text-color-2) !important;
  font-weight: 500 !important;
}

.faq-item.active .faq-answer p {
  font-size: 16px;
  color: var(--text-color-2);
  font-family: var(--secondary-font);
  font-weight: 500;
  margin-bottom: 30px;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

@media screen and (max-width: 992px) {
  .contact-section .contact-faq-section {
    width: 100%;
    display: block;
  }

  .faq {
    width: 100%;
    margin-top: 50px;
    padding: 0px;
  }

  .contact-section .contact-form {
    width: 100%;
    padding: 0px;
  }
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contact-section .card h3 {
    font-size: 28px;
  }

  .contact-section .card a {
    font-size: 20px;
  }

  .contact-form h3 {
    font-size: 28px;
  }

  .faq h3 {
    font-size: 28px;
  }

  .contact-form button {
    font-size: 15px;
  }
}

/* Contact Us page End */
