/*=========================================================
    SUPPORT COORDINATION
    HERO
=========================================================*/

.service-hero {
  background: url("../images/support-coordination-banner.jpg") no-repeat center
    center/cover;
}

/*=========================================================
    SUPPORT INTRO
=========================================================*/

.support-intro {
  padding: 90px 0;
  background: #fff;
}

/*=========================================
        LAYOUT
=========================================*/

.support-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/*=========================================
        IMAGE
=========================================*/

.support-image {
  position: relative;
}

.support-image img {
  width: 100%;
  display: block;

  border-radius: 20px;

  object-fit: cover;
}

/*=========================================
        CONTENT
=========================================*/

.support-content {
  max-width: 620px;
}

.support-content .section-tag {
  display: inline-block;
  padding: 10px 24px;
  background: #c69214;
  color: #fff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.support-content h2 {
  margin-bottom: 22px;

  color: var(--secondary);

  font-size: 38px;

  line-height: 1.25;

  font-weight: 700;
}

.support-content h2 span {
  color: var(--primary-color);
}

.support-content p {
  margin-bottom: 18px;

  color: var(--text-color);

  line-height: 1.9;
}

/*=========================================
        FEATURES
=========================================*/

.support-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 18px 30px;

  margin: 35px 0 40px;
}

.support-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.support-feature i {
  color: var(--primary-color);

  font-size: 18px;

  flex-shrink: 0;
}

.support-feature span {
  color: var(--secondary-color);

  font-weight: 500;

  line-height: 1.6;
}

/*=========================================
        BUTTON
=========================================*/

.support-content .btn {
  margin-top: 5px;
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width: 991px) {
  .support-intro {
    padding: 80px 0;
  }

  .support-wrapper {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .support-content {
    max-width: 100%;
  }

  .support-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .support-intro {
    padding: 70px 0;
  }

  .support-wrapper {
    gap: 40px;
  }

  .support-content {
    text-align: center;
  }

  .support-features {
    grid-template-columns: 1fr;

    text-align: left;

    margin: 30px 0;
  }

  .support-content .btn {
    display: inline-flex;
  }
}

@media (max-width: 576px) {
  .support-intro {
    padding: 60px 0;
  }

  .support-content h2 {
    font-size: 28px;
  }

  .support-content p {
    font-size: 15px;
  }

  .support-feature {
    align-items: flex-start;
  }
}
/*=========================================================
    WHAT WE HELP WITH
=========================================================*/

.support-services {
  padding: 90px 0;
  background: var(--light);
}

/*=========================================
        GRID
=========================================*/

.support-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

  margin-top: 50px;
}

/*=========================================
        CARD
=========================================*/

.support-card {
  background: #fff;

  border-radius: 18px;

  padding: 35px 30px;

  transition: 0.35s ease;

  border: 1px solid rgba(0, 0, 0, 0.06);

  height: 100%;
}

.support-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/*=========================================
        ICON
=========================================*/

.support-card-icon {
  width: 65px;
  height: 65px;

  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.04);

  margin-bottom: 25px;
}

.support-card-icon i {
  font-size: 28px;

  color: var(--primary-color);
}

/*=========================================
        TITLE
=========================================*/

.support-card h3 {
  font-size: 22px;

  color: var(--secondary-color);

  margin-bottom: 15px;

  line-height: 1.4;
}

/*=========================================
        DESCRIPTION
=========================================*/

.support-card p {
  margin: 0;

  color: var(--text-color);

  line-height: 1.8;
}

/*=========================================
        HOVER
=========================================*/

.support-card:hover .support-card-icon {
  background: var(--primary-color);
}

.support-card:hover .support-card-icon i {
  color: #fff;
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width: 991px) {
  .support-services {
    padding: 80px 0;
  }

  .support-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .support-services {
    padding: 70px 0;
  }

  .support-services-grid {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .support-card {
    padding: 30px 25px;
  }

  .support-card h3 {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .support-card {
    text-align: center;
  }

  .support-card-icon {
    margin: 0 auto 20px;
  }
}
/*=========================================================
    OUR PROCESS
=========================================================*/

.support-process {
  padding: 90px 0;
  background: #ffffff;
}

/*=========================================
        WRAPPER
=========================================*/

.process-wrapper {
  max-width: 1100px;
  margin: 50px auto 0;
}

/*=========================================
        PROCESS STEP
=========================================*/

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 30px;

  padding: 30px 0;

  border-bottom: 1px solid rgba(0, 0, 0, 0.08);

  transition: all 0.35s ease;
}

.process-step:last-child {
  border-bottom: none;
}

.process-step:hover {
  padding-left: 10px;
}

/*=========================================
        NUMBER
=========================================*/

.process-number {
  width: 65px;
  height: 65px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--primary);

  color: #fff;

  font-size: 20px;
  font-weight: 700;
}

/*=========================================
        CONTENT
=========================================*/

.process-content {
  flex: 1;
}

.process-content h3 {
  margin-bottom: 12px;

  color: var(--secondary);

  font-size: 24px;

  font-weight: 600;
}

.process-content p {
  margin: 0;

  color: var(--text-color);

  line-height: 1.8;
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width: 991px) {
  .support-process {
    padding: 80px 0;
  }

  .process-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .support-process {
    padding: 70px 0;
  }

  .process-step {
    gap: 20px;
    padding: 25px 0;
  }

  .process-number {
    width: 55px;
    height: 55px;

    font-size: 18px;
  }

  .process-content h3 {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .process-step {
    flex-direction: column;
    text-align: center;
  }

  .process-number {
    margin: 0 auto;
  }
}
/*=========================================================
    WHY CHOOSE US
=========================================================*/

.support-benefits {
  padding: 90px 0;
  background: var(--light);
}

/*=========================================
        GRID
=========================================*/

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/*=========================================
        CARD
=========================================*/

.benefit-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px 30px;

  border: 1px solid rgba(0, 0, 0, 0.06);

  transition: all 0.3s ease;

  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/*=========================================
        ICON
=========================================*/

.benefit-icon {
  width: 65px;
  height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 22px;

  border-radius: 16px;

  background: rgba(0, 0, 0, 0.04);

  transition: 0.3s ease;
}

.benefit-icon i {
  color: var(--primary);
  font-size: 28px;

  transition: 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background: var(--primary);
}

.benefit-card:hover .benefit-icon i {
  color: #fff;
}

/*=========================================
        CONTENT
=========================================*/

.benefit-card h3 {
  margin-bottom: 15px;

  color: var(--secondary-color);

  font-size: 22px;

  font-weight: 600;

  line-height: 1.4;
}

.benefit-card p {
  margin: 0;

  color: var(--text-color);

  line-height: 1.8;
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width: 991px) {
  .support-benefits {
    padding: 80px 0;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .support-benefits {
    padding: 70px 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .benefit-card {
    padding: 30px 25px;
  }

  .benefit-card h3 {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .benefit-card {
    text-align: center;
  }

  .benefit-icon {
    margin: 0 auto 20px;
  }
}
