/*=========================================================
    CONTACT PAGE
    HERO SECTION
=========================================================*/

/*=========================================
        HERO
=========================================*/

.contact-hero {
  position: relative;

  padding: 50px 0;

  background: linear-gradient(135deg, #ffffff 0%, #fcf8ef 45%, #f6edd8 100%);

  overflow: hidden;
}

/*=========================================
        BACKGROUND SHAPES
=========================================*/

.contact-hero::before {
  content: "";

  position: absolute;

  width: 650px;

  height: 650px;

  left: -250px;

  top: -220px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(184, 138, 27, 0.1), transparent 72%);
}

.contact-hero::after {
  content: "";

  position: absolute;

  width: 420px;

  height: 420px;

  right: -180px;

  bottom: -180px;

  border-radius: 50%;

  background: rgba(184, 138, 27, 0.06);
}

/*=========================================
        HERO CONTENT
=========================================*/

.contact-hero-content {
  position: relative;

  max-width: 860px;

  margin: auto;

  text-align: center;

  z-index: 2;

  opacity: 0;

  transform: translateY(40px);

  transition: 0.8s ease;
}

.contact-hero-content.show {
  opacity: 1;

  transform: translateY(0);
}

/*=========================================
        BREADCRUMB
=========================================*/

.breadcrumb {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 12px;

  flex-wrap: wrap;

  margin-bottom: 30px;

  font-size: 15px;
}

.breadcrumb a {
  text-decoration: none;

  color: #667085;

  transition: 0.3s;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  color: var(--primary);

  font-weight: 600;
}

/*=========================================
        TAG
=========================================*/

.contact-tag {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 12px 24px;

  margin-bottom: 30px;

  border-radius: 50px;

  background: rgba(184, 138, 27, 0.1);

  color: var(--primary);

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.contact-tag::before {
  content: "";

  width: 30px;

  height: 2px;

  background: var(--primary);
}

/*=========================================
        TITLE
=========================================*/

.contact-hero-content h1 {
  font-size: 60px;

  line-height: 1.15;

  color: var(--secondary);

  margin-bottom: 28px;
}

/*=========================================
        DESCRIPTION
=========================================*/

.contact-hero-content p {
  max-width: 720px;

  margin: 0 auto 40px;

  color: #667085;

  font-size: 18px;

  line-height: 1.9;
}

/*=========================================
        BUTTONS
=========================================*/

.hero-buttons {
  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;
}

.hero-buttons .btn {
  min-width: 210px;
}

/*=========================================================
    HERO IMAGE
=========================================================*/

.contact-hero-image {
  position: relative;

  padding: 0 0 90px;

  background: #ffffff;
}

.contact-hero-image img {
  width: 100%;

  display: block;

  border-radius: 30px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width: 1200px) {
  .contact-hero-content h1 {
    font-size: 52px;
  }
}

@media (max-width: 991px) {
  .contact-hero {
    padding: 150px 0 80px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 130px 0 70px;
  }

  .contact-hero-content h1 {
    font-size: 40px;
  }

  .contact-hero-content p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .contact-hero-image {
    padding-bottom: 70px;
  }
}

@media (max-width: 576px) {
  .contact-hero-content h1 {
    font-size: 32px;
  }

  .breadcrumb {
    font-size: 14px;
  }
}
/*=========================================================
    CONTACT PAGE
    CONTACT INFORMATION
=========================================================*/

/*=========================================
        SECTION
=========================================*/

.contact-info-section {
  position: relative;

  padding: 100px 0;

  background: var(--light);

  overflow: hidden;
}

.contact-info-section::before {
  content: "";

  position: absolute;

  width: 550px;

  height: 550px;

  left: -220px;

  top: -180px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 138, 27, 0.08),
    transparent 72%
  );
}

.contact-info-section::after {
  content: "";

  position: absolute;

  width: 420px;

  height: 420px;

  right: -180px;

  bottom: -180px;

  border-radius: 50%;

  background: rgba(184, 138, 27, 0.05);
}

/*=========================================
        SECTION HEADER
=========================================*/

