/* ── Wrapper & Container ── */
.iconhome-wrapper {
  background: #eef0f5;
  padding: 70px 20px;
}
.iconhome-container {
  max-width: 1100px;
  margin: auto;
}

/* ── Title Block ── */
.iconhome-title-wrap {
  text-align: center;
  margin-bottom: 44px;
}
.iconhome-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  color: #0e1f3b;
  margin-bottom: 16px;
}
.iconhome-divider {
  width: 60px;
  height: 3px;
  background: #c99a11;
  border-radius: 10px;
  margin: auto;
}

/* ── Grid ── */
.iconhome-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

/* ── Card ── */
.iconhome-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}
.iconhome-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px -4px rgba(201, 154, 17, 0.25);
}

/* ── Icon Box ── */
.iconhome-icon-box {
  width: 52px;
  min-width: 52px;
  height: 52px;
  border: 2px solid #c99a11;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.25s ease;
}
.iconhome-card:hover .iconhome-icon-box {
  background-color: rgba(201, 154, 17, 0.08);
}

/* ── Icons — force gold color on both FA and SVG ── */
.iconhome-icon-box i {
  font-size: 22px !important;
  color: #c99a11 !important;
  line-height: 1;
}
.iconhome-icon-box svg {
  width: 22px !important;
  height: 22px !important;
  fill: #c99a11 !important;
  color: #c99a11 !important;
}
/* Override any Elementor default icon color */
.iconhome-icon-box .eicon,
.iconhome-icon-box [class*="fa-"],
.iconhome-icon-box [class^="fa"] {
  color: #c99a11 !important;
}

/* ── Card Content ── */
.iconhome-content {
  flex: 1;
}
.iconhome-card-title {
  font-size: 16px;
  line-height: 1.35;
  color: #c99a11;
  font-weight: 700;
  margin: 2px 0 10px;
}
.iconhome-card-description {
  font-size: 14px;
  line-height: 1.65;
  color: #3a3a3a;
  margin: 0;
}

/* ── CTA Bar ── */
.iconhome-cta {
  background: #fff;
  border: 1px solid rgba(201, 154, 17, 0.25);
  border-radius: 16px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.iconhome-cta-left h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0e1f3b;
  margin: 0 0 6px;
}
.iconhome-cta-left p {
  font-size: 14px;
  color: #777;
  margin: 0;
}

/* ── Button ── */
.iconhome-button {
  background: #c99a11;
  color: #fff !important;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}
.iconhome-button:hover {
  background: #b48910;
  transform: translateY(-2px);
  color: #fff !important;
}
.iconhome-button span {
  font-size: 16px;
  transition: transform 0.2s ease;
}
.iconhome-button:hover span {
  transform: translateX(3px);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .iconhome-grid { grid-template-columns: 1fr; }
  .iconhome-title { font-size: 28px; }
}
@media (max-width: 767px) {
  .iconhome-card { flex-direction: column; }
  .iconhome-title { font-size: 22px; }
  .iconhome-cta { flex-direction: column; text-align: center; gap: 20px; }
}
