/* ============================================================
   HOME.CSS — Kenith Enterprises
   Theme: Premium Heritage + Classic Modern
   ============================================================ */

/* ── 1. HERO ── */
.ke-hero { position: relative; min-height: 90vh; display: flex; align-items: center; padding-top: var(--header-height); background: #fff; overflow: hidden; }
.hero-bg { position: absolute; top: 0; right: 0; width: 50%; height: 100%; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, #fff 0%, transparent 100%); }
.hero-content { position: relative; z-index: 10; max-width: 600px; padding: 60px 0; }
.hero-content h1 { margin-bottom: 24px; }
.hero-content p { font-size: 1.15rem; color: var(--secondary); margin-bottom: 40px; }
.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }
@media (max-width: 1024px) {
  .hero-bg { width: 100%; opacity: 0.15; }
  .hero-bg::after { display: none; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-actions { justify-content: center; }
}

/* ── 2. CHAIRMAN MESSAGE ── */
.msg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.msg-image { position: relative; }
.msg-image img { border-radius: 4px; box-shadow: 20px 20px 0 var(--bg-soft); }
.msg-text blockquote { font-family: var(--font-heading); font-size: 1.8rem; color: var(--primary); line-height: 1.4; margin-bottom: 30px; font-style: italic; }
.msg-signature { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--accent); margin-top: 30px; }

/* ── 3. COMPANY LEGACY ── */
.legacy-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; }
.legacy-title h2 { margin-bottom: 20px; }
.legacy-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.legacy-content p { font-size: 1.05rem; }

/* ── 4. STATISTICS ── */
.stats-container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 60px 0; }
.stat-item { text-align: center; flex: 1; min-width: 200px; }
.stat-number { font-family: var(--font-heading); font-size: 3.5rem; color: var(--primary); margin-bottom: 10px; }
.stat-label { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent); }

/* ── 5. CORE SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }
.svc-card { background: #fff; padding: 50px 40px; border: 1px solid transparent; transition: var(--transition-fast); text-align: center; }
.svc-card:hover { border-color: var(--border-gold); box-shadow: 0 20px 40px rgba(0,0,0,0.04); transform: translateY(-5px); }
.svc-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 25px; font-family: var(--font-heading); }
.svc-card h3 { margin-bottom: 15px; font-size: 1.4rem; }

/* ── 6. WHY CHOOSE US & 7. INDUSTRIES ── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.split-content { padding: 120px 80px; display: flex; flex-direction: column; justify-content: center; }
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.ind-list { list-style: none; margin-top: 30px; }
.ind-list li { padding: 15px 0; border-bottom: 1px solid var(--border-color); font-family: var(--font-heading); font-size: 1.2rem; color: var(--primary); display: flex; justify-content: space-between; }
.ind-list li::after { content: '→'; color: var(--accent); }

/* ── 8. HERITAGE TIMELINE ── */
.heritage-timeline { display: flex; flex-direction: column; gap: 0; margin-top: 60px; border-left: 2px solid var(--accent); padding-left: 40px; margin-left: 20px; }
.timeline-item { position: relative; margin-bottom: 60px; }
.timeline-item::before { content: ''; position: absolute; left: -49px; top: 0; width: 16px; height: 16px; background: var(--bg-main); border: 2px solid var(--accent); border-radius: 50%; }
.tl-year { font-family: var(--font-heading); font-size: 2rem; color: var(--accent); margin-bottom: 10px; line-height: 1; }
.tl-content h4 { margin-bottom: 10px; font-size: 1.3rem; }

/* ── 9. OPERATIONAL EXCELLENCE ── */
.op-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; }
.op-box { background: #fff; padding: 40px; border-top: 3px solid var(--primary); }

/* ── 10. SUCCESS & 11. TESTIMONIALS ── */
.test-slider { text-align: center; max-width: 800px; margin: 0 auto; }
.test-quote { font-family: var(--font-heading); font-size: 1.8rem; font-style: italic; color: var(--primary); line-height: 1.5; margin-bottom: 40px; }
.test-author { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); }

/* ── 12. FAQs ── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 60px; }
.faq-box { border-bottom: 1px solid var(--border-color); padding-bottom: 25px; }
.faq-box h4 { font-size: 1.15rem; margin-bottom: 15px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .msg-grid, .legacy-grid, .legacy-content, .services-grid, .split-section, .op-grid, .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .split-content { padding: 60px 24px; }
  .split-image { height: 400px; }
  .heritage-timeline { margin-left: 10px; }
}
