/*=========================================================
    NURSING SUPPORT
    HERO SECTION
=========================================================*/

/*=========================================
        HERO SECTION
=========================================*/

.service-hero {
  background: url("../images/nursing-support-banner.jpg") no-repeat center
    center;

  background-size: cover;
}

/*=========================================
        HERO OVERLAY
=========================================*/

.hero-overlay {
  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at left center,
      rgba(255, 248, 235, 0.95) 0%,
      rgba(255, 248, 235, 0.72) 30%,
      rgba(255, 248, 235, 0.3) 60%,
      rgba(255, 248, 235, 0) 100%
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.82) 0%,
      rgba(255, 255, 255, 0.55) 40%,
      rgba(255, 255, 255, 0.12) 72%,
      rgba(255, 255, 255, 0) 100%
    );
}

/*=========================================
        DECORATION
=========================================*/

.service-hero::before {
  content: "";

  position: absolute;

  width: 650px;

  height: 650px;

  left: -250px;

  top: -180px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 138, 27, 0.12),
    transparent 72%
  );
}

.service-hero::after {
  content: "";

  position: absolute;

  width: 420px;

  height: 420px;

  right: -120px;

  bottom: -120px;

  border-radius: 50%;

  background: rgba(184, 138, 27, 0.08);
}

/*=========================================
        CONTAINER
=========================================*/

.service-hero .container {
  position: relative;

  z-index: 5;
}

/*=========================================
        GRID
=========================================*/

.service-hero-wrapper {
  display: grid;

  grid-template-columns: 1fr;

  align-items: center;
}

/*=========================================
        HERO CONTENT
=========================================*/

.service-hero-content {
  max-width: 720px;

  opacity: 0;

  transform: translateY(40px);

  transition: 0.9s ease;
}

.service-hero-content.show {
  opacity: 1;

  transform: translateY(0);
}

/*=========================================
        BREADCRUMB
=========================================*/

.breadcrumb {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 25px;

  font-size: 15px;
}

.breadcrumb a {
  color: #5f6674;

  text-decoration: none;

  transition: 0.3s;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  color: var(--primary);

  font-weight: 600;
}

/*=========================================
        HERO TAG
=========================================*/

.hero-tag {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 12px 22px;

  border-radius: 50px;

  background: rgba(184, 138, 27, 0.12);

  color: var(--primary);

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  margin-bottom: 30px;
}

.hero-tag::before {
  content: "";

  width: 32px;

  height: 2px;

  background: var(--primary);
}

/*=========================================
        TITLE
=========================================*/

.service-hero-content h1 {
  font-size: 42px;

  line-height: 1.08;

  font-weight: 800;

  color: var(--secondary);

  margin-bottom: 28px;
}

.service-hero-content h1 span {
  display: block;

  color: var(--primary);
}

/*=========================================
        DESCRIPTION
=========================================*/

.service-hero-content p {
  max-width: 580px;
  color: #5f6c80;
  font-size: 16px;
  line-height: 1.8;
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width: 1200px) {
  .service-hero-content h1 {
    font-size: 56px;
  }
}

@media (max-width: 991px) {
  .service-hero {
    min-height: auto;

    padding: 110px 0 90px;
  }

  .service-hero-wrapper {
    min-height: auto;
  }

  .service-hero-content {
    max-width: 100%;

    text-align: center;

    margin: auto;
  }

  .service-hero-content p {
    margin: auto;
  }

  .breadcrumb {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .service-hero {
    padding: 90px 0 70px;
  }

  .service-hero-content h1 {
    font-size: 42px;
  }

  .service-hero-content p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .service-hero-content h1 {
    font-size: 34px;
  }

  .breadcrumb {
    flex-wrap: wrap;

    justify-content: center;

    font-size: 14px;
  }

  .hero-tag {
    font-size: 12px;

    padding: 10px 18px;
  }
}
/*=========================================================
    NURSING SUPPORT
    ABOUT SECTION
=========================================================*/

/*=========================================
        ABOUT SECTION
=========================================*/

.service-about {
  position: relative;

  padding: 100px 0;

  background: #ffffff;

  overflow: hidden;
}

/*=========================================
        BACKGROUND DECORATION
=========================================*/

.service-about::before {
  content: "";

  position: absolute;

  width: 650px;

  height: 650px;

  left: -280px;

  top: -220px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 138, 27, 0.08),
    transparent 72%
  );
}

