/* -------------------------------------------
   STUDY ABROAD � Clean Modern UI
   No section background colors. White base.
------------------------------------------- */

.sa-page {
  font-family: 'Montserrat', sans-serif;
  color: #1e293b;
}

/* -- Shared -- */
.sa-section {
  padding: 100px 0;
}

.sa-sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.sa-sec-head h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 700;
  color: #0f172a;
  margin: 10px 0 16px;
  line-height: 1.2;
}

.sa-sec-head p {
  font-size: 17px;
  color: #475569;
  line-height: 1.75;
  margin: 0;
}

.sa-tag {
  display: inline-block;
  padding: 5px 16px;
  border: 1.5px solid #0C3365;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #0C3365;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* -- Buttons -- */
.sa-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: #0C3365;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 6px 20px rgba(12, 51, 101,0.3);
}
.sa-btn-primary:hover { opacity: 0.9; transform: translateY(-2px); color: #fff; }

.sa-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
}
.sa-btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }

/* old hero styles removed � see #sab-hero below */

/* -------------------------------------------
   WHY
------------------------------------------- */
.sa-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
}

.sa-why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 36px 28px;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  transition: background 0.2s;
}

.sa-why-item:hover { background: #f8faff; }
.sa-why-item:nth-child(3n) { border-right: none; }
.sa-why-item:nth-child(4),
.sa-why-item:nth-child(5),
.sa-why-item:nth-child(6) { border-bottom: none; }

.sa-why-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: #0C3365;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.sa-why-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px;
}

.sa-why-item p {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* -------------------------------------------
   PROCESS
------------------------------------------- */
.sa-steps {
  display: flex;
  gap: 0;
  position: relative;
}

.sa-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.sa-step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #0C3365;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(12, 51, 101,0.25);
}

.sa-step-n {
  position: absolute;
  top: -8px;
  right: -4px;
  background: #0f172a;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.sa-step-connector {
  position: absolute;
  top: 36px;
  left: calc(50% + 36px);
  right: calc(-50% + 36px);
  height: 2px;
  background: #0C3365;
  z-index: 1;
}

.sa-step-connector.last { display: none; }

.sa-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.sa-step p {
  font-size: 13px;
  color: #475569;
  line-height: 1.65;
}

/* -------------------------------------------
   PROGRAMS
------------------------------------------- */
.sa-prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sa-prog-card {
  padding: 36px 28px;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.sa-prog-card:hover {
  border-color: #0C3365;
  box-shadow: 0 12px 36px rgba(12, 51, 101,0.1);
  transform: translateY(-4px);
}

.sa-prog-featured {
  border-color: #0C3365;
  box-shadow: 0 12px 36px rgba(12, 51, 101,0.12);
}

.sa-prog-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: #0C3365;
  color: #fff;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.sa-prog-card i {
  font-size: 34px;
  background: #0C3365;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 16px;
}

.sa-prog-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.sa-prog-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 16px;
}

.sa-prog-dur {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #0C3365;
  padding: 4px 12px;
  border: 1px solid #c7d2fe;
  border-radius: 50px;
}

/* -------------------------------------------
   TESTIMONIALS
------------------------------------------- */
.sa-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sa-testi-card {
  padding: 36px 28px;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  transition: all 0.3s;
}

.sa-testi-card:hover {
  border-color: #c7d2fe;
  box-shadow: 0 12px 36px rgba(12, 51, 101,0.08);
}

.sa-testi-featured {
  border-color: #0C3365;
  box-shadow: 0 12px 36px rgba(12, 51, 101,0.12);
}

.sa-testi-stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  gap: 3px;
}

.sa-testi-card p {
  font-size: 15px;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.sa-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sa-testi-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0C3365;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.sa-testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.sa-testi-author span {
  font-size: 12px;
  color: #64748b;
}

/* -------------------------------------------
   CTA BANNER
------------------------------------------- */
.sa-cta-section { padding: 70px 0; }
.sa-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 56px;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  flex-wrap: wrap;
}
.sa-cta-text h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px;
}
.sa-cta-text p {
  font-size: 15px;
  color: #475569;
  margin: 0;
}
.sa-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.sa-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  padding: 13px 20px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  transition: all 0.2s;
}
.sa-cta-call:hover { border-color: #0C3365; color: #0C3365; }

/* -------------------------------------------
   MODAL
------------------------------------------- */

/* overlay */
.sa-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease;
}
.sa-modal.active { opacity: 1; pointer-events: all; }
.sa-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,18,40,0.6);
  backdrop-filter: blur(6px);
}

