/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 01 2026 | 06:47:24 */
/* Contact-page customer video callout */
.cga-contact-video,
.cga-contact-video * {
  box-sizing: border-box;
}

.cga-contact-video {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  overflow: hidden;
  margin: 34px 0;
  padding: 30px 32px;
  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(211, 169, 86, 0.18),
      transparent 27%
    ),
    linear-gradient(135deg, #211815 0%, #392820 100%);
  border: 1px solid rgba(205, 160, 78, 0.56);
  border-radius: 17px;
  box-shadow: 0 18px 42px rgba(33, 24, 21, 0.18);
}

.cga-contact-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #94651f, #e0bc70);
}

/* Play visual */
.cga-contact-video-visual {
  position: relative;
  display: flex;
  min-height: 135px;
  align-items: center;
  justify-content: center;
}

.cga-contact-video-visual::before,
.cga-contact-video-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(211, 169, 86, 0.26);
  border-radius: 50%;
}

.cga-contact-video-visual::before {
  width: 130px;
  height: 130px;
}

.cga-contact-video-visual::after {
  width: 100px;
  height: 100px;
}

.cga-contact-video-play {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  color: #291e19;
  background: linear-gradient(145deg, #e2bd70, #bd8731);
  border: 1px solid #efd391;
  border-radius: 50%;
  box-shadow:
    0 13px 28px rgba(0, 0, 0, 0.27),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.cga-contact-video-play svg {
  width: 29px;
  height: 29px;
  margin-left: 3px;
  fill: currentColor;
}

/* Copy */
.cga-contact-video-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.cga-contact-video-kicker {
  display: block;
  margin-bottom: 7px;
  color: #d3a956;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.cga-contact-video h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: inherit;
  font-size: clamp(26px, 2.3vw, 35px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-transform: none;
}

.cga-contact-video p {
  max-width: 670px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

/* Button */
.cga-contact-video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
}

.cga-contact-video-button {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  color: #281e19;
  background: linear-gradient(135deg, #dfba6b, #c8943e);
  border: 1px solid #e7c881;
  border-radius: 999px;
  box-shadow: 0 9px 21px rgba(0, 0, 0, 0.2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.cga-contact-video-button span {
  display: inline-flex;
}

.cga-contact-video-button svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.cga-contact-video-button:hover {
  color: #281e19;
  box-shadow: 0 12px 27px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.cga-contact-video-button:focus-visible {
  outline: 3px solid rgba(230, 196, 123, 0.7);
  outline-offset: 4px;
}

.cga-contact-video-actions small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11.5px;
}

/* Mobile */
@media (max-width: 649px) {
  .cga-contact-video {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 31px 20px 26px;
    text-align: center;
  }

  .cga-contact-video::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .cga-contact-video-visual {
    min-height: 125px;
  }

  .cga-contact-video p {
    font-size: 14.5px;
  }

  .cga-contact-video-actions {
    flex-direction: column;
  }

  .cga-contact-video-button {
    width: 100%;
  }
}

