.hero-grid {
   /* position: absolute; */
    inset: 0;
    background-image: linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
}
.hero-tag::before {
    content: '';
    width: 32px;
    height: 1.5px;
    background: #c9a84c;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #c9a84b;
    transition: width 0.4s;
}
.service-card:hover::before {
    width: 100%;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0px;
    right: 0px;
    height: 1px;
    background: linear-gradient(90deg, #c9a84b, #c89c32);
    opacity: 0.4;
}
@media only screen and (max-width:768px){
		.process-steps::before{
		display: none;
		}
}



/* FIX SELECT HEIGHT + ALIGN TEXT */
select.cf7-input {
  max-height: 40px;
  line-height: normal;
  padding: 0 14px;
}


/* REMOVE DEFAULT CF7 SPACING */
.wpcf7 p {
  margin: 0;
}
.cf7-field br {
  display: none;
}

/* WRAPPER CARD */
.cf7-wrapper {
  background: #ffffff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid #eef2f6;
}

/* TITLE */
.cf7-title {
  font-size: 22px;
  font-weight: 600;
  color: #1e2a3a;
  margin-bottom: 20px;
}

/* GRID */
.cf7-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* FIELD STRUCTURE */
.cf7-field {
  display: flex;
  flex-direction: column;
}

/* LABEL */
.cf7-field label {
  font-size: 13px;
  margin-bottom: 4px;
  color: #6b7a90;
}

/* INPUTS */
.cf7-input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid #d9e1ea;
  background: #ffffff;
  font-size: 14px;
  transition: 0.25s ease;
}

/* TEXTAREA */
textarea.cf7-input {
  height: 130px;
  padding: 12px 14px;
  resize: none;
}

/* FOCUS EFFECT */
.cf7-input:focus {
  border-color: #2b6cb0;
  box-shadow: 0 0 0 2px rgba(43,108,176,0.1);
  outline: none;
}
select.cf7-input {
  appearance: none;
  background: #fff;
  background-image: linear-gradient(45deg, transparent 50%, #6b7a90 50%),
                    linear-gradient(135deg, #6b7a90 50%, transparent 50%);
  background-position: calc(100% - 15px) calc(50% - 3px),
                       calc(100% - 10px) calc(50% - 3px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

/* FULL WIDTH */
.full-width {
  grid-column: span 2;
}

/* BUTTON */
.cf7-submit {
  width: 100%;
  background: #0d2b52;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

/* BUTTON HOVER */
.cf7-submit:hover {
  background: #0a2242;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cf7-form-grid {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: span 1;
  }
}