/* box */
.sa-modal-box {
  position: relative; z-index: 2;
  background: #fff; border-radius: 18px;
  width: 100%; max-width: 980px;
  max-height: 92vh;
  display: flex; flex-direction: column;
  box-shadow: 0 40px 100px rgba(0,0,0,0.22);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.22s ease;
  overflow: hidden;
}
.sa-modal.active .sa-modal-box { transform: translateY(0) scale(1); }

/* header */
.sa-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  background: #0C3365;
  flex-shrink: 0;
}
.sa-modal-header-left { display: flex; align-items: center; gap: 12px; }
.sa-modal-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px; flex-shrink: 0;
}
.sa-modal-header h2 { font-size: 16px; font-weight: 700; color: #fff; margin: 0 0 2px; }
.sa-modal-header p  { font-size: 11px; color: rgba(255,255,255,0.72); margin: 0; }
.sa-modal-close {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,0.15); border: none;
  color: #fff; font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s; flex-shrink: 0;
}
.sa-modal-close:hover { background: rgba(255,255,255,0.28); }

/* body grid */
.sa-modal-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  flex: 1;
  min-height: 0;
}

/* left panel */
.sa-modal-left {
  padding: 24px 20px;
  border-right: 1px solid #f1f5f9;
  background: #fafbff;
  overflow-y: auto;
}
.sa-modal-left-title {
  font-size: 10px; font-weight: 700; color: #94a3b8;
  text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 12px;
}
.sa-apply-info-card {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 11px 0; border-bottom: 1px solid #f1f5f9;
}
.sa-apply-info-card:last-of-type { border-bottom: none; }
.sa-apply-info-icon {
  width: 34px; height: 34px; min-width: 34px; border-radius: 9px;
  background: #0C3365;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px;
}
.sa-apply-info-card strong { display: block; font-size: 12px; font-weight: 700; color: #0f172a; margin-bottom: 1px; }
.sa-apply-info-card span  { font-size: 11px; color: #64748b; line-height: 1.4; }
.sa-apply-contact-row {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 16px; padding-top: 14px; border-top: 1px solid #e2e8f0;
}
.sa-apply-contact-row a {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: #0C3365; text-decoration: none;
}
.sa-apply-contact-row a:hover { color: #9d4cf3; }

/* right form */
.sa-modal-right { overflow-y: auto; }

.sa-form { padding: 24px 28px 28px; }

.sa-form-section-title {
  font-size: 11px; font-weight: 700; color: #0C3365;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 14px; margin-top: 4px;
  display: flex; align-items: center; gap: 8px;
}
.sa-form-section-title::after {
  content: ''; flex: 1; height: 1px; background: #e2e8f0;
}
.sa-form-divider { margin: 20px 0 16px; }

.sa-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.sa-fg { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.sa-fg label {
  font-size: 11px; font-weight: 600; color: #475569;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.sa-fg input, .sa-fg select, .sa-fg textarea {
  padding: 9px 12px;
  border: 1.5px solid #e2e8f0; border-radius: 8px;
  font-size: 13px; color: #1e293b; background: #fff;
  outline: none; width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.sa-fg input:focus, .sa-fg select:focus, .sa-fg textarea:focus {
  border-color: #0C3365;
  box-shadow: 0 0 0 3px rgba(12, 51, 101,0.09);
}
.sa-fg textarea { resize: vertical; min-height: 80px; }

/* submit */
.sa-submit-btn {
  width: 100%; margin-top: 8px; padding: 13px;
  background: #0C3365;
  color: #fff; border: none; border-radius: 9px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 6px 20px rgba(12, 51, 101,0.28);
  transition: opacity 0.15s, transform 0.15s;
}
.sa-submit-btn:hover:not(:disabled) { opacity: 0.9; transform: translateY(-1px); }
.sa-submit-btn:disabled { cursor: not-allowed; }

.sa-btn-loader { display: inline-flex; align-items: center; gap: 7px; }
@keyframes sa-spin { to { transform: rotate(360deg); } }
.sa-spin { display: inline-block; animation: sa-spin 0.7s linear infinite; }

.sa-form-msg {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 14px; border-radius: 8px;
  font-size: 13px; font-weight: 600; margin-bottom: 12px;
}
.sa-form-msg--success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.sa-form-msg--error   { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

.sa-form-note {
  font-size: 11px; color: #94a3b8;
  text-align: center; margin-top: 10px; margin-bottom: 0;
}
.sa-form-note a { color: #0C3365; text-decoration: none; }

/* -------------------------------------------
   RESPONSIVE
------------------------------------------- */
@media (max-width: 1024px) {
  .sa-modal-body { grid-template-columns: 1fr; }
  .sa-modal-left { border-right: none; border-bottom: 1px solid #f1f5f9; max-height: 220px; }
  .sa-why-grid { grid-template-columns: repeat(2, 1fr); }

  .sa-prog-grid { grid-template-columns: repeat(2, 1fr); }
  .sa-testi-grid { grid-template-columns: 1fr; }
  .sa-steps { flex-wrap: wrap; gap: 40px; }
  .sa-step { flex: 0 0 calc(33.33% - 28px); }
  .sa-step-connector { display: none; }

}

@media (max-width: 768px) {
  .sa-section { padding: 70px 0; }
  .sa-why-grid { grid-template-columns: 1fr; }
  .sa-prog-grid { grid-template-columns: 1fr; }
  .sa-step { flex: 0 0 calc(50% - 20px); }
  .sa-form-row { grid-template-columns: 1fr; }
  .sa-cta-wrap { flex-direction: column; align-items: flex-start; padding: 32px 28px; }
  .sa-modal-box { border-radius: 16px; }
  .sa-modal-header { padding: 18px 20px; border-radius: 16px 16px 0 0; }
  .sa-prog-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .sa-prog-grid { grid-template-columns: 1fr; gap: 16px; }
  .sa-prog-card { padding: 24px 16px; }
}

@media (max-width: 540px) {
  .sa-hero-btns { flex-direction: column; }
  .sa-hero-numbers { flex-direction: column; align-items: flex-start; gap: 12px; }
  .sa-num-sep { width: 40px; height: 1px; }
  .sa-num { padding: 0; }
  .sa-step { flex: 0 0 100%; }
  .sa-why-item:nth-child(3n) { border-right: 1px solid #e2e8f0; }
  .sa-why-item:nth-child(4),
  .sa-why-item:nth-child(5) { border-bottom: 1px solid #e2e8f0; }
}



/* -------------------------------------------
   HERO � #sab-hero  (clean, no floats)
------------------------------------------- */

#sab-hero {
  padding: 80px 0 60px;
  background: #fff;
  overflow: hidden;
}

@media (max-width: 991px) {
  #sab-hero { padding: 40px 0 40px; }
}

@media (max-width: 575px) {
  #sab-hero { padding: 24px 0 32px; }
}

.sab-hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* -- LEFT -- */
.sab-hero-text { max-width: 540px; }

.sab-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #0C3365;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.sab-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #0C3365;
  animation: sab-pulse 2s ease-in-out infinite;
}
@keyframes sab-pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(2); opacity: 0.4; }
}

#sab-hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.sab-title-accent {
  background: #0C3365;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#sab-hero-desc {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 460px;
}

.sab-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.sab-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #0C3365;
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(12, 51, 101,0.28);
  transition: transform 0.2s, box-shadow 0.2s;
}
.sab-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(12, 51, 101,0.38);
  color: #fff;
}

.sab-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  padding: 13px 20px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  transition: all 0.2s;
}
.sab-cta-secondary:hover {
  border-color: #0C3365;
  color: #0C3365;
}

/* stats */
.sab-stats-row {
  display: flex;
  gap: 0;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
}
.sab-stat-box {
  padding: 14px 22px;
  text-align: center;
  border-right: 1.5px solid #e2e8f0;
  position: relative;
}
.sab-stat-box:last-child { border-right: none; }
.sab-stat-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: #0C3365;
  opacity: 0;
  transition: opacity 0.2s;
}
.sab-stat-box:hover::before { opacity: 1; }
.sab-stat-box strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 3px;
}
.sab-stat-box span {
  font-size: 10px;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* -- RIGHT VISUAL -- */
.sab-hero-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sab-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 20px 60px rgba(12, 51, 101,0.12), 0 4px 16px rgba(0,0,0,0.06);
  background: #e2e8f0;
}

