/* ==========================================================
   🌐 CHICAIM BRAND FONT SYSTEM + HOMEPAGE TYPOGRAPHY
   Fonts from assets/fonts.css
   ========================================================== */

/* ----------------------------------------------------------
   Google Fonts Import
   ---------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500&family=Space+Grotesk:wght@400;500;600&family=Urbanist:wght@500;600;700&display=swap');

/* ----------------------------------------------------------
   Global Font Rendering Optimization
   ---------------------------------------------------------- */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ----------------------------------------------------------
   Base Typography
   ---------------------------------------------------------- */
body, p, li, span, input, textarea, select {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #111;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #000;
}

.tagline, .caption, .hero-caption {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

button, .button, .cta-button, nav a {
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

footer, .footer-widget, .site-info {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
}

.hero-title, .brand-slogan {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
}

/* ==========================================================
   🏠 HOMEPAGE LAYOUT STYLES
   ========================================================== */

/* 🌐 HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  background: linear-gradient(135deg, #dd01b8 0%, #00308f 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
}

.hero h1 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.cta-button {
  background: #fff;
  color: #00308f;
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #00308f;
  color: #fff;
  transform: translateY(-2px);
}

/* ✅ PROCESS SECTION */
.process {
  padding: 100px 20px;
  background: #fff;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.process h2 {
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 20px;
}

.process p {
  font-size: 16px;
  color: #444;
  max-width: 700px;
  margin: 0 auto 50px;
}

.process-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0;
}

.process-list li {
  background: #f9fafc;
  padding: 28px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-align: left;
}

.process-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.process-icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

.process-list strong {
  color: #00308f;
}

/* 💡 WHY CHOOSE US */
.why-choose-us {
  background: #f5f7fb;
  padding: 100px 20px;
  text-align: center;
}

.why-choose-us h2 {
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 60px;
}

.why-choose-us-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.choose-item {
  background: #fff;
  padding: 30px 24px;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: left;
}

.choose-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 48, 143, 0.1);
}

.choose-icon {
  font-size: 32px;
  color: #dd01b8;
  margin-bottom: 14px;
}

.choose-text h3 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 8px;
}

.choose-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* 🏢 INDUSTRIES */
.industries {
  padding: 100px 20px;
  background: #fff;
  text-align: center;
}

.industries h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}

.industries p {
  color: #444;
  margin-bottom: 40px;
}

.industries-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.industry-item {
  background: linear-gradient(135deg, #dd01b8, #00308f);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 16px; }
  .process h2, .why-choose-us h2, .industries h2 { font-size: 30px; }
}
