/* ===========================
   ICOVRI 10 — Fees Section
   =========================== */

#fees {
  background: linear-gradient(180deg, #dff9fc 0%, var(--navy) 100%);
}

.fees-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.fees-group {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px;
}

.fees-group-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #c9a227;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201, 162, 39, .3);
}

.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
}

.fee-row:last-child { border-bottom: none; }

.fee-desc {
  font-size: 14px;
  color: #083b45;
}

.fee-amount {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #c9a227;
}

.fee-currency {
  font-size: 14px;
  color: #3a6e7e;
}

.fees-note {
  margin-top: 32px;
  padding: 20px;
  background: rgba(26, 184, 212, .08);
  border-left: 3px solid var(--teal-bright);
  color: #083b45;
  font-size: 13px;
  line-height: 1.7;
}

body.ar .fees-note {
  border-left: none;
  border-right: 3px solid var(--teal-bright);
}

.fee-tba {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px !important;
  font-weight: 700;
  color: var(--teal-bright);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ---- Fees contact CTA ---- */
.fees-contact-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.fees-contact-box {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 56px 64px;
  text-align: center;
  max-width: 560px;
  width: 100%;
}

.fees-contact-icon {
  font-size: 52px;
  margin-bottom: 20px;
}

.fees-contact-box p {
  font-size: 16px;
  color: #2a6070;
  margin-bottom: 16px;
  line-height: 1.7;
}

.fees-contact-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #083b45;
  margin-bottom: 28px;
}

.fees-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #ffffff;
  padding: 16px 36px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  margin-bottom: 16px;
}

.fees-contact-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.fees-wa-icon { font-size: 20px; }

.fees-contact-num {
  font-size: 15px;
  color: #3a6e7e;
  font-weight: 600;
  letter-spacing: 1px;
}