.service-about::after {
  content: "";

  position: absolute;

  width: 380px;

  height: 380px;

  right: -180px;

  bottom: -180px;

  border-radius: 50%;

  background: rgba(184, 138, 27, 0.05);
}

/*=========================================
        WRAPPER
=========================================*/

.service-about-wrapper {
  position: relative;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 80px;

  align-items: center;

  z-index: 2;
}

/*=========================================
        CONTENT
=========================================*/

.service-about-content {
  max-width: 620px;

  opacity: 0;

  transform: translateX(-40px);

  transition: 0.8s ease;
}

.service-about-content.show {
  opacity: 1;

  transform: translateX(0);
}

/*=========================================
        TAG
=========================================*/

.service-about-content .section-tag {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 12px 24px;

  margin-bottom: 28px;

  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;
}

.service-about-content .section-tag::before {
  content: "";

  width: 30px;

  height: 2px;

  background: var(--primary);
}

/*=========================================
        TITLE
=========================================*/

.service-about-content h2 {
  font-size: 46px;

  line-height: 1.2;

  color: var(--secondary);

  margin-bottom: 25px;
}

.service-about-content h2 span {
  color: var(--primary);
}

/*=========================================
        DESCRIPTION
=========================================*/

.service-about-content p {
  color: #667085;

  line-height: 1.9;

  margin-bottom: 18px;
}

.service-about-content .section-description {
  font-size: 17px;
}

/*=========================================
        FEATURES
=========================================*/

.about-features {
  display: grid;

  gap: 24px;

  margin-top: 40px;
}

/*=========================================
        FEATURE CARD
=========================================*/

.about-feature {
  display: flex;

  align-items: flex-start;

  gap: 22px;

  padding: 24px;

  background: #ffffff;

  border-radius: 18px;

  border: 1px solid rgba(0, 0, 0, 0.06);

  transition: 0.35s;
}

