/* ============================================================
   Consultation Page — Heal Physio & Wellness
   Color variables from the existing theme (style.css)
   ============================================================ */

:root {
  --hp-primary: #70c345;
  --hp-primary-dark: #539033;
  --hp-secondary: #1d98c1;
  --hp-secondary-dark: #177a9b;
  --hp-dark: #1a2e35;
  --hp-text: #4a5568;
  --hp-text-light: #718096;
  --hp-bg-light: #f0faf4;
  --hp-bg-teal-light: #def0f2;
  --hp-white: #ffffff;
  --hp-border: #e2e8f0;
  --hp-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --hp-shadow-hover: 0 12px 40px rgba(29, 152, 193, 0.15);
  --hp-radius: 16px;
  --hp-radius-sm: 10px;
  --hp-font-heading: "Bricolage Grotesque", sans-serif;
  --hp-font-body: "Space Grotesk", sans-serif;
  --hp-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Hero / Banner — Split Layout ────────────────────────── */
.ch-hero {
  position: relative;
  padding-top: 150px;
  padding-bottom: 116px;
  background-image: url(../images/consultation/banner/banner-consultation.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner-img{
  position: relative;
}
.banner-inside-img {
    position: absolute;
    right: 146px;
    top: -32px;
}
.banner-inside-img img{
 width: 374px;
}

/* Floating medical shapes */
.ch-hero__shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.ch-hero__shape--1 {
  width: 320px;
  height: 320px;
  top: -80px;
  right: 10%;
  background: radial-gradient(
    circle,
    rgba(29, 152, 193, 0.07) 0%,
    transparent 70%
  );
}
.ch-hero__shape--2 {
  width: 200px;
  height: 200px;
  bottom: 20px;
  left: 5%;
  background: radial-gradient(
    circle,
    rgba(112, 195, 69, 0.06) 0%,
    transparent 70%
  );
}
.ch-hero__shape--3 {
  width: 140px;
  height: 140px;
  top: 40%;
  left: 45%;
  background: radial-gradient(
    circle,
    rgba(29, 152, 193, 0.05) 0%,
    transparent 70%
  );
}

/* Left content */
.ch-hero__left {
  position: relative;
  z-index: 2;
}

.ch-hero h1 {
  font-size: 50px !important;
  font-weight: 500 !important;
}

/* Breadcrumb */
.ch-breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  font-family: var(--hp-font-body);
  font-size: 14px;
  align-items:center;
}
.ch-breadcrumb a {
  color: var(--hp-text-light);
  text-decoration: none;
  transition: var(--hp-transition);
}
.ch-breadcrumb a:hover {
  color: var(--hp-secondary);
}
.ch-breadcrumb span {
  color: var(--hp-secondary);
  font-weight: 600;
}
.ch-sep {
  color: var(--hp-text-light);
  font-size: 11px;
}

/* Title */
.ch-hero__title {
  font-family: var(--hp-font-heading);
  font-size: 45px;
  font-weight: 400;
  color: var(--hp-dark);
  line-height: 1.166;
  letter-spacing: var(--sifoxen-letter-space, -1.2px);
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .ch-hero__title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .ch-hero__title {
    font-size: 45px;
  }
}
.ch-hero__accent {
  color: var(--hp-secondary);
  position: relative;
}
.ch-hero__accent::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(29, 152, 193, 0.15);
  border-radius: 4px;
}

/* Subtitle */
.ch-hero__sub {
  font-family: var(--hp-font-body);
  font-size: 18px;
  color: var(--hp-text);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 28px;
}

/* CTA Buttons */
.ch-hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.ch-btn-primary,
.ch-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--hp-radius-sm);
  font-family: var(--hp-font-heading);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--hp-transition);
  border: 2px solid transparent;
  cursor: pointer;
}
.ch-btn-primary {
  background: linear-gradient(
    135deg,
    var(--hp-primary),
    var(--hp-primary-dark)
  );
  color: var(--hp-white);
  border-color: var(--hp-primary);
  box-shadow: 0 4px 16px rgba(112, 195, 69, 0.3);
}
.ch-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(112, 195, 69, 0.4);
  color: var(--hp-white);
}
.ch-btn-outline {
  background: var(--hp-white);
  color: var(--hp-secondary);
  border-color: var(--hp-secondary);
}
.ch-btn-outline:hover {
  background: var(--hp-secondary);
  color: var(--hp-white);
  transform: translateY(-2px);
}

/* Trust badges */
.ch-hero__badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.ch-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--hp-font-body);
  font-size: 13px;
  color: var(--hp-text-light);
}
.ch-badge i {
  color: var(--hp-primary);
  font-size: 16px;
}

