/* ============================================================
  Obixe— vendors.css
   Vendor Onboarding & Listing Page Styles
   Extends: css/style.css
   ============================================================ */

/* ============================================================
   1. VENDOR HERO
   ============================================================ */
.vendor-hero {
  position: relative;
  background: var(--black);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

/* Geometric grid overlay */
.vh-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

/* Floating ambient orbs */
.vh-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.vh-orb-1 {
  width: 600px; height: 600px;
  top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(201,169,110,0.10) 0%, transparent 65%);
  animation: orbFloat 10s ease-in-out infinite;
}
.vh-orb-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -80px;
  background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 65%);
  animation: orbFloat 14s ease-in-out infinite reverse;
}
.vh-orb-3 {
  width: 200px; height: 200px;
  top: 40%; left: 35%;
  background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%);
  animation: orbFloat 8s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.06); }
}

/* Min-height helper */
.min-vh-content { min-height: calc(100vh - 220px); }

/* Eyebrow */
.vh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.vh-eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(201,169,110,0.25);
  animation: dotPulse 2.2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(201,169,110,0.25); }
  50%       { box-shadow: 0 0 0 8px rgba(201,169,110,0.08); }
}

/* Hero title */
.vh-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
  animation: fadeInUp 0.9s ease 0.35s both;
}
.vh-title em { font-style: italic; color: var(--gold-light); }

/* Subtitle */
.vh-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.62);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 32px;
  animation: fadeInUp 0.9s ease 0.5s both;
}

/* Trust badges */
.vh-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
  animation: fadeInUp 0.9s ease 0.65s both;
}
.vh-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.vh-trust-item i { color: var(--gold); font-size: 0.9rem; }

/* CTA row */
.vh-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeInUp 0.9s ease 0.8s both;
}
.vh-btn-primary { padding: 18px 36px !important; font-size: 0.88rem !important; }
.vh-btn-outline {
  padding: 17px 34px !important;
  font-size: 0.88rem !important;
  color: rgba(255,255,255,0.85) !important;
  border-color: rgba(255,255,255,0.25) !important;
}
.vh-btn-outline:hover {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.6) !important;
  color: var(--white) !important;
}

/* ── Dashboard Mock ── */
.vh-dashboard-mock {
  background: var(--white);
  border-radius: 20px;
  width: 380px;
  padding: 0 0 20px;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.08);
  animation: fadeInUp 1s ease 0.6s both, floatDash 7s ease-in-out 1.5s infinite;
  position: relative;
}
@keyframes floatDash {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(0.4deg); }
  66%       { transform: translateY(-6px) rotate(-0.3deg); }
}

/* Top bar */
.vdm-topbar {
  background: var(--black-soft);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.vdm-dots {
  display: flex; gap: 5px;
}
.vdm-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.vdm-dots span:nth-child(1) { background: #ff5f57; }
.vdm-dots span:nth-child(2) { background: #febc2e; }
.vdm-dots span:nth-child(3) { background: #28c840; }
.vdm-title {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* Stats */
.vdm-stats {
  display: flex;
  gap: 0;
  padding: 20px 18px 16px;
  border-bottom: 1px solid var(--gray-200);
}
.vdm-stat {
  flex: 1;
  text-align: center;
  padding: 0 8px;
  border-right: 1px solid var(--gray-200);
}
.vdm-stat:last-child { border-right: none; }
.vdm-stat-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  margin-bottom: 3px;
}
.vdm-stat-label { font-size: 0.65rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 5px; }
.vdm-stat-delta {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--gray-400);
  padding: 2px 7px;
  border-radius: 20px;
  background: var(--gray-100);
}
.vdm-stat-delta.positive { color: #16a34a; background: #dcfce7; }
.vdm-stat-delta i { font-size: 0.6rem; }

/* Mini chart */
.vdm-chart-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  padding: 14px 18px 6px;
  font-weight: 600;
}
.vdm-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 80px;
  padding: 0 18px 10px;
  border-bottom: 1px solid var(--gray-200);
}
.vdm-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--gray-200);
  position: relative;
  transition: height 0.6s ease;
  cursor: default;
  min-height: 4px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2px;
}
.vdm-bar span {
  font-size: 0.55rem;
  color: var(--gray-400);
  font-weight: 600;
  position: absolute;
  bottom: -16px;
}
.vdm-bar.active { background: var(--black); }
.vdm-bar.active span { color: var(--black); }