.contact-info-section .section-header {
  position: relative;

  max-width: 760px;

  margin: 0 auto 70px;

  text-align: center;

  z-index: 2;
}

.contact-info-section .section-tag {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 12px 24px;

  margin-bottom: 20px;

  border-radius: 50px;

  background: rgba(184, 138, 27, 0.1);

  color: var(--primary);

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.contact-info-section .section-tag::before {
  content: "";

  width: 30px;

  height: 2px;

  background: var(--primary);
}

.contact-info-section h2 {
  font-size: 48px;

  color: var(--secondary);

  margin-bottom: 20px;
}

.contact-info-section p {
  color: #667085;

  line-height: 1.9;
}

/*=========================================
        GRID
=========================================*/

.contact-info-grid {
  position: relative;

  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  gap: 60px;

  z-index: 2;
}

/*=========================================================
    CONTACT DETAILS
=========================================================*/

.contact-details {
  display: grid;

  gap: 30px;
}

/*=========================================
        CARD
=========================================*/

.contact-card {
  display: flex;

  align-items: flex-start;

  gap: 25px;

  padding: 35px;

  background: #ffffff;

  border-radius: 25px;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);

  transition: 0.35s;
}

.contact-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.1);
}

/*=========================================
        ICON
=========================================*/

.contact-card-icon {
  width: 70px;

  height: 70px;

  display: flex;

  justify-content: center;

  align-items: center;

  flex-shrink: 0;

  border-radius: 18px;

  background: rgba(184, 138, 27, 0.12);
}

.contact-card-icon i {
  color: var(--primary);

  font-size: 28px;
}

/*=========================================
        CONTENT
=========================================*/