/* Right: Doctor image */
.ch-hero__right {
  position: relative;
  z-index: 2;
}
.ch-hero__img-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}
.ch-hero__img-bg {
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 340px;
  height: 340px;
  background: radial-gradient(
    circle,
    rgba(29, 152, 193, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.ch-hero__img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Floating stats card */
.ch-hero__float-card {
  position: absolute;
  bottom: 30px;
  left: 0;
  background: var(--hp-white);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--hp-border);
  z-index: 3;
  animation: chFloat 3s ease-in-out infinite;
}
@keyframes chFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.ch-hero__float-card i {
  font-size: 24px;
  color: var(--hp-primary);
}
.ch-hero__float-card strong {
  font-family: var(--hp-font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--hp-secondary);
  display: block;
  line-height: 1;
}
.ch-hero__float-card span {
  font-family: var(--hp-font-body);
  font-size: 11px;
  color: var(--hp-text-light);
}

/* ── Section Spacing ──────────────────────────────────────── */
.consult-section {
  padding: 80px 0;
}
.consult-section.alt-bg {
  background: var(--hp-bg-light);
}

/* ============================================================
   TIMELINE LAYOUT — Center line + alternating cards
   ============================================================ */
.tl-wrapper {
  position: relative;
  padding: 40px 0 20px;
}
/* Center vertical line */
.tl-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--hp-secondary), var(--hp-primary));
  border-radius: 4px;
  opacity: 0.2;
}

/* Timeline Item */
.tl-item {
  position: relative;
  margin-bottom: 80px;
}
.tl-item:last-child {
  margin-bottom: 0;
}

/* Number Circle */
.tl-number {
  position: absolute;
  top: -59px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.tl-number span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--hp-secondary),
    var(--hp-secondary-dark)
  );
  color: var(--hp-white);
  font-family: var(--hp-font-heading);
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(29, 152, 193, 0.35);
}

/* Timeline Content Card */
.tl-content {
  background: var(--hp-white);
  border-radius: var(--hp-radius);
  padding: 32px 28px;
  box-shadow: var(--hp-shadow);
  border: 1px solid var(--hp-border);
  transition: var(--hp-transition);
}
.tl-content:hover {
  box-shadow: var(--hp-shadow-hover);
  border-color: var(--hp-secondary);
}
.tl-content h2 {
  font-family: var(--hp-font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--hp-secondary);
  margin-bottom: 12px;
  line-height: 1.3;
}
.tl-content__subheading {
  font-family: var(--hp-font-heading);
  font-size: 18px;
  color: var(--hp-text-light);
  margin-bottom: 16px;
  font-weight: 500;
}

/* Timeline Image Card */
.tl-image {
  position: relative;
  border-radius: var(--hp-radius);
  overflow: hidden;
  box-shadow: var(--hp-shadow);
  transition: var(--hp-transition);
}
.tl-image:hover {
  box-shadow: var(--hp-shadow-hover);
  transform: translateY(-4px);
}
.tl-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.tl-image:hover img {
  transform: scale(1.03);
}

/* Badge on image */
.consult-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(
    135deg,
    var(--hp-secondary),
    var(--hp-secondary-dark)
  );
  color: var(--hp-white);
  font-family: var(--hp-font-heading);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  z-index: 2;
}

/* ── Shared card content styles ───────────────────────────── */
.consult-card__perfect {
  font-family: var(--hp-font-body);
  font-size: 16px;
  color: var(--hp-primary-dark);
  font-weight: 600;
  margin-bottom: 6px;
}
.consult-card__perfect-text {
  font-family: var(--hp-font-body);
  font-size: 16px;
  color: var(--hp-text-light);
  margin-bottom: 20px;
  line-height: 1.75;
}
.consult-card__list-title {
  font-family: var(--hp-font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--hp-dark);
  margin-bottom: 10px;
}
.consult-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.consult-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-family: var(--hp-font-body);
  font-size: 16px;
  color: var(--hp-text);
  line-height: 1.75;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.consult-card__list li:last-child {
  border-bottom: none;
}
.consult-card__list li i {
  color: var(--hp-primary);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 14px;
}
.consult-card__best {
  background: linear-gradient(
    135deg,
    rgba(112, 195, 69, 0.08),
    rgba(29, 152, 193, 0.08)
  );
  border-radius: var(--hp-radius-sm);
  padding: 14px 18px;
  margin-bottom: 20px;
}
.consult-card__best strong {
  font-family: var(--hp-font-heading);
  font-size: 16px;
  color: var(--hp-dark);
  display: block;
  margin-bottom: 4px;
}
.consult-card__best span {
  font-family: var(--hp-font-body);
  font-size: 15px;
  color: var(--hp-text-light);
  line-height: 1.65;
}
.consult-card__cost {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 0;
  margin-bottom: 16px;
  border-top: 1px dashed var(--hp-border);
  border-bottom: 1px dashed var(--hp-border);
}
.consult-card__cost .price {
  font-family: var(--hp-font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--hp-primary);
}
.consult-card__cost .meta {
  font-family: var(--hp-font-body);
  font-size: 16px;
  color: var(--hp-text-light);
}

