/* FullCircle Lead Capture Forms */
.fc-lead-forms-wrap {
  max-width: 90%;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #fff;
  padding: 6px;
  border-top: 4px solid #fad20c;
  box-shadow: 0 12px 40px rgba(0,0,0,0.28);
}

/* Tab bar */
.fc-tab-bar {
  display: flex;
  gap: 0;
  background: #000;
  border-radius: 0;
  overflow: hidden;
}
.fc-tab {
  flex: 1;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.65);
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-bottom: 3px solid transparent;
}
.fc-tab:hover { background: rgba(255,255,255,0.08); color: #fff; }
.fc-tab-active {
  background: #fad20c !important;
  color: #000 !important;
  border-bottom-color: #fad20c !important;
}
.fc-tab-seller.fc-tab-active { color: #000 !important; }

/* Panel */
.fc-panel { display: none; }
.fc-panel-active { display: block; }

/* Card */
.fc-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

/* Hero band */
.fc-hero-band { padding: 20px 24px 18px; }
.fc-band-blue { background: #000; }
.fc-band-green { background: #111; }
.fc-hero-band h2 {
  color: #fad20c;
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 4px;
  line-height: 1.3;
}
.fc-band-green h2 { color: #fad20c; }
.fc-hero-band p {
  color: #cccccc;
  font-size: 13px;
  margin: 0;
  line-height: 1.4;
}
.fc-band-green p { color: #cccccc; }

/* Form body — 2-column layout */
.fc-form-body {
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 36px;
  align-items: start;
}
.fc-col-left {
  border-right: 1px solid #eee;
  padding-right: 36px;
}
.fc-col-right {
  display: flex;
  flex-direction: column;
}

/* Section label */
.fc-section-label {
  font-size: 11px;
  font-weight: 600;
  color: #666;
  letter-spacing: .05em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* Toggle buttons */
.fc-toggle-group {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.fc-toggle-btn {
  flex: 1;
  padding: 9px 6px;
  font-size: 13px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: transparent;
  color: #555;
  cursor: pointer;
  transition: all .15s;
}
.fc-toggle-btn.fc-sel {
  background: rgba(250,210,12,0.12);
  border-color: #fad20c;
  color: #000;
  font-weight: 600;
}

/* Field rows */
.fc-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.fc-field-row.fc-full { grid-template-columns: 1fr; }
.fc-field { display: flex; flex-direction: column; }
.fc-field-label {
  font-size: 11px;
  color: #666;
  margin-bottom: 4px;
  letter-spacing: .03em;
}
.fc-form-body input[type=text],
.fc-form-body input[type=tel],
.fc-form-body input[type=email],
.fc-select {
  width: 100%;
  font-size: 13px;
  padding: 0 10px;
  height: 38px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #f9f9f9;
  color: #333;
  box-sizing: border-box;
}
.fc-form-body input:focus,
.fc-select:focus {
  outline: none;
  border-color: #fad20c;
  background: #fff;
}
.fc-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: #f9f9f9;
  padding-right: 28px;
}

/* Divider */
.fc-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 14px 0;
}

/* Pills */
.fc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.fc-pill {
  padding: 6px 13px;
  font-size: 12px;
  border: 1px solid #ddd;
  border-radius: 0;
  cursor: pointer;
  background: transparent;
  color: #555;
  transition: all .15s;
}
.fc-pill.fc-sel {
  background: rgba(250,210,12,0.12);
  border-color: #fad20c;
  color: #000;
  font-weight: 600;
}

/* Submit buttons */
.fc-submit-btn {
  width: 100%;
  padding: 13px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 0;
  cursor: pointer;
  margin-top: 14px;
  transition: opacity .15s;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.fc-submit-btn:hover { opacity: .9; }
.fc-submit-blue { background: #fad20c; color: #000; }
.fc-submit-green { background: #000; color: #fad20c; border: 2px solid #fad20c; }
.fc-submit-btn:disabled { opacity: .6; cursor: wait; }

/* Trust row */
.fc-trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.fc-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #777;
}
.fc-stars { color: #fad20c; font-size: 11px; letter-spacing: 1px; }
.fc-check-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fad20c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fc-check-dot::after {
  content: '';
  width: 5px;
  height: 3px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg) translate(0.5px, -0.5px);
  display: block;
}

/* Success state */
.fc-success-state { display: none; text-align: center; padding: 36px 24px; }
.fc-success-state.fc-show { display: block; }
.fc-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-success-icon::after {
  content: '';
  width: 22px;
  height: 13px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg) translate(1px, -2px);
  display: block;
}
.fc-success-blue { background: #fad20c; }
.fc-success-green { background: #000; }
.fc-success-title {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin: 0 0 8px;
}
.fc-success-sub { font-size: 13px; color: #666; margin: 0; line-height: 1.5; }

/* Error message */
.fc-error-msg {
  font-size: 12px;
  color: #c0392b;
  margin-top: 8px;
  display: none;
}
.fc-error-msg.fc-show { display: block; }

/* Responsive */
@media (max-width: 640px) {
  .fc-form-body {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .fc-col-left {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .fc-field-row { grid-template-columns: 1fr; }
  .fc-toggle-group { flex-direction: column; }
  .fc-trust-row { gap: 8px; }
}

/* ---- Agent Listings Showcase ---- */
.fc-agent-listings {
  max-width: 1200px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.fc-listings-header { text-align: center; margin-bottom: 32px; }
.fc-listings-title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0 0 8px;
}
.fc-listings-sub { font-size: 15px; color: #666; margin: 0; }

.fc-group-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.fc-label-sale { color: #1B4F8A; }
.fc-label-lease { color: #0F6E56; }
.fc-label-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.fc-dot-sale { background: #1B4F8A; }
.fc-dot-lease { background: #0F6E56; }

.fc-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
button.fc-tab.fc-tab-seller {
  background: #000;
}
.fc-card {
  display: block;
  text-decoration: none;
  color: inherit;
  /* border-radius: 10px; */
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  transition: transform .18s, box-shadow .18s;
  background: #fff;
}
.fc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.14);
}
.fc-card-img {
  position: relative;
  height: 200px;
  background: #ddd;
  overflow: hidden;
}
.fc-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.fc-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 15px; color: #fff;
}
.fc-placeholder-sale { background: #1B4F8A; }
.fc-placeholder-lease { background: #0F6E56; }
.fc-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px; color: #fff;
}
.fc-badge-sale { background: #1B4F8A; }
.fc-badge-lease { background: #0F6E56; }
.fc-card-body { padding: 16px; }
.fc-card-price {
  font-size: 18px; font-weight: 700; color: #1B4F8A; margin-bottom: 4px;
}
.fc-price-lease { color: #0F6E56; }
.fc-card-address {
  font-size: 13px; color: #333; margin-bottom: 8px; line-height: 1.4;
}
.fc-card-meta {
  display: flex; gap: 12px; flex-wrap: wrap;
  font-size: 12px; color: #777;
}
.fc-card-meta span { display: flex; align-items: center; gap: 3px; }

.fc-view-all { margin-top: 20px; text-align: right; }
.fc-view-all-btn {
  font-size: 13px; font-weight: 600;
  text-decoration: none; padding: 8px 18px;
  border-radius: 6px; transition: opacity .15s;
  display: inline-block;
}
.fc-view-all-btn:hover { opacity: .85; text-decoration: none; }
.fc-btn-sale { background: #1B4F8A; color: #fff; }
.fc-btn-lease { background: #0F6E56; color: #fff; }
.fc-no-listings { font-size: 14px; color: #666; grid-column: 1/-1; }

@media (max-width: 900px) {
  .fc-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .fc-cards-grid { grid-template-columns: 1fr; }
  .fc-listings-title { font-size: 22px; }
}