.about-feature:hover {
  transform: translateY(-6px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/*=========================================
        FEATURE ICON
=========================================*/

.feature-icon {
  width: 72px;

  height: 72px;

  border-radius: 18px;

  background: rgba(184, 138, 27, 0.1);

  display: flex;

  justify-content: center;

  align-items: center;

  flex-shrink: 0;

  transition: 0.35s;
}

.feature-icon i {
  font-size: 30px;

  color: var(--primary);

  transition: 0.35s;
}

.about-feature:hover .feature-icon {
  background: var(--primary);
}

.about-feature:hover .feature-icon i {
  color: #ffffff;

  transform: scale(1.08);
}

/*=========================================
        FEATURE CONTENT
=========================================*/

.about-feature h4 {
  font-size: 22px;

  color: var(--secondary);

  margin-bottom: 10px;
}

.about-feature p {
  margin: 0;

  color: #667085;

  line-height: 1.8;
}

/*=========================================
        IMAGE
=========================================*/

.service-about-image {
  opacity: 0;

  transform: translateX(40px);

  transition: 0.8s ease;
}

.service-about-image.show {
  opacity: 1;

  transform: translateX(0);
}

.service-about-image img {
  width: 100%;

  display: block;

  border-radius: 30px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width: 991px) {
  .service-about {
    padding: 80px 0;
  }

  .service-about-wrapper {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .service-about-content {
    max-width: 100%;

    text-align: center;
  }

  .about-feature {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .service-about {
    padding: 70px 0;
  }

  .service-about-content h2 {
    font-size: 36px;
  }

  .about-feature {
    flex-direction: column;

    align-items: center;

    text-align: center;
  }
}

@media (max-width: 576px) {
  .service-about-content h2 {
    font-size: 30px;
  }

  .service-about-content p {
    font-size: 15px;
  }
}
/*=========================================================
    NURSING SUPPORT
    SERVICES SECTION
=========================================================*/

/*=========================================
        SECTION
=========================================*/

.support-services {
  position: relative;

  padding: 100px 0;

  background: var(--light);

  overflow: hidden;
}

/*=========================================
        BACKGROUND DECORATION
=========================================*/

.support-services::before {
  content: "";

  position: absolute;

  width: 500px;

  height: 500px;

  top: -220px;

  right: -220px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 138, 27, 0.08),
    transparent 72%
  );
}

.support-services::after {
  content: "";

  position: absolute;

  width: 420px;

  height: 420px;

  bottom: -180px;

  left: -180px;

  border-radius: 50%;

  background: rgba(184, 138, 27, 0.05);
}

/*=========================================
        SECTION HEADER
=========================================*/

.section-header {
  position: relative;

  max-width: 760px;

  margin: 0 auto 70px;

  text-align: center;

  z-index: 2;
}

.section-header .section-tag {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 12px 24px;

  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;

  margin-bottom: 22px;
}

.section-header .section-tag::before {
  content: "";

  width: 30px;

  height: 2px;

  background: var(--primary);
}

.section-header h2 {
  font-size: 48px;

  line-height: 1.2;

  color: var(--secondary);

  margin-bottom: 22px;
}

.section-header h2 span {
  color: var(--primary);
}

.section-header p {
  color: #667085;

  font-size: 17px;

  line-height: 1.9;
}

/*=========================================
        GRID
=========================================*/

.support-services-grid {
  position: relative;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;

  z-index: 2;
}

/*=========================================
        SERVICE CARD
=========================================*/

.service-card {
  position: relative;

  background: #ffffff;

  border-radius: 24px;

  padding: 40px 35px;

  border: 1px solid rgba(0, 0, 0, 0.05);

  overflow: hidden;

  transition: 0.35s ease;

  opacity: 0;

  transform: translateY(40px);
}

.service-card.show {
  opacity: 1;

  transform: translateY(0);
}

.service-card::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 5px;

  background: var(--primary);

  transform: scaleX(0);

  transition: 0.35s;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

/*=========================================
        ICON
=========================================*/

.service-icon {
  width: 80px;

  height: 80px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 20px;

  background: rgba(184, 138, 27, 0.1);

  margin-bottom: 28px;

  transition: 0.35s;
}

.service-icon i {
  font-size: 34px;

  color: var(--primary);

  transition: 0.35s;
}

.service-card:hover .service-icon {
  background: var(--primary);

  transform: rotate(-6deg);
}

.service-card:hover .service-icon i {
  color: #ffffff;

  transform: scale(1.08);
}

/*=========================================
        CONTENT
=========================================*/

.service-card h3 {
  font-size: 24px;

  color: var(--secondary);

  margin-bottom: 18px;

  transition: 0.3s;
}

.service-card:hover h3 {
  color: var(--primary);
}

.service-card p {
  margin: 0;

  color: #667085;

  line-height: 1.9;
}

/*=========================================
        DECORATION
=========================================*/

.service-card::after {
  content: "";

  position: absolute;

  right: -70px;

  bottom: -70px;

  width: 140px;

  height: 140px;

  border-radius: 50%;

  background: rgba(184, 138, 27, 0.05);

  transition: 0.35s;
}

.service-card:hover::after {
  transform: scale(1.3);
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width: 1200px) {
  .support-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .support-services {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 60px;
  }

  .section-header h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .support-services {
    padding: 70px 0;
  }

  .support-services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 35px 30px;
  }

  .section-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .service-card {
    text-align: center;

    padding: 30px 25px;
  }

  .service-icon {
    margin: 0 auto 25px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .section-header p {
    font-size: 15px;
  }
}
/*=========================================================
    NURSING SUPPORT
    OUR SUPPORT PROCESS
=========================================================*/

/*=========================================
        SECTION
=========================================*/

.support-process {
  position: relative;

  padding: 100px 0;

  background: #ffffff;

  overflow: hidden;
}

/*=========================================
        BACKGROUND SHAPES
=========================================*/

.support-process::before {
  content: "";

  position: absolute;

  width: 600px;

  height: 600px;

  top: -260px;

  left: -260px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 138, 27, 0.08),
    transparent 72%
  );
}