/* Card CTA */
.consult-card__cta {
  margin-top: 8px;
}
.btn-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  border-radius: var(--hp-radius-sm);
  background: linear-gradient(
    135deg,
    var(--hp-secondary),
    var(--hp-secondary-dark)
  );
  color: var(--hp-white);
  font-family: var(--hp-font-heading);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--hp-transition);
  border: none;
  cursor: pointer;
}
.btn-card-cta:hover {
  background: linear-gradient(
    135deg,
    var(--hp-primary),
    var(--hp-primary-dark)
  );
  color: var(--hp-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(112, 195, 69, 0.3);
}

/* ── Why Choose — Floating Card Grid + Right Heading ──────── */
.wc-section {
  padding: 90px 0;
  background: var(--hp-bg-teal-light);
  overflow: hidden;
}

/* 2x2 floating card grid */
.wc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  position: relative;
}

/* Individual card */
.wc-card {
  background: var(--hp-white);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--hp-border);
  transition: var(--hp-transition);
  position: relative;
}
.wc-card:nth-child(2) {
  transform: translateY(20px);
}
.wc-card:nth-child(3) {
  transform: translateY(-20px);
}
.wc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hp-shadow-hover);
  border-color: var(--hp-secondary);
}
.wc-card:nth-child(2):hover {
  transform: translateY(16px);
}
.wc-card:nth-child(3):hover {
  transform: translateY(-24px);
}

/* Highlighted card */

.wc-card--highlight {
  background: var(--hp-white);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--hp-border);
  transition: var(--hp-transition);
  position: relative;
}

.wc-card--highlight:hover {
  background: #1c93ba;
  border-color: #fff;
}

.wc-card--highlight:hover .wc-card__title,
.wc-card--highlight:hover .wc-card__text,
.wc-card--highlight:hover h1,
.wc-card--highlight:hover h2,
.wc-card--highlight:hover h3,
.wc-card--highlight:hover h4,
.wc-card--highlight:hover h5,
.wc-card--highlight:hover h6,
.wc-card--highlight:hover p {
  color: #fff;
}

/* Common Card Hover */
.wc-card {
  transition: all 0.3s ease;
}

.wc-card:hover {
  background: #1c93ba;
  border-color: #fff;
}

.wc-card:hover .wc-card__title,
.wc-card:hover .wc-card__text,
.wc-card:hover h1,
.wc-card:hover h2,
.wc-card:hover h3,
.wc-card:hover h4,
.wc-card:hover h5,
.wc-card:hover h6,
.wc-card:hover p {
  color: #fff;
}

/* Icon */
.wc-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--hp-secondary);
  background: var(--hp-bg-teal-light);
  margin-bottom: 16px;
  transition: var(--hp-transition);
}
.wc-card:hover .wc-card__icon {
  transform: scale(1.08);
}

