/* Trust Step — Light Luxury Theme (White + Soft Gold) */

html { scroll-behavior: smooth; }
body {
  overflow-x: hidden;
  background: #fdfcf8;
  color: #1a1a1f;
}

/* Hero soft light background */
.hero-bg {
  background-image:
    radial-gradient(ellipse at 75% 15%, rgba(212,175,80,0.22), transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(245,232,200,0.6), transparent 60%),
    linear-gradient(135deg, #fdfcf8 0%, #faf6ec 55%, #fdfcf8 100%);
  background-size: cover;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(180,140,60,0.12) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.4;
}

/* Soft gold decorative rings */
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes spin-reverse { to { transform: rotate(-360deg); } }
.animate-spin-slow { animation: spin-slow 30s linear infinite; }
.animate-spin-reverse { animation: spin-reverse 40s linear infinite; }

/* Service cards — clean ivory with soft gold hover */
.service-card {
  background: #ffffff;
  border: 1px solid rgba(201,154,45,0.15);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(60,40,10,0.04);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(212,175,80,0.10), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,80,0.6);
  box-shadow: 0 20px 40px -20px rgba(180,140,60,0.25), 0 2px 8px rgba(60,40,10,0.06);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 1rem;
  background: linear-gradient(135deg, #faf0d4, #f0dda0);
  border: 1px solid rgba(212,175,80,0.35);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: #b38a22;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

/* Job cards */
.job-card {
  background: #ffffff;
  border: 1px solid rgba(201,154,45,0.15);
  border-radius: 1rem;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(60,40,10,0.03);
}
.job-card:hover {
  background: linear-gradient(135deg, #fdf7e3, #faf0d4);
  border-color: rgba(212,175,80,0.5);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -12px rgba(180,140,60,0.22);
}
.job-emoji { font-size: 2.25rem; display: block; margin-bottom: 0.5rem; }
.job-title { font-size: 0.85rem; font-weight: 600; color: #3a3325; }

/* Process */
.process-step {
  background: #ffffff;
  border: 1px solid rgba(201,154,45,0.15);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  text-align: left;
  position: relative;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(60,40,10,0.04);
}
.process-step:hover { border-color: rgba(212,175,80,0.5); }
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #d4af50, #a77d1f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  opacity: 0.95;
}

/* Form inputs — light */
.form-input {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(201,154,45,0.25);
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  color: #1a1a1f;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.form-input:focus {
  outline: none;
  border-color: #d4af50;
  background: #fffdf8;
  box-shadow: 0 0 0 3px rgba(212,175,80,0.18);
}
.form-input::placeholder { color: rgba(26,26,31,0.35); }
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%23c99a2d' stroke-width='2' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
  padding-right: 2.75rem;
}
select.form-input option { background: #fff; color: #1a1a1f; }

/* Nav scroll state — light */
#nav.scrolled {
  background: rgba(253,252,248,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,154,45,0.18);
  box-shadow: 0 2px 20px rgba(60,40,10,0.06);
}

/* Language button */
.lang-btn.active { background: linear-gradient(135deg, #d4af50, #b38a22); color: #fff; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Fine gold divider */
.gold-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,80,0.5), transparent);
}
