/* ═══════════════════════════════════════════
   SERVICES & ABOUT PAGE STYLES — services.html
═══════════════════════════════════════════ */

/* ── COUNTRY CARDS ──────────────────────── */
.countries { padding: 80px 0; background: var(--white); }

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.country-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.country-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.cc-header {
  background: var(--navy);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cc-flag { font-size: 2rem; }
.cc-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
}
.cc-badge {
  margin-left: auto;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.cc-body { padding: 20px 24px; background: var(--bg); }
.cc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid #e4e9f2;
  font-size: 0.88rem;
}
.cc-row:last-child { border-bottom: none; }
.cc-row .lbl { color: var(--mid); }
.cc-row .val { font-weight: 600; color: var(--navy); }

.cc-foot { padding: 16px 24px; background: var(--white); }
.cc-cta {
  display: block;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 11px;
  border-radius: 7px;
  transition: background .2s, color .2s;
  cursor: pointer;
  border: none;
  width: 100%;
}
.cc-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── HOW IT WORKS ───────────────────────── */
.how { background: var(--light); padding: 80px 0; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.step::after {
  content: '→';
  position: absolute;
  right: -10px;
  top: 20px;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
}
.step:last-child::after { display: none; }

.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(27,58,107,0.2);
}
.step h3 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.step p { font-size: 0.85rem; color: var(--mid); line-height: 1.5; }

/* ── ABOUT ──────────────────────────────── */
.about { padding: 80px 0; background: var(--white); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  background: linear-gradient(135deg, var(--navy) 0%, #243e73 100%);
  border-radius: 16px;
  padding: 48px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: 0.15;
}
.about-visual img {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  position: relative;
}
.about-visual h2 {
  font-weight: 800;
  /* font-size: 1.3rem; */
  color: var(--white);
  margin-bottom: 6px;
}
.about-visual h3 {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 6px;
}
.about-visual p { color: rgba(255,255,255,0.65); font-size: 0.88rem; }

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}
.about-pill {
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.35);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
}

.about-text h2 {
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}
.about-text p {
  color: var(--mid);
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: 0.97rem;
}

.about-list { margin-top: 8px; }
.about-list li {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.93rem;
  color: var(--dark);
  border-bottom: 1px solid #f0f2f8;
}
.about-list li:last-child { border-bottom: none; }
.about-list .tick {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .step::after { display: none; }
  .about-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
  .countries-grid { grid-template-columns: 1fr; }
}