.support-process::after {
  content: "";

  position: absolute;

  width: 420px;

  height: 420px;

  bottom: -180px;

  right: -180px;

  border-radius: 50%;

  background: rgba(184, 138, 27, 0.05);
}

/*=========================================
        PROCESS GRID
=========================================*/

.process-grid {
  position: relative;

  max-width: 950px;

  margin: 0 auto;

  z-index: 2;
}

/*=========================================
        TIMELINE
=========================================*/

.process-grid::before {
  content: "";

  position: absolute;

  left: 40px;

  top: 40px;

  bottom: 40px;

  width: 3px;

  border-radius: 50px;

  background: linear-gradient(
    to bottom,
    rgba(184, 138, 27, 0.35),
    rgba(184, 138, 27, 0.1)
  );
}

/*=========================================
        PROCESS STEP
=========================================*/

.process-step {
  position: relative;

  display: flex;

  align-items: flex-start;

  gap: 35px;

  margin-bottom: 40px;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.05);

  border-radius: 24px;

  padding: 35px 35px 35px 110px;

  transition: 0.35s ease;

  opacity: 0;

  transform: translateY(40px);
}

.process-step.show {
  opacity: 1;

  transform: translateY(0);
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step:hover {
  transform: translateY(-8px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

/*=========================================
        TOP BORDER
=========================================*/

.process-step::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 5px;

  background: var(--primary);

  transform: scaleX(0);

  transition: 0.35s;
}

.process-step:hover::before {
  transform: scaleX(1);
}

/*=========================================
        STEP NUMBER
=========================================*/

.step-number {
  position: absolute;

  left: 12px;

  top: 50%;

  transform: translateY(-50%);

  width: 60px;

  height: 60px;

  border-radius: 50%;

  background: var(--primary);

  color: #ffffff;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 20px;

  font-weight: 700;

  box-shadow: 0 15px 35px rgba(184, 138, 27, 0.3);

  z-index: 2;
}

.step-number::before {
  content: "";

  position: absolute;

  width: 76px;

  height: 76px;

  border-radius: 50%;

  border: 2px solid rgba(184, 138, 27, 0.18);
}

/*=========================================
        STEP CONTENT
=========================================*/

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 24px;

  color: var(--secondary);

  margin-bottom: 15px;

  transition: 0.3s;
}

.process-step:hover h3 {
  color: var(--primary);
}

.step-content p {
  margin: 0;

  color: #667085;

  line-height: 1.9;
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width: 991px) {
  .support-process {
    padding: 80px 0;
  }

  .process-grid {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .support-process {
    padding: 70px 0;
  }

  .process-grid::before {
    left: 28px;
  }

  .process-step {
    padding: 30px 25px 30px 85px;

    gap: 20px;
  }

  .step-number {
    width: 48px;

    height: 48px;

    left: 4px;

    font-size: 18px;
  }

  .step-number::before {
    width: 64px;

    height: 64px;
  }

  .step-content h3 {
    font-size: 21px;
  }
}

@media (max-width: 576px) {
  .process-grid::before {
    display: none;
  }

  .process-step {
    padding: 30px;

    text-align: center;
  }

  .step-number {
    position: relative;

    left: auto;

    top: auto;

    transform: none;

    margin: 0 auto 25px;
  }

  .step-content {
    width: 100%;
  }

  .step-content h3 {
    font-size: 20px;
  }
}
/*=========================================================
    NURSING SUPPORT
    WHY CHOOSE MIGARA CARE
=========================================================*/

/*=========================================
        BENEFITS SECTION
=========================================*/

.support-benefits {
  position: relative;

  padding: 100px 0;

  background: var(--light);

  overflow: hidden;
}

/*=========================================
        BACKGROUND DECORATION
=========================================*/

.support-benefits::before {
  content: "";

  position: absolute;

  width: 600px;

  height: 600px;

  top: -250px;

  right: -250px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 138, 27, 0.08),
    transparent 72%
  );
}

