/* =========================
   VARIABLES (NAMESPACED)
========================= */
.vcf-mobile-cta-footer,
.vcf-cta-modal {
  --vcf-dark-bg: #2b2e30;
  --vcf-dark-bg-soft: #3a3d40;
  --vcf-text-main: #ffffff;
  --vcf-text-muted: #cfcfcf;
  --vcf-accent-gold: #d1a84a;
}
.vcf-mobile-cta-footer *,
.vcf-cta-modal * {
  box-sizing: border-box;
}

/* =========================
   MOBILE CTA FOOTER
========================= */
.vcf-mobile-cta-footer {
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%) !important;
  width: calc(100% - 28px);
  max-width: 420px;
  display: flex;
  justify-content: space-between;

  background: linear-gradient(
    180deg,
    rgba(58, 61, 64, 0.95),
    rgba(43, 46, 48, 0.95)
  );

  border-radius: 22px;
  padding: 10px 6px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  z-index: 9999;
}

/* CTA ITEM */
.vcf-cta-item {
  flex: 1;
  text-align: center;
  color: white;
  text-decoration: none;
  padding: 10px 0;
  border-radius: 16px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.vcf-cta-item:active {
  transform: scale(0.94);
}

.vcf-cta-item small {
  display: block;
  font-size: 11px;
  margin-top: 6px;
  color: var(--vcf-text-muted);
  letter-spacing: 0.4px;
}

/* ICONS */
.vcf-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
}

.vcf-cta-icon svg {
  width: 22px;
  height: 22px;
  fill: white;
  transition: transform 0.3s ease;
}

.vcf-cta-item:hover svg {
  transform: translateY(-3px);
}

/* PRIMARY CTA */
.vcf-cta-primary {
  background: linear-gradient(135deg, var(--vcf-accent-gold), #b8923c);
  color: #1c1c1c;
  box-shadow: 0 8px 20px rgba(209, 168, 74, 0.45);
  animation: vcf-pulse 3.5s infinite;
}

.vcf-cta-primary svg {
  fill: #1c1c1c;
}

@keyframes vcf-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(209, 168, 74, 0.6);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(209, 168, 74, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(209, 168, 74, 0);
  }
}

/* =========================
   MODAL
========================= */
.vcf-cta-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 10000;
}

.vcf-cta-modal.vcf-active {
  display: block;
}

.vcf-cta-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.vcf-cta-modal-box {
  position: relative;
  background: #fff;
  color: #111;
  max-width: 420px;
  margin: 10vh auto;
  padding: 24px;
  border-radius: 18px;
  animation: vcf-slideUp 0.35s ease;
}

@keyframes vcf-slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.vcf-cta-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 26px;
  border: none;
  background: none;
  cursor: pointer;
}




/* =========================
   FORM STYLES
========================= */
.vcf-form-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #111;
}

.vcf-form-subtitle {
  margin: 6px 0 18px;
  font-size: 13px;
  color: #666;
}

.vcf-quote-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vcf-form-group label {
  font-size: 12px;
  color: #444;
  margin-bottom: 4px;
  display: block;
}

.vcf-form-group input,
.vcf-form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.vcf-form-group textarea {
  min-height: 90px;
  resize: none;
}

.vcf-form-group input:focus,
.vcf-form-group textarea:focus {
  border-color: var(--vcf-accent-gold);
  box-shadow: 0 0 0 3px rgba(209, 168, 74, 0.2);
}

/* SUBMIT BUTTON */
.vcf-form-submit {
  margin-top: 10px;
  padding: 14px;
  border-radius: 14px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;

  background: linear-gradient(135deg, var(--vcf-accent-gold), #b8923c);

  color: #1c1c1c;
  box-shadow: 0 10px 24px rgba(209, 168, 74, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vcf-form-submit:active {
  transform: scale(0.97);
  box-shadow: 0 6px 16px rgba(209, 168, 74, 0.35);
}
.vcf-required {
  color: red;
}

