﻿/* —— Business Center —— */
.page-business-center {
  --bc: #FF4500;
  --bc-dark: #E03E00;
  --bc-soft: #FFF5F0;
  --bc-bg: #F5F5F5;
  --bc-border: #E8E8E8;
  --bc-text: #1A1A1A;
  --bc-muted: #5A5A5A;
}

.bc-page {
  color: var(--bc-text);
  background: #ffffff;
  padding-bottom: 0;
}

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

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

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

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

.bc-hero-text h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--bc);
  line-height: 1.12;
}

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

.bc-hero-ctas {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.65rem;
  align-items: stretch;
}

.bc-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.7rem 0.9rem;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  flex: 0 1 auto;
}

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

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

.bc-btn-outline {
  background: #ffffff;
  color: var(--bc-text);
  border: 1.5px solid var(--bc);
}

.bc-btn-outline:hover {
  background: var(--bc-soft);
  color: var(--bc-dark);
}

.bc-btn-outline i {
  color: var(--bc);
}

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

.bc-hero-media {
  border-radius: 14px;
  overflow: hidden;
  min-height: 300px;
  aspect-ratio: 16 / 10;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

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

/* Main 2 colonnes */
.bc-main {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 1.75rem;
  align-items: start;
  padding-bottom: 2.75rem;
}

.bc-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.bc-section-head h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bc-section-head h2 i {
  color: var(--bc);
}

.bc-section-head-stack {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.bc-section-head-stack p {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: var(--bc-muted);
  line-height: 1.5;
}

.bc-link {
  color: var(--bc);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
}

.bc-link:hover {
  text-decoration: underline;
}

.bc-space-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.bc-card {
  background: #ffffff;
  border: 1px solid var(--bc-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.bc-card-media {
  height: 120px;
  display: grid;
  place-items: center;
  font-size: 2.1rem;
  color: rgba(255, 255, 255, 0.95);
}

.bc-media-1 { background: linear-gradient(135deg, #FF4500, #FFAB40); }
.bc-media-2 { background: linear-gradient(135deg, #E03E00, #FF7043); }
.bc-media-3 { background: linear-gradient(135deg, #FF6D00, #FFCC80); }
.bc-media-4 { background: linear-gradient(135deg, #F4511E, #FF8A65); }

.bc-card-body {
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bc-card-body h3 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.bc-meta {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: grid;
  gap: 0.3rem;
  flex: 1;
}

.bc-meta li {
  font-size: 0.78rem;
  color: var(--bc-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.bc-meta i {
  color: var(--bc);
  margin-top: 0.12rem;
  width: 0.9rem;
  font-size: 0.75rem;
}

.bc-card-body .bc-btn-solid {
  width: 100%;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.88rem;
  padding: 0.6rem 0.8rem;
}

.bc-perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--bc-border);
}

.bc-perks div {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--bc-muted);
}

.bc-perks i {
  color: var(--bc);
  font-size: 0.95rem;
}

/* International */
.bc-intl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.bc-intl-card {
  background: #ffffff;
  border: 1px solid var(--bc-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bc-intl-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.bc-intl-media {
  position: relative;
  height: 88px;
  overflow: hidden;
}

.bc-intl-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bc-intl-flag {
  position: absolute;
  left: 0.5rem;
  bottom: 0.45rem;
  background: #ffffff;
  border-radius: 4px;
  padding: 2px;
  line-height: 0;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.18);
}

.bc-intl-flag img {
  width: 22px;
  height: 14px;
  display: block;
  border-radius: 2px;
}

.bc-intl-monument { background: linear-gradient(135deg, #00897B, #4DB6AC); }
.bc-intl-bridge { background: linear-gradient(135deg, #1565C0, #42A5F5); }
.bc-intl-pagoda { background: linear-gradient(135deg, #C62828, #EF5350); }
.bc-intl-mosque { background: linear-gradient(135deg, #E03E00, #AB47BC); }

.bc-intl-body {
  padding: 0.75rem 0.8rem 0.9rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bc-intl-body h3 {
  margin: 0 0 0.3rem;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}

.bc-intl-body p {
  margin: 0 0 0.65rem;
  font-size: 0.74rem;
  color: var(--bc-muted);
  line-height: 1.4;
  flex: 1;
}

.bc-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #ffffff;
  border: 1.5px solid var(--bc);
  color: var(--bc);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.65rem;
  border-radius: 7px;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
}

.bc-link-btn:hover {
  background: var(--bc-soft);
  color: var(--bc-dark);
}

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

.bc-intl-more:hover {
  text-decoration: underline;
}

.bc-intl-body h3 {
  margin: 0 0 0.3rem;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}

.bc-intl-body p {
  margin: 0 0 0.65rem;
  font-size: 0.74rem;
  color: var(--bc-muted);
  line-height: 1.4;
  flex: 1;
}

.bc-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #ffffff;
  border: 1.5px solid var(--bc);
  color: var(--bc);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.65rem;
  border-radius: 7px;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}

.bc-link-btn:hover {
  background: var(--bc-soft);
}

/* Features */
.bc-features {
  background: var(--bc-bg);
  border-top: 1px solid var(--bc-border);
  padding: 1.75rem 0;
}

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

.bc-feat {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.bc-feat > i {
  color: var(--bc);
  font-size: 1.2rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.bc-feat strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}

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

/* Modales */
.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-close:hover {
  background: var(--bc-soft);
  color: var(--bc);
}

.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-choice-actions {
  display: grid;
  gap: 0.65rem;
}

.bc-choice-actions .btn {
  justify-content: center;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-weight: 600;
}

.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;
  color: var(--bc-text);
  background: #ffffff;
}

.bc-field input:focus,
.bc-field textarea:focus {
  outline: none;
  border-color: var(--bc);
  box-shadow: 0 0 0 3px rgba(255, 90, 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-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 0.25rem;
}

.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;
  font-size: 1.25rem;
}

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

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

/* Responsive */
@media (max-width: 1024px) {
  .bc-main {
    grid-template-columns: 1fr;
  }

  .bc-space-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .bc-intl-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

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

  .bc-space-grid,
  .bc-intl-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 520px) {
  .bc-space-grid,
  .bc-intl-grid,
  .bc-features-grid,
  .bc-perks {
    grid-template-columns: 1fr;
  }

  .bc-hero-ctas {
    flex-wrap: wrap;
  }

  .bc-hero-btn {
    width: 100%;
    white-space: normal;
  }
}