#sab-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.sab-img-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12, 51, 101,0.06) 0%,
    transparent 40%
  );
}

/* destination tags below image */
.sab-dest-tags-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sab-dest-tags-row span {
  padding: 7px 14px;
  background: #f8faff;
  border: 1.5px solid #e2e8f0;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  transition: all 0.2s;
}
.sab-dest-tags-row span:hover {
  border-color: #0C3365;
  color: #0C3365;
  background: #eff3ff;
}

/* -- RESPONSIVE -- */
@media (max-width: 992px) {
  .sab-hero-container { grid-template-columns: 1fr; gap: 36px; }
  .sab-img-wrap { height: 320px; }
  #sab-hero { padding: 70px 0 50px; }
}
@media (max-width: 576px) {
  #sab-hero { padding: 60px 0 40px; }
  #sab-hero-title { font-size: 32px; }
  .sab-img-wrap { height: 240px; }
  .sab-hero-actions { flex-direction: column; align-items: flex-start; }
  .sab-stats-row { flex-wrap: wrap; }
  .sab-stat-box { flex: 1 0 calc(50% - 1px); }
}







/* Hero offset � pulls section up under fixed header */
.sab-hero-offset {
  margin-top: 0;
}

@media (max-width: 991px) {
  .sab-hero-offset {
    margin-top: -50px;
  }
}

