/* ================= CONSULTING CTA SECTION ================= */

.consulting-section {
  padding: 30px 6%;
  padding-bottom: 0;
  background:
    radial-gradient(circle at right, rgba(215,168,79,0.08), transparent 35%),
    linear-gradient(135deg, #020403 0%, #06140f 50%, #0b241b 100%);
  color: white;
  overflow: hidden;
}

.consulting-wrapper {
  max-width: 1500px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.consulting-image {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: 0 28px 75px rgba(0,0,0,0.45);
}

.consulting-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.28) 45%,
    transparent 60%
  );
  transform: translateX(-140%);
  animation: mirrorShine 3s infinite;
  z-index: 2;
}

.consulting-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.35)),
    linear-gradient(90deg, rgba(6,20,15,0.15), transparent);
  z-index: 1;
}

.consulting-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
  transition: 0.7s ease;
}

.consulting-image:hover img {
  transform: scale(1.08);
}

.consulting-content {
  position: relative;
  padding: 30px 10px;
}

.consulting-watermark {
	position: absolute;
	  top: -45px;
	  left: -9px;
	  font-size: 90px;
	  font-weight: 900;
	  color: transparent;
	  -webkit-text-stroke: 1px rgba(215, 168, 79, 0.7);
	  z-index: 0;
	  pointer-events: none;
	  padding: 10px;
}

.consulting-content h2 {
  position: relative;
  z-index: 1;
  font-size: 58px;
  line-height: 1.14;
  font-weight: 950;
  margin-bottom: 24px;
  color: #ffffff;
}

.consulting-content p {
  position: relative;
  z-index: 1;
  max-width: 690px;
  font-size: 18px;
  line-height: 1.85;
  color: #dce9e3;
  margin-bottom: 34px;
}

.consulting-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.consulting-points div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(215,168,79,0.20);
  transition: 0.35s ease;
}

.consulting-points div:hover {
  background: rgba(215,168,79,0.10);
  transform: translateX(8px);
}

.consulting-points strong {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #d7a84f;
  color: #07140f;
  display: grid;
  place-items: center;
  font-weight: 950;
}

.consulting-points span {
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
}

.consulting-btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 16px 36px;
  border-radius: 42px;
  background: linear-gradient(135deg, #d7a84f, #f2c76f);
  color: #07140f;
  text-decoration: none;
  font-weight: 950;
  transition: 0.35s ease;
  box-shadow: 0 18px 38px rgba(0,0,0,0.35);
}

.consulting-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.65),
    transparent
  );
  animation: mirrorShineBtn 3s infinite;
}

.consulting-btn:hover {
  background: #ffffff;
  transform: translateY(-5px);
}

/*============CONSULTING CTA SECTION RESPONSIVENESS==============*/

@media (max-width: 1000px) {
  .consulting-wrapper {
    grid-template-columns: 1fr;
  }

  .consulting-content h2 {
    font-size: 42px;
  }

  .consulting-watermark {
    font-size: 72px;
  }
}

@media (max-width: 600px) {
  .consulting-section {
    padding: 70px 5%;
  }

  .consulting-image,
  .consulting-image img {
    min-height: 340px;
  }

  .consulting-content h2 {
    font-size: 34px;
  }

  .consulting-watermark {
    font-size: 50px;
    top: -25px;
  }

  .consulting-btn {
    width: 100%;
    text-align: center;
  }
}