/* ============================================================
   HERO — Top contact bar + hero section with form
   ============================================================ */

/* --- Top contact bar --- */
.top-bar {
  background: var(--bg-dark);
  color: var(--text-secondary);
  font-size: var(--text-xs);
  padding: 10px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: var(--text-xs);
  transition: color var(--duration-fast);
}

.top-bar-item:hover { color: #fff; }
.top-bar-item svg { flex-shrink: 0; }

@media (max-width: 768px) {
  .top-bar { display: none; }
}


/* --- Hero section --- */
.hero {
  position: relative;
  background: var(--gradient-hero);
  overflow: hidden;
  padding: var(--space-3xl) 0;
}

/* Subtle radial glow accents */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Grid: text left + form card right */
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-3xl);
  align-items: center;
}


/* --- Hero text --- */
.hero-content { max-width: 580px; }

.hero h1 {
  font-size: var(--text-7xl);
  line-height: 1.05;
  color: #fff;
  margin-bottom: var(--space-lg);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-2xl);
  max-width: 480px;
  line-height: 1.75;
}


/* --- Hero stats row --- */
.hero-stats {
  display: flex;
  gap: var(--space-2xl);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}


/* --- Hero form card --- */
.hero-form-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.hero-form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-2xl);
  width: 100%;
  position: relative;
}

/* Blue accent line on top */
.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.hero-form-card h3 {
  font-size: var(--text-xl);
  color: var(--text-dark);
  margin-bottom: 4px;
}

.hero-form-card > p {
  font-size: var(--text-sm);
  color: var(--text-dark-secondary);
  margin-bottom: var(--space-lg);
}

.hero-form .form-input {
  background: var(--bg-gray);
  border: 1.5px solid var(--border-color);
}

.hero-form .form-input:focus {
  background: #fff;
  border-color: var(--primary);
}


/* --- Decorative elements (hidden) --- */
.hero-deco { display: none; }
.wave-divider { display: none; }


/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero h1 { font-size: var(--text-5xl); }
  .hero .container { grid-template-columns: 1fr 360px; gap: var(--space-2xl); }
}

@media (max-width: 768px) {
  .hero { padding: var(--space-2xl) 0; }

  .hero .container {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .hero-content { max-width: 100%; }
  .hero h1 { font-size: var(--text-3xl); text-align: center; }
  .hero-desc { text-align: center; margin-left: auto; margin-right: auto; font-size: var(--text-base); }
  .hero-stats { justify-content: center; gap: var(--space-lg); flex-wrap: wrap; }
  .hero-stat-number { font-size: var(--text-2xl); }
  .hero-form-card { max-width: 100%; margin: 0 auto; padding: var(--space-xl); }
  .hero-form-card h3 { font-size: var(--text-lg); }
  .hero::before, .hero::after { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: var(--space-xl) 0; }
  .hero h1 { font-size: var(--text-2xl); }
  .hero-desc { font-size: var(--text-sm); }
  .hero-stats { gap: var(--space-md); }
  .hero-stat-number { font-size: var(--text-xl); }
  .hero-stat-label { font-size: var(--text-xs); }
  .hero-form-card { padding: var(--space-lg); }
  .hero-form .form-input { padding: 11px 14px; font-size: var(--text-sm); }
}

@media (max-width: 360px) {
  .hero h1 { font-size: var(--text-xl); }
  .hero-stats { flex-direction: row; justify-content: space-between; }
}