.contact-card-content span {
  display: block;

  margin-bottom: 8px;

  color: var(--primary);

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.contact-card-content h3 {
  font-size: 26px;

  color: var(--secondary);

  margin-bottom: 15px;
}

.contact-card-content p {
  margin-bottom: 20px;

  color: #667085;

  line-height: 1.8;
}

.contact-card-content a {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  text-decoration: none;

  color: var(--secondary);

  font-weight: 700;

  transition: 0.3s;
}

.contact-card-content a:hover {
  color: var(--primary);
}

.contact-card-content a:hover i {
  transform: translateX(5px);
}

/*=========================================================
    BUSINESS HOURS
=========================================================*/

.business-hours {
  padding: 35px;

  border-radius: 25px;

  background: var(--primary);

  color: #ffffff;
}

.business-hours h3 {
  font-size: 30px;

  margin-bottom: 30px;
}

.business-hours ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

.business-hours li {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 16px 0;

  border-bottom: var(--light) 1px solid;
}

.business-hours li:last-child {
  border-bottom: none;
}

.business-hours span {
  color: rgba(255, 255, 255, 0.8);
}

.business-hours strong {
  font-weight: 600;
}

/*=========================================================
    IMAGE AREA
=========================================================*/

.contact-image-wrapper {
  position: relative;
}

.contact-image {
  overflow: hidden;

  border-radius: 30px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.contact-image img {
  width: 100%;

  display: block;
}

/*=========================================
        FLOATING CARD
=========================================*/

.contact-floating-card {
  position: absolute;

  left: -35px;

  bottom: 120px;

  display: flex;

  gap: 18px;

  align-items: center;

  width: 320px;

  padding: 25px;

  background: #ffffff;

  border-radius: 22px;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.floating-icon {
  width: 60px;

  height: 60px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 16px;

  background: var(--primary);
}

.floating-icon i {
  color: #ffffff;

  font-size: 24px;
}

.contact-floating-card h4 {
  font-size: 22px;

  color: var(--secondary);

  margin-bottom: 8px;
}

.contact-floating-card p {
  font-size: 15px;

  color: #667085;

  line-height: 1.7;
}

/*=========================================
        SOCIAL BOX
=========================================*/

.contact-social-box {
  margin-top: 30px;

  padding: 30px;

  border-radius: 24px;

  background: #ffffff;

  text-align: center;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.contact-social-box h4 {
  font-size: 24px;

  color: var(--secondary);

  margin-bottom: 20px;
}

.social-icons {
  display: flex;

  justify-content: center;

  gap: 16px;
}

.social-icons a {
  width: 50px;

  height: 50px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 50%;

  text-decoration: none;

  background: rgba(184, 138, 27, 0.1);

  color: var(--primary);

  transition: 0.35s;
}

.social-icons a:hover {
  background: var(--primary);

  color: #ffffff;

  transform: translateY(-5px);
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width: 991px) {
  .contact-info-section {
    padding: 80px 0;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-floating-card {
    position: relative;

    left: 0;

    bottom: auto;

    margin: 30px auto 0;

    width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-info-section {
    padding: 70px 0;
  }

  .contact-card {
    flex-direction: column;
  }

  .contact-info-section h2 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .contact-card,
  .business-hours,
  .contact-social-box {
    padding: 25px;
  }

  .contact-info-section h2 {
    font-size: 30px;
  }
}
/*=========================================================
    CONTACT PAGE
    CONTACT FORM
=========================================================*/

/*=========================================
        SECTION
=========================================*/

.contact-form-section {
  position: relative;

  padding: 100px 0;

  background: #ffffff;

  overflow: hidden;
}

.contact-form-section::before {
  content: "";

  position: absolute;

  width: 600px;

  height: 600px;

  right: -250px;

  top: -220px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 138, 27, 0.08),
    transparent 72%
  );
}

.contact-form-section::after {
  content: "";

  position: absolute;

  width: 420px;

  height: 420px;

  left: -180px;

  bottom: -180px;

  border-radius: 50%;

  background: rgba(184, 138, 27, 0.05);
}

/*=========================================
        WRAPPER
=========================================*/

.contact-form-wrapper {
  position: relative;

  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 60px;

  align-items: center;

  z-index: 2;
}

/*=========================================================
    LEFT CONTENT
=========================================================*/

.form-content .section-tag {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 12px 24px;

  margin-bottom: 22px;

  border-radius: 50px;

  background: rgba(184, 138, 27, 0.1);

  color: var(--primary);

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.form-content .section-tag::before {
  content: "";

  width: 30px;

  height: 2px;

  background: var(--primary);
}

.form-content h2 {
  font-size: 48px;

  color: var(--secondary);

  line-height: 1.2;

  margin-bottom: 25px;
}

.form-content p {
  color: #667085;

  line-height: 1.9;

  margin-bottom: 35px;
}

/*=========================================
        FEATURES
=========================================*/

.form-features {
  list-style: none;

  padding: 0;

  margin: 0;
}

.form-features li {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 20px;

  color: var(--secondary);

  font-weight: 600;
}

.form-features li:last-child {
  margin-bottom: 0;
}

.form-features i {
  color: var(--primary);

  font-size: 20px;
}

/*=========================================================
    FORM BOX
=========================================================*/

.contact-form-box {
  background: #ffffff;

  padding: 45px;

  border-radius: 30px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/*=========================================
        GRID
=========================================*/

.form-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 25px;
}

/*=========================================
        GROUP
=========================================*/

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;

  margin-bottom: 10px;

  color: var(--secondary);

  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 16px 20px;

  border: 1px solid rgba(0, 0, 0, 0.1);

  border-radius: 14px;

  background: #ffffff;

  font-size: 15px;

  font-family: inherit;

  outline: none;

  transition: 0.3s;
}

.form-group textarea {
  resize: vertical;

  min-height: 160px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);

  box-shadow: 0 0 0 4px rgba(184, 138, 27, 0.08);
}

/*=========================================
        PLACEHOLDER
=========================================*/

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #98a2b3;
}

/*=========================================
        CHECKBOX
=========================================*/

.checkbox {
  display: flex;

  align-items: flex-start;

  gap: 12px;

  margin: 15px 0 30px;

  cursor: pointer;
}

.checkbox input {
  width: 18px;

  height: 18px;

  margin-top: 3px;

  accent-color: var(--primary);
}

.checkbox span {
  color: #667085;

  line-height: 1.8;

  font-size: 15px;
}

/*=========================================
        BUTTON
=========================================*/

.contact-form-box .btn {
  width: 100%;

  justify-content: center;
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width: 991px) {
  .contact-form-section {
    padding: 80px 0;
  }

  .contact-form-wrapper {
    grid-template-columns: 1fr;
  }

  .form-content {
    text-align: center;
  }

  .form-features {
    display: inline-block;

    text-align: left;
  }
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 70px 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-content h2 {
    font-size: 36px;
  }

  .contact-form-box {
    padding: 35px;
  }
}

@media (max-width: 576px) {
  .contact-form-box {
    padding: 25px;
  }

  .form-content h2 {
    font-size: 30px;
  }

  .checkbox {
    align-items: flex-start;
  }
}
/*=========================================================
    CONTACT PAGE
    CONTACT FORM
=========================================================*/

/*=========================================
        SECTION
=========================================*/

.contact-form-section {
  position: relative;

  padding: 100px 0;

  background: #ffffff;

  overflow: hidden;
}

.contact-form-section::before {
  content: "";

  position: absolute;

  width: 600px;

  height: 600px;

  right: -250px;

  top: -220px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 138, 27, 0.08),
    transparent 72%
  );
}