.support-benefits::after {
  content: "";

  position: absolute;

  width: 420px;

  height: 420px;

  left: -180px;

  bottom: -180px;

  border-radius: 50%;

  background: rgba(184, 138, 27, 0.05);
}

/*=========================================
        BENEFITS GRID
=========================================*/

.benefits-grid {
  position: relative;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;

  z-index: 2;
}

/*=========================================
        BENEFIT CARD
=========================================*/

.benefit-card {
  position: relative;

  background: #ffffff;

  padding: 40px 35px;

  border-radius: 24px;

  border: 1px solid rgba(0, 0, 0, 0.05);

  overflow: hidden;

  transition: 0.35s ease;

  opacity: 0;

  transform: translateY(40px);
}

.benefit-card.show {
  opacity: 1;

  transform: translateY(0);
}

.benefit-card::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 5px;

  background: var(--primary);

  transform: scaleX(0);

  transition: 0.35s;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

/*=========================================
        BENEFIT ICON
=========================================*/

.benefit-icon {
  width: 82px;

  height: 82px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 22px;

  background: rgba(184, 138, 27, 0.1);

  margin-bottom: 30px;

  transition: 0.35s;
}

.benefit-icon i {
  font-size: 34px;

  color: var(--primary);

  transition: 0.35s;
}

.benefit-card:hover .benefit-icon {
  background: var(--primary);

  transform: rotate(-5deg);
}

.benefit-card:hover .benefit-icon i {
  color: #ffffff;

  transform: scale(1.08);
}

/*=========================================
        CONTENT
=========================================*/

.benefit-card h3 {
  font-size: 24px;

  color: var(--secondary);

  margin-bottom: 18px;

  transition: 0.3s;
}

.benefit-card:hover h3 {
  color: var(--primary);
}

.benefit-card p {
  margin: 0;

  color: #667085;

  line-height: 1.9;
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .support-benefits {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .support-benefits {
    padding: 70px 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: 35px 30px;
  }

  .benefit-card h3 {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .benefit-card {
    text-align: center;

    padding: 30px 25px;
  }

  .benefit-icon {
    margin: 0 auto 25px;
  }

  .benefit-card h3 {
    font-size: 20px;
  }
}
/*=========================================================
    NURSING SUPPORT
    FAQ SECTION
=========================================================*/

/*=========================================
        FAQ SECTION
=========================================*/

.support-faq {
  position: relative;

  padding: 100px 0;

  background: #ffffff;

  overflow: hidden;
}

/*=========================================
        BACKGROUND SHAPES
=========================================*/

.support-faq::before {
  content: "";

  position: absolute;

  width: 550px;

  height: 550px;

  top: -220px;

  left: -220px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 138, 27, 0.08),
    transparent 72%
  );
}

.support-faq::after {
  content: "";

  position: absolute;

  width: 380px;

  height: 380px;

  bottom: -180px;

  right: -180px;

  border-radius: 50%;

  background: rgba(184, 138, 27, 0.05);
}

/*=========================================
        FAQ WRAPPER
=========================================*/