/* Recent bookings */
.vdm-recent-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  padding: 16px 18px 8px;
  font-weight: 600;
}
.vdm-booking-list { padding: 0 18px; }
.vdm-booking {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}
.vdm-booking:last-child { border-bottom: none; }
.vdm-booking img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.vdm-booking-info { flex: 1; }
.vdm-booking-name { font-size: 0.78rem; font-weight: 600; color: var(--black); line-height: 1.2; }
.vdm-booking-sub  { font-size: 0.65rem; color: var(--gray-400); }
.vdm-booking-status {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
}
.vdm-booking-status.confirmed { background: #dcfce7; color: #16a34a; }
.vdm-booking-status.pending   { background: #fef9c3; color: #a16207; }

/* Responsive hero */
@media (max-width: 991px) {
  .vendor-hero { padding: 130px 0 70px; text-align: center; }
  .vh-subtitle { max-width: 100%; }
  .vh-trust-row, .vh-cta-row { justify-content: center; }
}
@media (max-width: 576px) {
  .vh-cta-row { flex-direction: column; }
  .vh-btn-primary, .vh-btn-outline { width: 100%; justify-content: center; }
}


/* ============================================================
   PLATFORM STATS STRIP
   ============================================================ */
.vp-stats-strip {
  background: var(--black-soft);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0;
}
.vp-stat {
  text-align: center;
  padding: 38px 20px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.col-md-3:last-child .vp-stat { border-right: none; }
.vp-stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.vp-stat-num em { color: var(--gold); font-style: normal; }
.vp-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-400);
}
@media (max-width: 767px) {
  .vp-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .col-md-3:last-child .vp-stat { border-bottom: none; }
}


/* ============================================================
   2. VENDOR CARDS
   ============================================================ */
.vendors-section { background: var(--ivory); }

.vendor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-luxury);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.vendor-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.vc-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.vc-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.vendor-card:hover .vc-img-wrap img { transform: scale(1.08); }

.vc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.3) 0%, transparent 60%);
}

/* Verified badge */
.vc-verified {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.vc-verified i { color: #60d394; }
.vc-verified-gold { background: var(--gold); color: var(--black) !important; }
.vc-verified-gold i { color: var(--black) !important; }

/* Card body */
.vc-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.vc-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.vc-location {
  font-size: 0.72rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 4px;
}
.vc-location i { color: var(--gold); font-size: 0.68rem; }
.vc-rating {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(201,169,110,0.1);
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid rgba(201,169,110,0.2);
}
.vc-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.2;
}
.vc-props {
  font-size: 0.78rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.vc-props i { color: var(--gold); }

/* Tags */
.vc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.vc-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  border: 1px solid var(--gray-200);
  padding: 4px 12px;
  border-radius: 60px;
  background: var(--gray-100);
}

/* CTA */
.vc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  border: 1.5px solid var(--black);
  border-radius: 60px;
  padding: 11px 20px;
  transition: all var(--transition-luxury);
  margin-top: auto;
  width: fit-content;
}
.vc-btn:hover { background: var(--black); color: var(--gold); }


/* ============================================================
   3. WHY JOIN
   ============================================================ */
.why-join-section { background: var(--white); }

.wj-card {
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all var(--transition-luxury);
}
.wj-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition-luxury);
  transform-origin: left;
}
.wj-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.wj-card:hover::before { transform: scaleX(1); }

.wj-icon-wrap {
  width: 58px; height: 58px;
  background: var(--black);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: all var(--transition-base);
}
.wj-icon-wrap i { font-size: 1.4rem; color: var(--gold); }
.wj-card:hover .wj-icon-wrap { background: var(--gold); }
.wj-card:hover .wj-icon-wrap i { color: var(--black); }