.contact-form-section::after {
  content: "";

  position: absolute;

  width: 420px;

  height: 420px;

  left: -180px;

  bottom: -180px;

  border-radius: 50%;

  background: rgba(184, 138, 27, 0.05);
}

/*=========================================
        WRAPPER
=========================================*/

.contact-form-wrapper {
  position: relative;

  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 60px;

  align-items: center;

  z-index: 2;
}

/*=========================================================
    LEFT CONTENT
=========================================================*/

.form-content .section-tag {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 12px 24px;

  margin-bottom: 22px;

  border-radius: 50px;

  background: rgba(184, 138, 27, 0.1);

  color: var(--primary);

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.form-content .section-tag::before {
  content: "";

  width: 30px;

  height: 2px;

  background: var(--primary);
}

.form-content h2 {
  font-size: 48px;

  color: var(--secondary);

  line-height: 1.2;

  margin-bottom: 25px;
}

.form-content p {
  color: #667085;

  line-height: 1.9;

  margin-bottom: 35px;
}

/*=========================================
        FEATURES
=========================================*/

.form-features {
  list-style: none;

  padding: 0;

  margin: 0;
}

.form-features li {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 20px;

  color: var(--secondary);

  font-weight: 600;
}

.form-features li:last-child {
  margin-bottom: 0;
}

.form-features i {
  color: var(--primary);

  font-size: 20px;
}

/*=========================================================
    FORM BOX
=========================================================*/

.contact-form-box {
  background: #ffffff;

  padding: 45px;

  border-radius: 30px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/*=========================================
        GRID
=========================================*/

.form-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 25px;
}

/*=========================================
        GROUP
=========================================*/

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;

  margin-bottom: 10px;

  color: var(--secondary);

  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 16px 20px;

  border: 1px solid rgba(0, 0, 0, 0.1);

  border-radius: 14px;

  background: #ffffff;

  font-size: 15px;

  font-family: inherit;

  outline: none;

  transition: 0.3s;
}

.form-group textarea {
  resize: vertical;

  min-height: 160px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);

  box-shadow: 0 0 0 4px rgba(184, 138, 27, 0.08);
}

/*=========================================
        PLACEHOLDER
=========================================*/

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #98a2b3;
}

/*=========================================
        CHECKBOX
=========================================*/

.checkbox {
  display: flex;

  align-items: flex-start;

  gap: 12px;

  margin: 15px 0 30px;

  cursor: pointer;
}

.checkbox input {
  width: 18px;

  height: 18px;

  margin-top: 3px;

  accent-color: var(--primary);
}

.checkbox span {
  color: #667085;

  line-height: 1.8;

  font-size: 15px;
}

/*=========================================
        BUTTON
=========================================*/

