/* ============================================================
   GURUDEV TRADERS — Home Page Styles
   css/home.css
   ============================================================ */

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

/* Textured background pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(107,62,31,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 10% 90%, rgba(107,62,31,0.05) 0%, transparent 60%);
}

/* Decorative diagonal stripe */
.hero-stripe {
  position: absolute;
  top: 0;
  right: -5%;
  width: 45%;
  height: 100%;
  background: linear-gradient(160deg, rgba(107,62,31,0.06) 0%, transparent 60%);
  transform: skewX(-8deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-since {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-since::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--warm-dark);
  margin-bottom: 8px;
}

.hero-title-sub {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  line-height: 1.2;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 44px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Decorative side element */
.hero-side {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-badge {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(107,62,31,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-badge::before {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  border: 1px solid rgba(107,62,31,0.14);
}

.hero-badge-inner {
  text-align: center;
  padding: 24px;
}

.hero-badge-year {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--warm-dark);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-badge-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 4px;
}

.hero-badge-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-top: 10px;
  border-top: 1px solid rgba(107,62,31,0.18);
  padding-top: 10px;
}

/* ── Stats bar ───────────────────────────────────────────────────── */
.stats-bar {
  background: var(--warm-dark);
  padding: 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid rgba(255,255,255,0.08);
}

.stat-cell {
  padding: 40px 36px;
  border-right: 1px solid rgba(253,248,242,0.08);
  text-align: center;
}

.stat-cell:last-child { border-right: none; }

.stat-cell .stat-num { color: var(--ivory); }
.stat-cell .stat-num em { color: var(--gold-light); }
.stat-cell .stat-label { color: rgba(253,248,242,0.45); }

/* ── Industries section ──────────────────────────────────────────── */
.industries-section {
  background: var(--ivory);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.industry-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px 36px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.industry-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);
  transform-origin: left;
  transition: transform var(--transition);
}

.industry-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(107,62,31,0.25); }
.industry-card:hover::before { transform: scaleX(1); }

.industry-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.7;
}

.industry-name {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--warm-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.industry-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 20px;
}

.industry-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.industry-link:hover { gap: 10px; }

/* ── Why-us section ──────────────────────────────────────────────── */
.why-section {
  background: var(--cream);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-list { margin-top: 8px; }

.why-right {
  padding-top: 24px;
}

.why-quote-block {
  background: var(--warm-dark);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}

.why-quote-block::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 160px;
  color: rgba(253,248,242,0.05);
  line-height: 1;
  pointer-events: none;
}

.why-quote-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.65;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.why-quote-author {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ── CTA section ─────────────────────────────────────────────────── */
.cta-section {
  background: var(--warm-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(107,62,31,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section .section-title { color: var(--ivory); position: relative; }
.cta-section .section-title em { color: var(--gold-light); }
.cta-section .section-body { color: rgba(253,248,242,0.65); margin: 0 auto 40px; position: relative; }

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

/* Responsive home */
@media (max-width: 1024px) {
  .hero-side { display: none; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
}

@media (max-width: 640px) {
  .hero { min-height: 80vh; }
  .industries-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
