/* ✅ Global Layout */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-title p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* ✅ Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 60px 0;
}

.hero-left {
  flex: 1;
}

.hero-right {
  flex: 1;
}

.hero-left h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.hero-left .lead {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.hero-cta .btn {
  display: inline-block;
  margin-right: 10px;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn.primary {
  background: #D4AF37 !important;
  color: #fff !important;
  box-shadow: 0 12px 30px rgba(212,175,55,0.12) !important;
}

.btn.ghost,
.btn {
  background: transparent;
  color: #333;
  border: 1px solid #ddd;
}

/* ✅ Fast Facts Hero Card */
.hero-card {
  background: linear-gradient(180deg, #fff, #FCFBF9);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(18, 18, 18, 0.06);
  border: 1px solid #f0eae0;
}

/* ✅ Feature Cards */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.features .card {
  flex: 1 1 calc(33.333% - 20px);
  background: #FAF9F7;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid #efe9db;
  box-shadow: 0 10px 30px rgba(26, 26, 26, 0.04);
  text-align: center;
}

.card .ico {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(180deg, #fff, #f7f5ef);
  border: 1px solid #efe7d9;
}

/* ✅ Stats Boxes */
.stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.stats .stat {
  background: #fff;
  border-radius: 12px;
  padding: 18px 22px;
  border: 1px solid #f1ebe0;
  text-align: center;
  min-width: 160px;
}

.stat .num {
  font-size: 36px;
  font-weight: bold;
}

.stat .lbl {
  color: #555;
}

/* ✅ CTA Section */
.cta-card {
  background: linear-gradient(180deg, #fff, #FCFBF9);
  border: 1px solid #efe7d9;
  box-shadow: 0 18px 40px rgba(23, 23, 23, 0.04);
  border-radius: 16px;
  padding: 28px;
  max-width: 920px;
  margin: 0 auto;
}

/* ✅ Mission & Vision Boxes */
.mission-box,
.vision-box {
  background: #FAF9F7;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #efe9db;
}

/* ✅ Responsive Fix */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }
  .features .card {
    flex: 1 1 100%;
  }
  .stats {
    flex-direction: column;
  }
}

/* ✅ ✅ FULL-WIDTH FIX for About Page — Swift FSE */
.page-id-210 .wp-site-blocks,
.page-id-210 .entry-content,
.page-id-210 .wp-block-group,
.page-id-210 .elementor,
.page-id-210 .elementor-section,
.page-id-210 .elementor-container,
.page-id-210 .site-content,
.page-id-210 .content-area,
.page-id-210 .site-main,
.page-id-210 .container,
.page-id-210 .wrap {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ✅ Header & Footer Fixes */
.page-id-210 header,
.page-id-210 .site-header,
.page-id-210 .site-header-inner,
.page-id-210 .header {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.page-id-210 footer,
.page-id-210 .site-footer,
.page-id-210 .footer {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 auto !important;
}

.page-id-210 .site-header .container,
.page-id-210 .site-footer .container {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.page-id-210 .site-header,
.page-id-210 .site-footer {
  background: #ffffff !important;
  box-shadow: none !important;
}
