/*
Immigration & Visa Consultants (Hyderabad) landing page — supplemental styles.
Loaded together with assets/css/education-finance.css, whose generic .efp-*
layout primitives (hero, quick-grid, section headings, table, timeline step,
accordion, disclaimer box, CTA band, lead form) are reused here as-is. This
file only adds the few components that page doesn't already cover.
*/

.ivh-destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .ivh-destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .ivh-destination-grid {
    grid-template-columns: 1fr;
  }
}

.ivh-destination-card {
  background: var(--efp-card-bg, #fff);
  border: 1px solid var(--efp-border, #eeeff4);
  border-radius: var(--efp-radius, 10px);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.ivh-destination-card .flag {
  width: 40px;
  height: 28px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 14px;
}
.ivh-destination-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.ivh-destination-card p {
  color: var(--text);
  font-size: 14.5px;
  margin-bottom: 16px;
  flex-grow: 1;
}

.ivh-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .ivh-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .ivh-process-grid {
    grid-template-columns: 1fr;
  }
}

.ivh-service-block {
  border: 1px solid var(--efp-border, #eeeff4);
  border-radius: var(--efp-radius, 10px);
  padding: 26px;
  margin-bottom: 20px;
}
.ivh-service-block h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  margin-bottom: 10px;
}
.ivh-service-block h3 i {
  color: var(--theme);
}
.ivh-service-block p {
  color: var(--text);
  margin: 0 0 10px;
}
.ivh-service-block p:last-child {
  margin-bottom: 0;
}
.ivh-service-block ul {
  margin: 0 0 10px;
  padding-left: 0;
}
.ivh-service-block li {
  list-style: none;
  padding-left: 22px;
  position: relative;
  color: var(--text);
  font-size: 14.5px;
  margin-bottom: 6px;
}
.ivh-service-block li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  color: var(--efp-green, #1a7f37);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 12px;
}

.ivh-neighbourhood-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.ivh-neighbourhood-list span {
  background: var(--efp-soft-bg, #f5f5f7);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--header);
}

.ivh-profile-tool {
  background: var(--efp-card-bg, #fff);
  border-radius: var(--efp-radius, 10px);
  box-shadow: var(---box-shadow);
  padding: 32px;
}
@media (max-width: 575px) {
  .ivh-profile-tool {
    padding: 22px 18px;
  }
}
.ivh-profile-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.ivh-profile-progress strong {
  font-size: 16px;
  color: var(--header);
}
.ivh-profile-bar {
  flex: 1 1 220px;
  height: 10px;
  border-radius: 30px;
  background: var(--efp-border, #eeeff4);
  overflow: hidden;
}
.ivh-profile-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--theme);
  transition: width 0.3s ease-in-out;
}
.ivh-profile-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 22px;
}
@media (max-width: 575px) {
  .ivh-profile-list {
    grid-template-columns: 1fr;
  }
}
.ivh-profile-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ivh-profile-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--theme);
  flex-shrink: 0;
}
.ivh-profile-item label {
  font-size: 14.5px;
  color: var(--header);
}
.ivh-profile-reset {
  margin-top: 22px;
}