/* Title */
.wc-card__title {
  font-family: var(--hp-font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--hp-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

/* Text */
.wc-card__text {
  font-family: var(--hp-font-body);
  font-size: 16px;
  color: var(--hp-text-light);
  line-height: 1.75;
  margin: 0;
}

/* Right heading */
.wc-heading {
  padding-left: 40px;
}
.wc-heading h2 {
  font-family: var(--hp-font-heading);
  font-size: 40px;
  font-weight: 400;
  color: var(--hp-dark);
  line-height: 1.2;
  margin: 0;
}

/* ── Stat Highlight ───────────────────────────────────────── */
.stat-highlight {
  background: linear-gradient(135deg, var(--hp-dark), #0f1f24);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat-highlight::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(
      circle at 30% 50%,
      rgba(112, 195, 69, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(29, 152, 193, 0.08) 0%,
      transparent 50%
    );
  animation: pulseGlow 6s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
.stat-highlight .stat-number {
  font-family: var(--hp-font-heading);
  font-size: 64px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--hp-primary), var(--hp-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  position: relative;
  z-index: 1;
}
.stat-highlight .stat-text {
  font-family: var(--hp-font-body);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Bottom CTA ───────────────────────────────────────────── */
.bottom-cta {
  padding: 70px 0;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(112, 195, 69, 0.06),
    rgba(29, 152, 193, 0.06)
  );
}
.bottom-cta__text {
  font-family: var(--hp-font-body);
  font-size: 18px;
  color: var(--hp-text);
  margin-bottom: 8px;
}
.bottom-cta__location {
  font-family: var(--hp-font-body);
  font-size: 15px;
  color: var(--hp-text-light);
  margin-bottom: 28px;
}
.bottom-cta__location i {
  color: var(--hp-secondary);
  margin-right: 6px;
}
.btn-hp-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 48px;
  border-radius: var(--hp-radius-sm);
  background: linear-gradient(
    135deg,
    var(--hp-primary),
    var(--hp-primary-dark)
  );
  color: var(--hp-white);
  font-family: var(--hp-font-heading);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--hp-transition);
  box-shadow: 0 6px 20px rgba(112, 195, 69, 0.3);
  border: none;
  cursor: pointer;
}
.btn-hp-large:hover {
  background: linear-gradient(
    135deg,
    var(--hp-secondary),
    var(--hp-secondary-dark)
  );
  color: var(--hp-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(29, 152, 193, 0.35);
}

/* ── Animations ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Tablet ── */
@media (max-width: 991px) {
  .ch-hero {
    padding: 90px 0 60px;
    min-height: auto;
  }
  .ch-hero__title {
    font-size: 34px;
  }
  .ch-hero__sub {
    font-size: 16px;
  }
  .ch-hero__right {
    margin-top: 40px;
  }
  .ch-hero__float-card {
    bottom: 16px;
    left: 16px;
  }
  .consult-section {
    padding: 60px 0;
  }
  .wc-section {
    padding: 60px 0;
  }
  .stat-highlight .stat-number {
    font-size: 52px;
  }

  /* Why Choose: heading on top, cards below */
  .wc-heading {
    padding-left: 0;
    text-align: center;
    margin-bottom: 36px;
  }
  .wc-heading h2 {
    font-size: 32px;
  }
  .wc-card:nth-child(2),
  .wc-card:nth-child(3) {
    transform: none;
  }
  .wc-card:nth-child(2):hover,
  .wc-card:nth-child(3):hover {
    transform: translateY(-4px);
  }

  /* Timeline: collapse to stacked */
  .tl-wrapper::before {
    display: none;
  }
  .tl-number {
    position: relative;
    left: auto;
    transform: none;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
  }
  .tl-item {
    margin-bottom: 60px;
  }
  .tl-image {
    margin-bottom: 24px;
  }
  .tl-image img {
    height: 280px;
  }
  .tl-content h2 {
    font-size: 22px;
    font-weight: 400;
  }
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .ch-hero {
    padding: 70px 0 50px;
  }
  .ch-hero__title {
    font-size: 28px;
  }
  .ch-hero__sub {
    font-size: 16px;
    max-width: 100%;
  }
  .ch-hero__img {
    max-width: 100%;
    border-radius: 18px;
  }
  .ch-hero__float-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 16px;
    display: inline-flex;
  }
  .consult-section {
    padding: 50px 0;
  }
  .wc-section {
    padding: 50px 0;
  }
  .wc-heading h2 {
    font-size: 28px;
  }
  .wc-grid {
    gap: 16px;
  }
  .wc-card {
    padding: 22px 18px;
  }
  .wc-card__title {
    font-size: 16px;
  }
  .wc-card__text {
    font-size: 15px;
  }
  .stat-highlight .stat-number {
    font-size: 44px;
  }
  .stat-highlight .stat-text {
    font-size: 16px;
    line-height: 1.65;
  }
  .stat-highlight {
    padding: 45px 0;
  }
  .bottom-cta {
    padding: 50px 0;
  }
  .btn-hp-large {
    padding: 14px 36px;
    font-size: 16px;
  }

  .tl-item {
    margin-bottom: 50px;
  }
  .tl-content {
    padding: 24px 20px;
  }
  .tl-image img {
    height: 220px;
  }
  .tl-number span {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

/* ── Small Mobile ── */
@media (max-width: 575px) {
  .ch-hero__title {
    font-size: 24px;
  }
  .ch-hero__cta {
    flex-direction: column;
  }
  .ch-btn-primary,
  .ch-btn-outline {
    width: 60%;
    justify-content: center;
  }
  .ch-hero__badges {
    flex-direction: column;
    gap: 10px;
  }
  .consult-card__cost .price {
    font-size: 22px;
  }
  .stat-highlight .stat-number {
    font-size: 36px;
  }
  .tl-image img {
    height: 200px;
  }
  .wc-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .wc-heading h2 {
    font-size: 24px;
  }
  .wc-card {
    padding: 20px 16px;
  }
  .banner-inside-img img{
    display: none;
  }
      .ch-hero {
        padding: 143px 0 50px;
    }
    .wc-section .row{
      display: flex;
      flex-direction: column-reverse;
    }
    .cta-left-about h2 {
    color: white;
    width: 302px;
}
.cta-contact-about-sec {
   
    padding-top: 20px;
}
    .ch-hero__title {
        font-size: 32px;
    }
    .cta-consultation{
      padding: 62px 40px !important;
    }
}
.cta-location-about-sec,
.cta-phone-about-sec {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-consultation {
  background-image: url(../images/consultation/cta.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  padding: 73px 50px;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