.wj-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--black);
  margin-bottom: 12px;
  font-weight: 500;
}
.wj-text {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}
.wj-arrow {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gray-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  transition: all var(--transition-base);
}
.wj-card:hover .wj-arrow {
  background: var(--black);
  border-color: var(--black);
  color: var(--gold);
  transform: translateX(4px);
}


/* ============================================================
   4. HOW IT WORKS
   ============================================================ */
.hiw-section { background: var(--black); }
.hiw-section .section-title { color: var(--white); }
.hiw-section .section-subtitle { color: var(--gray-400); }

.hiw-wrapper { position: relative; }

/* Horizontal connector */
.hiw-connector {
  display: none;
  position: absolute;
  top: 72px;
  left: calc(12.5% + 30px);
  right: calc(12.5% + 30px);
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(201,169,110,0.3) 15%,
    rgba(201,169,110,0.3) 85%,
    transparent
  );
  z-index: 0;
}
@media (min-width: 992px) { .hiw-connector { display: block; } }

.hiw-step {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  height: 100%;
  position: relative;
  z-index: 1;
  transition: all var(--transition-luxury);
  cursor: default;
}
.hiw-step:hover,
.hiw-step.active-step {
  border-color: rgba(201,169,110,0.35);
  background: rgba(201,169,110,0.05);
  transform: translateY(-8px);
}

.hiw-step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  margin-bottom: -12px;
  letter-spacing: -0.02em;
  transition: color var(--transition-base);
}
.hiw-step:hover .hiw-step-num,
.hiw-step.active-step .hiw-step-num { color: rgba(201,169,110,0.12); }

.hiw-step-icon {
  width: 64px; height: 64px;
  background: rgba(201,169,110,0.08);
  border: 1.5px solid rgba(201,169,110,0.2);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  transition: all var(--transition-base);
}
.hiw-step-icon i { font-size: 1.5rem; color: var(--gold); }
.hiw-step:hover .hiw-step-icon,
.hiw-step.active-step .hiw-step-icon {
  background: var(--gold);
  border-color: var(--gold);
}
.hiw-step:hover .hiw-step-icon i,
.hiw-step.active-step .hiw-step-icon i { color: var(--black); }

.hiw-step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 500;
}
.hiw-step-text {
  font-size: 0.86rem;
  color: var(--gray-400);
  line-height: 1.7;
}


/* ============================================================
   5. BENEFITS / FEATURES
   ============================================================ */
.benefits-section { background: var(--ivory); }

.benefit-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: all var(--transition-luxury);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition-luxury);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.benefit-card:hover::after { transform: scaleX(1); }

.bc-icon {
  width: 44px; height: 44px;
  background: var(--black);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  transition: background var(--transition-base);
}
.bc-icon i { font-size: 1.1rem; color: var(--gold); }
.benefit-card:hover .bc-icon { background: var(--gold); }
.benefit-card:hover .bc-icon i { color: var(--black); }

.bc-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 8px;
  font-weight: 500;
}
.bc-text {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}


/* ============================================================
   6. VENDOR REGISTRATION CTA
   ============================================================ */
.vendor-reg-cta {
  position: relative;
  background: var(--black);
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

/* Giant watermark text */
.vrc-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(7rem, 18vw, 22rem);
  font-weight: 700;
  color: rgba(255,255,255,0.022);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
  user-select: none;
}

.vrc-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 18px;
}
.vrc-title em { font-style: italic; color: var(--gold-light); }

.vrc-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* Checklist */
.vrc-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  justify-content: center;
  margin-bottom: 0;
}
.vrc-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.vrc-check i { color: var(--gold); font-size: 0.9rem; }

/* Social proof */
.vrc-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.vrc-avatars {
  display: flex;
}
.vrc-avatars img {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--black);
  margin-right: -10px;
  object-fit: cover;
  display: inline-block;
}
.vrc-avatars img:last-child { margin-right: 0; }
.vrc-social-proof span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.vrc-social-proof strong { color: var(--gold); }

