/* IVS site additions: floating contact buttons, extra social icons, reviews and social sections */

.ivs-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ivs-float a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(5, 16, 54, 0.28);
  transition: transform 0.15s ease;
}
.ivs-float a:hover { transform: scale(1.06); }
.ivs-float a svg { width: 28px; height: 28px; fill: #fff; }
.ivs-float .ivs-wa { background: #25d366; }
.ivs-float .ivs-call { background: #3554d1; }
.ivs-float--left { right: auto; left: 18px; }
@media (max-width: 575px) {
  .ivs-float { right: 12px; bottom: 12px; gap: 10px; }
  .ivs-float--left { right: auto; left: 12px; }
  .ivs-float a { width: 50px; height: 50px; }
  .ivs-float a svg { width: 24px; height: 24px; }
}

.ivs-social-icon svg { width: 15px; height: 15px; fill: currentColor; vertical-align: middle; }

.ivs-reviews-widget:empty { display: none; }

.ivs-embed {
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}
.ivs-embed iframe { display: block; width: 100%; border: 0; }

.ivs-faq details {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 12px;
  background: #fff;
}
.ivs-faq summary { cursor: pointer; font-weight: 500; font-size: 17px; }
.ivs-faq details p { margin-top: 10px; font-size: 15px; }

.ivs-reviews-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 30px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(5, 16, 54, 0.06);
}
.ivs-reviews-card__logo svg { width: 56px; height: 56px; display: block; }
.ivs-reviews-card__text { flex: 1; }
.ivs-reviews-card__buttons { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 991px) {
  .ivs-reviews-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 575px) {
  .ivs-reviews-card { padding: 22px 18px; }
  .ivs-reviews-card__buttons, .ivs-reviews-card__buttons .button { width: 100%; }
}

.ivs-embed iframe[height] { min-height: 320px; }

.ivs-social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 767px) { .ivs-social-grid { grid-template-columns: repeat(2, 1fr); } }
.ivs-social-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 8px;
  color: #fff;
  line-height: 1.3;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.ivs-social-btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(5, 16, 54, 0.18); }
.ivs-social-btn__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.ivs-social-btn__icon svg { width: 20px; height: 20px; fill: #fff; }
.ivs-social-btn.-fb { background: #1877f2; }
.ivs-social-btn.-ig { background: linear-gradient(45deg, #f09433, #dc2743 50%, #bc1888); }
.ivs-social-btn.-yt { background: #ff0000; }
.ivs-social-btn.-li { background: #0a66c2; }
.ivs-social-btn.-wa { background: #1faa53; }
.ivs-social-btn.-gg { background: #fff; color: #051036; border: 1px solid #ddd; }
.ivs-social-btn.-gg:hover { color: #051036; }
.ivs-social-btn.-gg .ivs-social-btn__icon { background: #f5f5f5; }

.ivs-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.ivs-link-grid__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  color: #051036;
  background: #fff;
}
.ivs-link-grid__item:hover { border-color: #3554d1; color: #3554d1; }
@media (max-width: 400px) { .ivs-link-grid { grid-template-columns: 1fr; } }

.ivs-list { list-style: none; padding: 0; }
.ivs-list li { position: relative; padding-left: 22px; margin-top: 8px; font-size: 15px; }
.ivs-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: #3554d1; }

.ivs-btn-icon { display: inline-flex; }
.ivs-btn-icon svg { width: 16px; height: 16px; fill: currentColor; }

/* Visa page: all countries */
.ivs-country-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 1199px) { .ivs-country-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) { .ivs-country-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px) { .ivs-country-grid { grid-template-columns: 1fr; } }
.ivs-country {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #051036;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.ivs-country:hover { border-color: #3554d1; box-shadow: 0 6px 16px rgba(5, 16, 54, 0.08); color: #051036; }
.ivs-country img { width: 44px; height: 33px; border-radius: 3px; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08); flex: 0 0 44px; object-fit: cover; }
.ivs-country__text { flex: 1; min-width: 0; line-height: 1.3; }
.ivs-country__name { display: block; font-weight: 500; font-size: 15px; }
.ivs-country__types { display: block; font-size: 13px; color: #697488; }
.ivs-country__cta { font-size: 12px; color: #3554d1; white-space: nowrap; }
@media (max-width: 767px) { .ivs-country__cta { display: none; } }
.ivs-country-search { display: block; width: 100%; }
.ivs-country-search input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  background: #fff;
}
.ivs-country-search input:focus { outline: none; border-color: #3554d1; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Blog articles: share bar */
.ivs-share { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 20px 0; }
.ivs-share__label { font-size: 14px; font-weight: 500; margin-right: 4px; }
.ivs-share__btn {
  display: inline-flex; align-items: center; height: 34px; padding: 0 14px;
  border-radius: 17px; font-size: 13px; font-weight: 500; color: #fff; border: 0; cursor: pointer;
}
.ivs-share__btn:hover { color: #fff; opacity: 0.9; }
.ivs-share__btn.-whatsapp { background: #1faa53; }
.ivs-share__btn.-facebook { background: #1877f2; }
.ivs-share__btn.-linkedin { background: #0a66c2; }
.ivs-share__btn.-x { background: #111; }
.ivs-share__btn.-copy { background: #eef1fb; color: #3554d1; }
.ivs-share__btn.-copy:hover { color: #3554d1; }
.ivs-callout { border-left: 4px solid #3554d1; background: #f5f7fe; border-radius: 6px; padding: 16px 20px; }

/* Wide (1200x630) article covers in blog cards */
.ratio-og::before { padding-bottom: 52.5%; }

/* Our Experience: companies and public figures */
.ivs-exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 1199px) { .ivs-exp-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) { .ivs-exp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .ivs-exp-grid { grid-template-columns: 1fr; } }
.ivs-exp-card { border: 1px solid #ddd; border-radius: 8px; padding: 14px 16px; background: #fff; line-height: 1.35; }
.ivs-exp-card__name { font-size: 15px; font-weight: 500; color: #051036; }
a.ivs-exp-card__name { color: #3554d1; }
a.ivs-exp-card__name:hover { text-decoration: underline; }
.ivs-exp-card__sub { display: block; font-size: 13px; color: #697488; margin-top: 3px; }
.ivs-exp-card.-person { display: flex; align-items: center; gap: 12px; }
.ivs-exp-card__body { min-width: 0; }
.ivs-avatar {
  flex: 0 0 44px; width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 600; color: #fff; background: #3554d1; object-fit: cover;
}
.ivs-avatar.-c1 { background: #3554d1; }
.ivs-avatar.-c2 { background: #0d9488; }
.ivs-avatar.-c3 { background: #c2410c; }
.ivs-avatar.-c4 { background: #7c3aed; }
.ivs-avatar.-c5 { background: #be123c; }

/* Client video review */
.ivs-video { max-width: 760px; margin-left: auto; margin-right: auto; }
.ivs-video__frame { position: relative; padding-top: 56.25%; border-radius: 10px; overflow: hidden; background: #051036; box-shadow: 0 10px 30px rgba(5, 16, 54, 0.12); }
.ivs-video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* About: Instagram posts from clients */
.ivs-ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
@media (max-width: 991px) { .ivs-ig-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .ivs-ig-grid { grid-template-columns: 1fr; } }
.ivs-ig { margin: 0; text-align: center; }
.ivs-ig .instagram-media { margin: 0 auto !important; min-width: 0 !important; width: 100% !important; max-width: 400px; }
.ivs-ig blockquote.instagram-media { border: 1px solid #ddd; border-radius: 8px; padding: 40px 16px; background: #fff; }