.contact-form-box .btn {
  width: 100%;

  justify-content: center;
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width: 991px) {
  .contact-form-section {
    padding: 80px 0;
  }

  .contact-form-wrapper {
    grid-template-columns: 1fr;
  }

  .form-content {
    text-align: center;
  }

  .form-features {
    display: inline-block;

    text-align: left;
  }
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 70px 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-content h2 {
    font-size: 36px;
  }

  .contact-form-box {
    padding: 35px;
  }
}

@media (max-width: 576px) {
  .contact-form-box {
    padding: 25px;
  }

  .form-content h2 {
    font-size: 30px;
  }

  .checkbox {
    align-items: flex-start;
  }
}
/*=========================================================
    CONTACT PAGE
    ANIMATIONS, UTILITIES & RESPONSIVE
=========================================================*/

/*=========================================
        SCROLL REVEAL
=========================================*/

.contact-hero-content,
.contact-card,
.business-hours,
.contact-image-wrapper,
.contact-form-wrapper,
.faq-item,
.cta-box {
  opacity: 0;

  transform: translateY(40px);

  transition: all 0.8s ease;
}

.contact-hero-content.show,
.contact-card.show,
.business-hours.show,
.contact-image-wrapper.show,
.contact-form-wrapper.show,
.faq-item.show,
.cta-box.show {
  opacity: 1;

  transform: translateY(0);
}

/*=========================================
        IMAGE HOVER
=========================================*/

.contact-image img,
.contact-hero-image img {
  transition: transform 0.5s ease;
}

.contact-image:hover img,
.contact-hero-image:hover img {
  transform: scale(1.05);
}

/*=========================================
        BUTTON HOVER
=========================================*/

.hero-buttons .btn,
.cta-buttons .btn {
  transition: 0.35s ease;
}

.hero-buttons .btn:hover,
.cta-buttons .btn:hover {
  transform: translateY(-4px);
}

/*=========================================
        INPUT STATES
=========================================*/

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(184, 138, 27, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  transform: translateY(-2px);
}

/*=========================================
        SECTION SPACING
=========================================*/

.contact-info-section,
.contact-form-section,
.contact-faq {
  scroll-margin-top: 120px;
}

/*=========================================
        SMOOTH SCROLL
=========================================*/

html {
  scroll-behavior: smooth;
}

/*=========================================
        TEXT SELECTION
=========================================*/

::selection {
  background: var(--primary);

  color: #ffffff;
}

/*=========================================
        ACCESSIBILITY
=========================================*/

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(184, 138, 27, 0.25);

  outline-offset: 3px;
}

/*=========================================================
    BACK TO TOP
=========================================================*/

.back-to-top {
  position: fixed;

  right: 30px;

  bottom: 30px;

  width: 58px;

  height: 58px;

  display: flex;

  justify-content: center;

  align-items: center;

  border: none;

  border-radius: 50%;

  background: var(--primary);

  color: #ffffff;

  cursor: pointer;

  font-size: 18px;

  opacity: 0;

  visibility: hidden;

  transform: translateY(20px);

  transition: 0.35s ease;

  z-index: 9999;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.back-to-top.show {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--secondary);

  transform: translateY(-5px);
}

/*=========================================================
    READING PROGRESS
=========================================================*/

