﻿/* —— Business Center International —— */
.page-business-intl {
  --bci: #FF4500;
  --bci-dark: #E03E00;
  --bci-soft: #FFF5F0;
  --bci-bg: #F7F7F7;
  --bci-border: #E8E8E8;
  --bci-text: #1A1A1A;
  --bci-muted: #5C5C5C;
}

.bci-page {
  color: var(--bci-text);
  background: #ffffff;
}

.bci-page .container {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Hero */
.bci-hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem 1.25rem 2.75rem;
}

.bci-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--bci);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1rem;
}

.bci-back:hover {
  color: var(--bci-dark);
}

.bci-hero-text h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--bci-text);
}

.bci-hero-text h1 span {
  color: var(--bci);
}

.bci-hero-text > p {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  color: var(--bci-muted);
  line-height: 1.65;
  font-size: 1.02rem;
}

.bci-hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}

.bci-hf {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.bci-hf > i {
  color: var(--bci);
  font-size: 1.15rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.bci-hf strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.bci-hf span {
  display: block;
  font-size: 0.78rem;
  color: var(--bci-muted);
  line-height: 1.4;
}

.bci-hero-media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
  aspect-ratio: 16 / 10;
  min-height: 280px;
}

.bci-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Countries */
.bci-countries {
  padding: 0.5rem 0 3rem;
}

.bci-countries-head {
  text-align: center;
  margin-bottom: 2rem;
}

.bci-countries-head h2 {
  margin: 0 0 0.45rem;
  font-size: 1.65rem;
  font-weight: 800;
}

.bci-countries-head p {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--bci-muted);
  font-size: 0.98rem;
}

.bci-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.bci-card {
  background: #ffffff;
  border: 1px solid var(--bci-border);
  border-radius: 14px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  min-width: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bci-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.bci-card-media {
  position: relative;
  height: 150px;
  overflow: visible;
  flex-shrink: 0;
  z-index: 1;
}

.bci-card-imgwrap {
  height: 100%;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}

.bci-card-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.bci-flag {
  position: absolute;
  left: 0.85rem;
  bottom: 0;
  transform: translateY(50%);
  z-index: 4;
  line-height: 0;
  background: #ffffff;
  border: 2px solid #fff;
  border-radius: 5px;
  padding: 2px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}

.bci-flag img {
  width: 34px;
  height: 22px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.bci-card-body {
  padding: 1.35rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.bci-card-body h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.3;
}

.bci-card-body > p {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  color: var(--bci-muted);
  line-height: 1.45;
  flex: 1;
}

.bci-tags {
  list-style: none;
  margin: 0 0 0.9rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.85rem;
}

.bci-tags li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--bci-muted);
  white-space: nowrap;
}

.bci-tags i {
  color: var(--bci);
  width: 0.85rem;
  font-size: 0.78rem;
}

.bci-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  position: relative;
  width: 100%;
  background: var(--bci);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.7rem 2rem 0.7rem 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.bci-btn i {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
}

.bci-btn:hover {
  background: var(--bci-dark);
  color: #fff;
}

/* Trust bar */
.bci-trust {
  background: var(--bci-bg);
  border-top: 1px solid var(--bci-border);
  padding: 1.85rem 0;
}

.bci-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.bci-trust-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.bci-trust-item > i {
  color: var(--bci);
  font-size: 1.25rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.bci-trust-item strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}

.bci-trust-item p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--bci-muted);
  line-height: 1.45;
}

/* Modales (réutilise variables bc) */
.page-business-intl {
  --bc: #FF4500;
  --bc-dark: #E03E00;
  --bc-soft: #FFF5F0;
  --bc-bg: #F7F7F7;
  --bc-border: #E8E8E8;
  --bc-text: #1A1A1A;
  --bc-muted: #5C5C5C;
}

.bc-modal[hidden] {
  display: none !important;
}

.bc-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.bc-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 12, 0.55);
}

.bc-modal-dialog {
  position: relative;
  width: min(440px, 100%);
  background: #ffffff;
  border-radius: 14px;
  padding: 1.5rem 1.4rem 1.35rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  max-height: 90vh;
  overflow-y: auto;
}

.bc-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 50%;
  background: var(--bc-bg);
  color: var(--bc-muted);
  cursor: pointer;
}

.bc-modal-dialog h2 {
  margin: 0 2rem 0.35rem 0;
  font-size: 1.25rem;
}

.bc-modal-sub {
  margin: 0 0 1rem;
  color: var(--bc-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.bc-modal-course {
  margin: 0 0 0.65rem;
  font-weight: 700;
  color: var(--bc);
}

.bc-field {
  margin-bottom: 0.85rem;
}

.bc-field label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.bc-field input,
.bc-field textarea {
  width: 100%;
  border: 1px solid var(--bc-border);
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  font: inherit;
}

.bc-field input:focus,
.bc-field textarea:focus {
  outline: none;
  border-color: var(--bc);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.18);
}

.bc-field input[readonly] {
  background: var(--bc-bg);
  color: var(--bc-muted);
}

.bc-input-icon {
  position: relative;
}

.bc-input-icon input {
  padding-right: 2.4rem;
}

.bc-input-icon i {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bc-muted);
}

.bc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.bc-amount-box {
  margin: 0.5rem 0 1rem;
  padding: 0.75rem 0.9rem;
  background: var(--bc-soft);
  border-radius: 8px;
  font-size: 0.92rem;
}

.bc-btn-solid {
  background: var(--bc);
  color: #fff;
  border: 1.5px solid var(--bc);
  border-radius: 8px;
  font-weight: 600;
  padding: 0.7rem 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.bc-btn-solid:hover {
  background: var(--bc-dark);
  border-color: var(--bc-dark);
  color: #fff;
}

.bc-btn-full {
  width: 100%;
}

.bc-modal-feedback {
  margin: 0.85rem 0 0;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.bc-modal-feedback.is-success {
  background: var(--bc-soft);
  color: var(--bc-dark);
}

.bc-success {
  text-align: center;
  padding: 0.5rem 0;
}

.bc-success-icon {
  width: 3.2rem;
  height: 3.2rem;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  background: var(--bc);
  color: #fff;
  display: grid;
  place-items: center;
}

.bc-success h3 {
  margin: 0 0 0.4rem;
}

.bc-success p {
  margin: 0;
  color: var(--bc-muted);
  font-size: 0.92rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .bci-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bci-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .bci-hero {
    grid-template-columns: 1fr;
    padding-top: 1.5rem;
  }

  .bci-hero-media {
    order: -1;
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  .bci-hero-features,
  .bci-grid,
  .bci-trust-grid {
    grid-template-columns: 1fr;
  }
}
