/* ============================================================
   HOME.CSS — Cal-Valley Forklift Landing Page
   ============================================================ */

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-image: url('../img/hero-warehouse.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.88) 0%, rgba(30,58,95,0.72) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}
.hero-tagline::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--yellow); }
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 580px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.hero-badge::before { content: '✓'; color: var(--yellow); font-weight: 800; }

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  animation: bounce 2s infinite;
}
.hero-scroll svg { color: var(--yellow); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 640px) {
  .hero { min-height: 85vh; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
}

/* ── STATS BAR ──────────────────────────────────────────── */
.stats-bar { background: var(--yellow); padding: 2rem 0; }
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-item { text-align: center; padding: 0.5rem; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(13,27,42,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}
@media (max-width: 640px) {
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
}
/* ── SERVICES OVERVIEW ──────────────────────────────────── */
.services-section {
  background: var(--gray-50);
  padding: 5rem 0;
}

.services-section .section-heading {
  margin-bottom: 5.0rem;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
}

.service-card {
  flex: 0 0 300px;
  width: 300px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-top-color: var(--yellow);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--yellow-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.service-icon svg { color: var(--navy); }
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.65rem; }
.service-card p  { font-size: 0.875rem; margin-bottom: 1.25rem; line-height: 1.6; }

@media (max-width: 768px) {
  .service-card { flex: 0 0 100%; width: 100%; }
}

/* ── WHY CHOOSE US ──────────────────────────────────────── */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-features { display: flex; flex-direction: column; gap: 1.5rem; }
.why-feature { display: flex; gap: 1rem; align-items: flex-start; }
.why-feature-icon {
  width: 48px; height: 48px;
  background: var(--yellow-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-feature-icon svg { color: var(--navy); }
.why-feature-text h4 { margin-bottom: 0.3rem; color: var(--navy); }
.why-feature-text p  { font-size: 0.875rem; }

.guarantee-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.guarantee-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: rgba(245,158,11,0.12);
  border-radius: 50%;
}
.guarantee-badge {
  width: 80px; height: 80px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.guarantee-badge svg { color: var(--navy); }
.guarantee-card h3   { color: var(--white); font-size: 1.5rem; margin-bottom: 0.75rem; }
.guarantee-card p    { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.guarantee-days {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin: 1rem 0 0.25rem;
}
.guarantee-days-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ── BRANDS ─────────────────────────────────────────────── */
.brands-section { background: var(--gray-50); }
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}
.brand-badge {
  padding: 0.6rem 1.5rem;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.brand-badge:hover {
  border-color: var(--yellow);
  background: var(--yellow-light);
  transform: translateY(-2px);
}

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-left: 4px solid var(--yellow);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 4rem;
  color: var(--yellow);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars    { margin-bottom: 0.75rem; }
.testimonial-text     { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author   { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar   {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name    { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.testimonial-company { font-size: 0.78rem; color: var(--gray-400); }

@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ── CTA SECTION ────────────────────────────────────────── */
.cta-section {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2  { color: var(--white); max-width: 700px; margin: 0 auto 1rem; }
.cta-section p   { color: rgba(255,255,255,0.65); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-phone {
  display: block;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-top: 1.5rem;
  text-decoration: none;
}
.cta-phone:hover { color: var(--yellow-dark); }

/* ── CONTACT SECTION ────────────────────────────────────── */
.contact-section { background: var(--gray-50); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}
.contact-card-icon {
  width: 44px; height: 44px;
  background: var(--yellow-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { color: var(--navy); }
.contact-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 0.2rem;
}
.contact-card-value { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.contact-card-value a { color: var(--navy); transition: color var(--transition); }
.contact-card-value a:hover { color: var(--yellow-dark); }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.contact-form-card h3 { margin-bottom: 1.5rem; }
.contact-form-success { text-align: center; padding: 2rem; }
.contact-form-success svg { color: var(--green); margin: 0 auto 1rem; }

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