@media (max-width: 576px) {
  .vendor-reg-cta { padding: 80px 0; }
  .vrc-checklist { flex-direction: column; align-items: center; }
}


/* ============================================================
   7. VENDOR TESTIMONIALS
   ============================================================ */
.vendor-testimonials-section { background: var(--white); }

.vt-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  height: 100%;
  transition: all var(--transition-luxury);
  position: relative;
  overflow: hidden;
}
.vt-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height var(--transition-luxury);
}
.vt-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.vt-card:hover::before { height: 100%; }

/* Dark variant */
.vt-card-dark {
  background: var(--black);
  border-color: var(--black);
}
.vt-card-dark .vt-quote { color: rgba(255,255,255,0.85) !important; }
.vt-card-dark .vt-name  { color: var(--white) !important; }
.vt-card-dark .vt-role  { color: var(--gray-400) !important; }
.vt-card-dark .vts-num  { color: var(--white) !important; }
.vt-card-dark .vts-label{ color: var(--gray-400) !important; }
.vt-card-dark .vt-stat-row { border-color: rgba(255,255,255,0.08) !important; }
.vt-card-dark .vt-mini-stat { border-color: rgba(255,255,255,0.08) !important; }

.vt-rating {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.vt-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--black-soft);
  line-height: 1.75;
  margin-bottom: 24px;
  border: none;
  padding: 0;
}
.vt-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.vt-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gray-200);
}
.vt-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
}
.vt-role { font-size: 0.72rem; color: var(--gray-400); }

.vt-stat-row {
  display: flex;
  border-top: 1px solid var(--gray-200);
  padding-top: 18px;
  gap: 0;
}
.vt-mini-stat {
  flex: 1;
  text-align: center;
  border-right: 1px solid var(--gray-200);
  padding: 0 10px;
}
.vt-mini-stat:last-child { border-right: none; }
.vts-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--black);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.vts-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
}


/* ============================================================
   8. CONTACT / INQUIRY SECTION
   ============================================================ */
.contact-section { background: var(--ivory); }

.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ci-icon {
  width: 44px; height: 44px;
  background: var(--black);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-icon i { font-size: 1rem; color: var(--gold); }
.ci-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 3px;
}
.ci-value {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--black);
}

/* Form card */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.cfc-header {
  padding: 28px 32px 24px;
  border-bottom: 1px solid var(--gray-200);
  background: var(--black);
}
.cfc-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 500;
}
.cfc-sub { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin: 0; }
.cfc-body { padding: 30px 32px 32px; }

/* Form fields */
.form-group-custom { margin-bottom: 0; }
.fgc-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 8px;
}
.fgc-input,
.fgc-select,
.fgc-textarea {
  width: 100%;
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--black);
  outline: none;
  transition: all var(--transition-base);
  appearance: none;
}
.fgc-input::placeholder, .fgc-textarea::placeholder { color: var(--gray-400); }
.fgc-input:focus,
.fgc-select:focus,
.fgc-textarea:focus {
  border-color: var(--black);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(10,10,10,0.06);
}
.fgc-textarea { resize: vertical; min-height: 120px; }

.fgc-select-wrap { position: relative; }
.fgc-select { cursor: pointer; }
.fgc-chevron {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  color: var(--gray-400);
  pointer-events: none;
}
.fgc-consent { padding: 4px 0; }

/* Submit button */
.fgc-submit-btn {
  width: 100%;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 60px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all var(--transition-luxury);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.fgc-submit-btn:hover { background: var(--gold); color: var(--black); }
.fgc-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }

/* Success state */
.fgc-success {
  text-align: center;
  padding: 40px 20px;
  animation: fadeInUp 0.5s ease both;
}
.fgc-success-icon {
  font-size: 3rem;
  color: #16a34a;
  margin-bottom: 16px;
}
.fgc-success h5 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--black);
  margin-bottom: 8px;
}
.fgc-success p { font-size: 0.9rem; color: var(--gray-600); }

@media (max-width: 767px) {
  .cfc-header { padding: 22px 22px 18px; }
  .cfc-body { padding: 22px 22px 24px; }
}