@media (max-width: 575px) {
  .sab-hero-offset {
    margin-top: -55px;
  }
}

/* ============================================================
   CAREERS HERO — VISUAL PANEL (replaces image)
   ============================================================ */
.sab-visual-panel {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #04142d 0%, #06244f 50%, #082d5f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(12, 51, 101, 0.22);
}

/* Animated grid background */
.svp-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: svpGridMove 20s linear infinite;
}
@keyframes svpGridMove {
  0%   { background-position: 0 0; }
  100% { background-position: 40px 40px; }
}

/* Center emblem */
.svp-center {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svp-center-ring {
  position: absolute;
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.15);
  animation: svpRotate 20s linear infinite;
}
.svp-center-ring::after {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,0.08);
  animation: svpRotate 35s linear infinite reverse;
}
@keyframes svpRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.svp-center-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a5fb0, #0C3365);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 0 30px rgba(26, 95, 176, 0.6);
  animation: svpPulse 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes svpPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(26, 95, 176, 0.6); }
  50%       { box-shadow: 0 0 60px rgba(26, 95, 176, 0.9); }
}

/* Location cards */
.svp-loc {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  animation: svpFloat 6s ease-in-out infinite;
}
.svp-loc--1 { top: 12%;  left: 5%;  animation-delay: 0s; }
.svp-loc--2 { top: 12%;  right: 5%; animation-delay: 1.5s; }
.svp-loc--3 { bottom: 24%; left: 5%;  animation-delay: 3s; }
.svp-loc--4 { bottom: 24%; right: 5%; animation-delay: 4.5s; }
@keyframes svpFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
.svp-flag { font-size: 1.4rem; }
.svp-loc-text { display: flex; flex-direction: column; gap: 1px; }
.svp-loc-text strong { font-size: 12px; font-weight: 700; color: #fff; }
.svp-loc-text span   { font-size: 10px; color: rgba(255,255,255,0.55); }

/* Pulse dot on each location card */
.svp-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.8);
  flex-shrink: 0;
  animation: svpDotPulse 2s ease-in-out infinite;
}
@keyframes svpDotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.5; }
}

/* Benefit badges at bottom */
.svp-badge {
  position: absolute;
  bottom: 14px;
  z-index: 5;
  padding: 7px 14px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.svp-badge i { color: #60a5fa; }
.svp-badge--1 { left: 50%; transform: translateX(-145%); }
.svp-badge--2 { left: 50%; transform: translateX(-50%); }
.svp-badge--3 { left: 50%; transform: translateX(45%); }

/* Responsive */
@media (max-width: 992px) {
  .sab-visual-panel { height: 320px; }
  .svp-badge--1 { transform: translateX(-140%); }
  .svp-badge--3 { transform: translateX(40%); }
}
@media (max-width: 576px) {
  .sab-visual-panel { height: 260px; }
  .svp-loc { padding: 8px 10px; }
  .svp-flag { font-size: 1.1rem; }
  .svp-loc-text strong { font-size: 11px; }
  .svp-badge { font-size: 10px; padding: 6px 10px; }
  .svp-badge--1 { transform: translateX(-130%); }
  .svp-badge--3 { transform: translateX(30%); }
}
