
/* ── FINAL CTA STRIP ────────────────────────────────────────────────── */
.final-cta {
  padding: 72px 56px;
  text-align: center;
  /* background: linear-gradient(135deg, #f7f8fc 0%, #fff 100%); */
  background-image: url("https://i.pinimg.com/736x/d8/58/fd/d858fd7489df5d4711b3bb5df8f35203.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-top: 1px solid var(--border);
  border-radius: 20px;
}

.final-cta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--sky);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.final-cta-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: #2c2c2c;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.final-cta-sub {
  font-size: 15px;
  color: black;
  max-width: 500px;
  margin: 0 auto 34px;
  line-height: 1.7;
}

.final-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-navy {
  background: #2f2f2f;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.btn-navy:hover {
  background: #2a2b2b;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #363636;
  border: 1px solid #2f2f2f;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-outline:hover {
  background: #252525;
  color: #fff;
  border-color: #2b2c2d;
}

.consult-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.consult-overlay.active {
  opacity: 1;
  visibility: visible;
}

.consult-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.consult-modal {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 24px;
  padding: 52px 48px 44px;
  max-width: 720px;
  width: 92%;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: translateY(30px) scale(0.96);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.consult-overlay.active .consult-modal {
  transform: translateY(0) scale(1);
}

.consult-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e6e1da;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: #0e100f;
}

.consult-close:hover {
  background: #0e100f;
  border-color: #0e100f;
  color: #fff;
}

.consult-header {
  text-align: center;
  margin-bottom: 36px;
}

.consult-badge {
  display: inline-block;
  background: #f7f5f2;
  color: #6b6560;
  padding: 5px 18px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid #e6e1da;
}

.consult-header h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #0e100f;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  line-height: 1.2;
}

.consult-header p {
  font-size: 14px;
  color: #6b6560;
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto;
}

.consult-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.consult-card {
  position: relative;
  border: 1.5px solid #e6e1da;
  border-radius: 16px;
  padding: 32px 24px 28px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: #fff;
  overflow: hidden;
}

.consult-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(208, 167, 65, 0.06) 0%,
    rgba(208, 167, 65, 0) 60%
  );
  opacity: 0;
  transition: opacity 0.35s;
  border-radius: 16px;
}

.consult-card:hover {
  border-color: #d0a741;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(208, 167, 65, 0.12);
}

.consult-card:hover::before {
  opacity: 1;
}

.consult-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.consult-card-icon.general {
  background: linear-gradient(135deg, #0e100f, #2a2a2a);
}

.consult-card-icon.aam {
  background: linear-gradient(135deg, #d0a741, #b8912e);
}

.consult-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
}

.consult-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0e100f;
  margin: 0 0 8px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

.consult-card p {
  font-size: 13px;
  color: #6b6560;
  line-height: 1.65;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}

.consult-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #0e100f;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition:
    color 0.2s,
    gap 0.2s;
}

.consult-card:hover .consult-card-btn {
  color: #d0a741;
  gap: 10px;
}

.consult-card-btn svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  transition: transform 0.2s;
}

.consult-footer-note {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: #9a9490;
  line-height: 1.6;
}

.consult-footer-note svg {
  width: 13px;
  height: 13px;
  vertical-align: -2px;
  margin-right: 4px;
  stroke: #d0a741;
  fill: none;
}

/* ── Confirmation Toast ── */
.consult-toast {
  position: fixed;
  top: 32px;
  right: 32px;
  z-index: 10001;
  background: #0e100f;
  color: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  transform: translateX(120%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.consult-toast.show {
  transform: translateX(0);
}

.consult-toast-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d0a741, #b8912e);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.consult-toast-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
}

.consult-toast-body h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px;
}

.consult-toast-body p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.55;
}

.consult-toast-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.consult-toast-close:hover {
  color: #fff;
}

@media (max-width: 640px) {
  .consult-cards {
    grid-template-columns: 1fr;
  }

  .consult-modal {
    padding: 36px 24px 28px;
  }

  .consult-toast {
    right: 16px;
    left: 16px;
    width: auto;
    max-width: none;
  }
}