.reading-progress {
  position: fixed;

  top: 0;

  left: 0;

  width: 0;

  height: 4px;

  background: linear-gradient(90deg, var(--primary), #d7a62c);

  z-index: 99999;

  transition: width 0.15s linear;
}

/*=========================================================
    LARGE DESKTOP
=========================================================*/

@media (min-width: 1400px) {
  .contact-info-grid {
    gap: 80px;
  }

  .contact-form-wrapper {
    gap: 80px;
  }
}

/*=========================================================
    TABLET
=========================================================*/

@media (max-width: 991px) {
  .contact-info-grid,
  .contact-form-wrapper {
    gap: 50px;
  }
}

/*=========================================================
    MOBILE
=========================================================*/

@media (max-width: 768px) {
  .back-to-top {
    right: 20px;

    bottom: 20px;

    width: 52px;

    height: 52px;

    font-size: 16px;
  }

  .reading-progress {
    height: 3px;
  }
}

/*=========================================================
    SMALL MOBILE
=========================================================*/

@media (max-width: 576px) {
  .back-to-top {
    right: 15px;

    bottom: 15px;

    width: 48px;

    height: 48px;
  }
}

/*=========================================================
    PRINT
=========================================================*/

@media print {
  .main-header,
  .footer,
  .about-cta,
  .back-to-top,
  .reading-progress,
  .top-announcement-bar,
  .contact-info-bar {
    display: none !important;
  }

  body {
    background: #ffffff;
  }
}
/*=========================================================
    SUPPORT FAQ
=========================================================*/

.support-faq {
  padding: 90px 0;
  background: #ffffff;
}

/*=========================================
        WRAPPER
=========================================*/

.faq-wrapper {
  max-width: 900px;
  margin: 50px auto 0;
}

/*=========================================
        ITEM
=========================================*/

.faq-item {
  margin-bottom: 18px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item.active {
  border-color: var(--primary-color);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

/*=========================================
        QUESTION
=========================================*/

.faq-question {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 24px 30px;

  border: none;
  background: transparent;

  cursor: pointer;

  text-align: left;
}

.faq-question span {
  color: var(--secondary);

  font-size: 20px;

  font-weight: 600;

  line-height: 1.5;
}

.faq-question i {
  flex-shrink: 0;

  color: var(--primary);

  font-size: 18px;

  transition: 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/*=========================================
        ANSWER
=========================================*/

.faq-answer {
  max-height: 0;

  overflow: hidden;

  transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 30px 25px;

  margin: 0;

  color: var(--text-color);

  line-height: 1.9;
}

/*=========================================
        HOVER
=========================================*/

.faq-item:hover {
  border-color: var(--primary-color);
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width: 991px) {
  .support-faq {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .support-faq {
    padding: 70px 0;
  }

  .faq-question {
    padding: 20px 24px;
  }

  .faq-question span {
    font-size: 18px;
  }

  .faq-answer p {
    padding: 0 24px 22px;
  }
}

@media (max-width: 576px) {
  .faq-question {
    padding: 18px 20px;
  }

  .faq-question span {
    font-size: 16px;
    line-height: 1.6;
  }

  .faq-answer p {
    padding: 0 20px 20px;
    font-size: 15px;
    line-height: 1.8;
  }
}
/*=========================================================
    CONTACT CTA
=========================================================*/

.contact-cta-section {
  padding: 90px 0;
  background: #ffffff;
}

.contact-cta-box {
  position: relative;
  width: 100%;
  min-height: 430px;

  display: flex;
  align-items: center;

  padding: 65px 70px;

  background: #f8f5ed;

  border-radius: 28px;

  overflow: hidden;
}

/*=========================================================
    CONTACT CTA CONTENT
=========================================================*/

.contact-cta-content {
  position: relative;
  z-index: 3;

  width: 58%;
  max-width: 760px;
}

.contact-cta-label {
  display: inline-block;
  margin-bottom: 10px;

  color: #b88a1b;

  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.contact-cta-content h2 {
  margin: 0 0 15px;

  color: #172238;

  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.12;
}

.contact-cta-content > p {
  max-width: 850px;

  margin: 0 0 25px;

  color: #526071;

  font-size: 17px;
  line-height: 1.75;
}

/*=========================================================
    CONTACT CTA LIST
=========================================================*/

.contact-cta-list {
  display: flex;
  flex-wrap: wrap;

  gap: 10px 25px;

  margin: 0 0 28px;
  padding: 0;

  list-style: none;
}

.contact-cta-list li {
  display: flex;
  align-items: center;

  gap: 8px;

  color: #465365;

  font-size: 16px;
  font-weight: 500;
}

.contact-cta-list li i {
  color: #b88a1b;
  font-size: 15px;
}

/*=========================================================
    CONTACT CTA BUTTON
=========================================================*/

.contact-cta-content .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  min-height: 58px;

  padding: 0 30px;

  border-radius: 50px;

  background: #bd8b18;

  color: #ffffff;

  font-size: 16px;
  font-weight: 700;

  text-decoration: none;

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-cta-content .btn:hover {
  background: #a97810;

  transform: translateY(-3px);

  box-shadow: 0 12px 25px rgba(189, 139, 24, 0.25);
}

.contact-cta-content .btn i {
  transition: transform 0.3s ease;
}

.contact-cta-content .btn:hover i {
  transform: translateX(5px);
}

/*=========================================================
    CONTACT CTA IMAGE
=========================================================*/

.contact-cta-image {
  position: absolute;

  top: 0;
  right: 0;

  width: 39%;
  height: 100%;

  z-index: 1;

  overflow: hidden;
}

.contact-cta-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;
}

/* Soft image fade */

.contact-cta-image::before {
  content: "";

  position: absolute;

  top: 0;
  left: -90px;

  width: 160px;
  height: 100%;

  z-index: 2;

  background: linear-gradient(
    to right,
    #f8f5ed 0%,
    rgba(248, 245, 237, 0.85) 30%,
    rgba(248, 245, 237, 0) 100%
  );
}

/*=========================================================
    DECORATIVE ELEMENT
=========================================================*/

.contact-cta-box::after {
  content: "";

  position: absolute;

  right: 30%;
  bottom: -150px;

  width: 320px;
  height: 320px;

  border: 1px solid rgba(189, 139, 24, 0.22);

  border-radius: 50%;

  z-index: 0;
}

/*=========================================================
    CONTACT CTA VISIBILITY
=========================================================*/

.contact-cta-content {
  position: relative;
  z-index: 3;

  width: 58%;
  max-width: 760px;

  opacity: 1;
  visibility: visible;
}

.contact-cta-image {
  position: absolute;

  top: 0;
  right: 0;

  width: 39%;
  height: 100%;

  z-index: 1;

  overflow: hidden;

  opacity: 1;
  visibility: visible;
}

/*=========================================================
    TABLET
=========================================================*/

@media (max-width: 991px) {
  .contact-cta-section {
    padding: 75px 0;
  }

  .contact-cta-box {
    min-height: 500px;
    padding: 55px 45px;
  }

  .contact-cta-content {
    width: 65%;
  }

  .contact-cta-image {
    width: 42%;
  }

  .contact-cta-content h2 {
    font-size: 38px;
  }
}

/*=========================================================
    MOBILE
=========================================================*/

@media (max-width: 767px) {
  .contact-cta-section {
    padding: 60px 0;
  }

  .contact-cta-box {
    display: block;

    min-height: auto;

    padding: 45px 30px;

    border-radius: 22px;
  }

  .contact-cta-content {
    width: 100%;
    max-width: 100%;
  }

  .contact-cta-content h2 {
    font-size: 34px;
  }

  .contact-cta-content > p {
    font-size: 15px;
    line-height: 1.7;
  }

  .contact-cta-list {
    display: block;
    margin-bottom: 25px;
  }

  .contact-cta-list li {
    margin-bottom: 9px;
  }

  .contact-cta-image {
    position: relative;

    top: auto;
    right: auto;

    width: 100%;
    height: 260px;

    margin-top: 35px;

    border-radius: 18px;
  }

  .contact-cta-image::before {
    display: none;
  }

  .contact-cta-box::after {
    display: none;
  }
}

/*=========================================================
    SMALL MOBILE
=========================================================*/

@media (max-width: 480px) {
  .contact-cta-box {
    padding: 35px 22px;
  }

  .contact-cta-content h2 {
    font-size: 29px;
  }

  .contact-cta-content .btn {
    width: 100%;
    min-height: 54px;
  }

  .contact-cta-image {
    height: 220px;
  }
}
/*=========================================================
    CONTACT PAGE
    FAQ SECTION
=========================================================*/

.contact-faq {
  padding: 100px 0 110px;
  background: #ffffff;
}

/*=========================================================
    CONTACT FAQ HEADER
=========================================================*/

.contact-faq .section-title {
  max-width: 1100px;
  margin: 0 auto 55px;
}

.contact-faq .section-tag {
  display: inline-block;
  margin-bottom: 10px;

  color: #b88a1b;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.contact-faq .section-title h2 {
  margin: 0;

  color: #182238;

  font-size: clamp(38px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.12;
}

.contact-faq .section-title p {
  max-width: 1100px;

  margin: 14px 0 0;

  color: #526071;

  font-size: 17px;
  line-height: 1.7;
}

/*=========================================================
    CONTACT FAQ WRAPPER
=========================================================*/

.contact-faq-wrapper {
  width: 100%;
  max-width: 1125px;

  margin: 0 auto;
}

/*=========================================================
    CONTACT FAQ ITEM
=========================================================*/

.contact-faq .faq-item {
  position: relative;

  margin-bottom: 20px;

  background: #ffffff;

  border: 1px solid #e4e6e9;

  border-radius: 18px;

  overflow: hidden;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-faq .faq-item:hover {
  border-color: rgba(189, 139, 24, 0.4);

  box-shadow: 0 10px 30px rgba(20, 35, 55, 0.06);
}

.contact-faq .faq-item.active {
  border-color: #7b7b7b;

  box-shadow: 0 12px 35px rgba(20, 35, 55, 0.08);
}

/*=========================================================
    QUESTION
=========================================================*/

.contact-faq .faq-question {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;

  padding: 28px 36px;

  border: 0;
  outline: none;

  background: #ffffff;

  color: #062b5c;

  font-family: inherit;

  font-size: 21px;
  font-weight: 700;

  line-height: 1.4;

  text-align: left;

  cursor: pointer;

  transition: background 0.3s ease;
}

.contact-faq .faq-question:hover {
  background: #fffdf8;
}

/*=========================================================
    QUESTION ICON
=========================================================*/

.contact-faq .faq-question i {
  flex: 0 0 auto;

  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  color: #bd8b18;

  font-size: 18px;

  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

/* Active icon */

.contact-faq .faq-item.active .faq-question i {
  transform: rotate(45deg);

  color: #bd8b18;
}

/*=========================================================
    ANSWER
=========================================================*/

.contact-faq .faq-answer {
  max-height: 0;

  overflow: hidden;

  background: #ffffff;

  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}

.contact-faq .faq-item.active .faq-answer {
  max-height: 500px;
}

.contact-faq .faq-answer p {
  margin: 0;

  padding: 0 36px 30px;

  color: #526071;

  font-size: 17px;

  line-height: 1.8;
}

/*=========================================================
    ACTIVE ITEM ACCENT
=========================================================*/

.contact-faq .faq-item.active::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 4px;
  height: 100%;

  background: #bd8b18;
}

/*=========================================================
    MOBILE
=========================================================*/

@media (max-width: 767px) {
  .contact-faq {
    padding: 70px 0 80px;
  }

  .contact-faq .section-title {
    margin-bottom: 35px;
  }

  .contact-faq .section-title h2 {
    font-size: 34px;
  }

  .contact-faq .section-title p {
    font-size: 15px;
  }

  .contact-faq .faq-item {
    margin-bottom: 14px;

    border-radius: 14px;
  }

  .contact-faq .faq-question {
    padding: 20px;

    gap: 15px;

    font-size: 17px;
  }

  .contact-faq .faq-question i {
    width: 26px;
    height: 26px;

    font-size: 16px;
  }

  .contact-faq .faq-answer p {
    padding: 0 20px 22px;

    font-size: 15px;

    line-height: 1.7;
  }
}

/*=========================================================
    SMALL MOBILE
=========================================================*/

@media (max-width: 480px) {
  .contact-faq .section-title h2 {
    font-size: 30px;
  }

  .contact-faq .faq-question {
    padding: 18px;

    font-size: 16px;
  }

  .contact-faq .faq-answer p {
    padding: 0 18px 20px;

    font-size: 14px;
  }
}