.faq-wrapper {
  position: relative;

  max-width: 900px;

  margin: 0 auto;

  z-index: 2;
}

/*=========================================
        FAQ ITEM
=========================================*/

.faq-item {
  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.06);

  border-radius: 18px;

  margin-bottom: 20px;

  overflow: hidden;

  transition: 0.35s;

  opacity: 0;

  transform: translateY(30px);
}

.faq-item.show {
  opacity: 1;

  transform: translateY(0);
}

.faq-item.active {
  border-color: rgba(184, 138, 27, 0.25);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/*=========================================
        QUESTION
=========================================*/

.faq-question {
  width: 100%;

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 25px 30px;

  background: transparent;

  border: none;

  cursor: pointer;

  text-align: left;

  font-size: 20px;

  font-weight: 600;

  color: var(--secondary);
}

.faq-question i {
  width: 42px;

  height: 42px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 50%;

  background: rgba(184, 138, 27, 0.1);

  color: var(--primary);

  transition: 0.35s;

  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  background: var(--primary);

  color: #ffffff;

  transform: rotate(45deg);
}

/*=========================================
        ANSWER
=========================================*/

.faq-answer {
  max-height: 0;

  overflow: hidden;

  transition: 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 30px 30px;

  margin: 0;

  color: #667085;

  line-height: 1.9;
}

/*=========================================================
    CTA SECTION
=========================================================*/

/*=========================================
        ABOUT CTA
=========================================*/

.about-cta {
  padding: 0 0 60px 0;

  background: #ffffff;
}

.cta-box {
  position: relative;

  overflow: hidden;

  padding: 90px 80px;

  border-radius: 35px;

  background: linear-gradient(135deg, #fffdf8 0%, #fdf7eb 40%, #f8f1df 100%);

  text-align: center;

  color: #fff;
}

/* Gold Glow */

.cta-box::before {
  content: "";

  position: absolute;

  left: -250px;

  top: -150px;

  width: 650px;

  height: 650px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(198, 146, 20, 0.18),
    transparent 72%
  );
}

/* Decorative Circle */

.cta-box::after {
  content: "";

  position: absolute;

  right: -180px;

  bottom: -180px;

  width: 420px;

  height: 420px;

  border-radius: 50%;

  background: rgba(198, 146, 20, 0.08);
}

.cta-content {
  position: relative;

  z-index: 2;

  max-width: 760px;

  margin: auto;
}

.cta-content .sub-title {
  display: inline-block;

  margin-bottom: 20px;

  padding: 10px 24px;

  border-radius: 50px;

  background: #c69214;

  color: #fff;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;
}

.cta-content h2 {
  font-size: 56px;

  line-height: 1.15;

  color: #132544;
}

.cta-content h2 span {
  display: block;

  margin-top: 8px;

  color: #c69214;

  font-size: 56px;
}

.cta-content p {
  max-width: 640px;

  margin: 0 auto 40px;

  font-size: 18px;

  line-height: 1.9;

  color: #5f6c80;
}

.cta-buttons {
  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 210px;
}

.cta-buttons .btn-primary {
  background: #c69214;

  color: #fff;
}

.cta-buttons .btn-primary:hover {
  background: #b28112;
}

.cta-buttons .btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.45);

  color: #fff;

  background: var(--primary-dark);
}

.cta-buttons .btn-outline:hover {
  background: var(--primary-light);

  color: #132544;
}

/* Animation */

.cta-box {
  opacity: 0;

  transform: translateY(60px);

  transition: 0.8s ease;
}

.cta-box.show {
  opacity: 1;

  transform: translateY(0);
}

/* Responsive */

@media (max-width: 991px) {
  .cta-box {
    padding: 70px 40px;
  }

  .cta-content h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .about-cta {
    padding: 80px 0;
  }

  .cta-box {
    padding: 50px 30px;

    border-radius: 25px;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}
