/* ── Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background-color: #f4f6f4;
  color: #333;
  font-size: 15px;
  line-height: 1.75;
}

/* ── Navbar ───────────────────────────────────── */
.aef-navbar {
  background: #fff;
  border-bottom: 2px solid #1D9E75;
  padding: 0.6rem 0;
}

.aef-navbar .nav-link {
  color: #444;
  font-size: 14px;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.aef-navbar .nav-link:hover,
.aef-navbar .nav-link.active {
  background: #e8f7f1;
  color: #0F6E56;
}

.aef-navbar .nav-link i {
  margin-right: 4px;
}

/* ── Hero Section ─────────────────────────────── */
.aef-hero {
  background: linear-gradient(135deg, #0a5c47 0%, #1D9E75 60%, #2bbf8e 100%);
  color: #fff;
  padding: 80px 0 60px;
}

.aef-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.aef-hero p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 560px;
  margin-bottom: 1.75rem;
}

.aef-hero .btn-hero-primary {
  background: #fff;
  color: #0F6E56;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  margin-right: 10px;
  display: inline-block;
  transition: background 0.2s;
}

.aef-hero .btn-hero-primary:hover {
  background: #e8f7f1;
}

.aef-hero .btn-hero-outline {
  background: transparent;
  color: #fff;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.7);
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s;
}

.aef-hero .btn-hero-outline:hover {
  border-color: #fff;
}

/* ── Stats Bar ────────────────────────────────── */
.aef-stats {
  background: #0F6E56;
  padding: 22px 0;
}

.aef-stats .stat-item {
  text-align: center;
  color: #fff;
  padding: 8px 16px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.aef-stats .stat-item:last-child {
  border-right: none;
}

.aef-stats .stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  display: block;
}

.aef-stats .stat-lbl {
  font-size: 12px;
  opacity: 0.85;
  display: block;
  margin-top: 3px;
}

/* ── Section Cards ────────────────────────────── */
.aef-section {
  background: #fff;
  border: 0.5px solid rgba(0,0,0,0.09);
  border-left: 3px solid #1D9E75;
  border-radius: 0 10px 10px 0;
  padding: 1.35rem 1.6rem;
  margin-bottom: 1.25rem;
}

.aef-section .sec-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #1D9E75;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.aef-section .sec-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
}

/* ── Home Feature Cards ───────────────────────── */
.feature-card {
  background: #fff;
  border: 0.5px solid rgba(0,0,0,0.09);
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.feature-card .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #e8f7f1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-card .icon-box i {
  font-size: 20px;
  color: #0F6E56;
}

.feature-card h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.feature-card p {
  font-size: 14px;
  color: #555;
  margin: 0 0 1rem;
}

.feature-card a {
  font-size: 13px;
  color: #1D9E75;
  font-weight: 600;
  text-decoration: none;
}

.feature-card a:hover {
  text-decoration: underline;
}

/* ── Welcome Section ──────────────────────────── */
.aef-welcome {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  border: 0.5px solid rgba(0,0,0,0.09);
}

.aef-welcome h2 {
  font-family: 'Oswald', sans-serif;
  color: #0F6E56;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* ── Stat Pills ───────────────────────────────── */
.stat-pill {
  display: inline-block;
  background: #e8f7f1;
  color: #0F6E56;
  font-size: 13px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 20px;
  margin: 3px;
}

/* ── Field Tags ───────────────────────────────── */
.field-tag {
  display: inline-block;
  background: #e8f7f1;
  color: #0F6E56;
  font-size: 12px;
  font-weight: 500;
  padding: 3px 12px;
  border-radius: 20px;
  margin: 2px 3px;
}

/* ── Bank Table ───────────────────────────────── */
.bank-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 0.5rem;
}

.bank-table td {
  padding: 8px 10px;
  border-bottom: 0.5px solid rgba(0,0,0,0.07);
}

.bank-table td:first-child {
  color: #666;
  width: 38%;
  font-weight: 500;
}

.bank-table tr:last-child td {
  border-bottom: none;
}

/* ── Ordered List ─────────────────────────────── */
ol.aef-list {
  padding-left: 1.2rem;
  margin: 0.5rem 0 0;
}

ol.aef-list li {
  margin-bottom: 0.45rem;
  color: #555;
  font-size: 14px;
}

ol.aef-list li::marker {
  color: #1D9E75;
  font-weight: 600;
}

/* ── Origin Banner ────────────────────────────── */
.origin-banner {
  background: linear-gradient(135deg, #0F6E56 0%, #1D9E75 100%);
  border-radius: 10px;
  padding: 1.75rem 2rem;
  margin-bottom: 1.25rem;
  color: #fff;
}

.origin-banner h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.origin-banner p {
  margin: 0;
  opacity: 0.92;
  font-size: 15px;
}

/* ── Page Header ──────────────────────────────── */
.aef-page-header {
  background: linear-gradient(135deg, #0a5c47 0%, #1D9E75 100%);
  color: #fff;
  padding: 30px 0 28px;
  margin-bottom: 2rem;
}

.aef-page-header h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.9rem;
  font-weight: 600;
  margin: 0;
}

.aef-page-header p {
  margin: 0.25rem 0 0;
  opacity: 0.85;
  font-size: 14px;
}

/* ── Contact Form ─────────────────────────────── */
.contact-card {
  background: #fff;
  border-radius: 12px;
  border: 0.5px solid rgba(0,0,0,0.09);
  padding: 1.75rem;
}

.contact-card .form-label {
  font-size: 13px;
  font-weight: 500;
  color: #444;
}

.contact-card .form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.contact-card .form-control:focus {
  border-color: #1D9E75;
  box-shadow: 0 0 0 3px rgba(29,158,117,0.15);
}

.btn-aef {
  background: #1D9E75;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
}

.btn-aef:hover {
  background: #0F6E56;
  color: #fff;
}

/* ── Address Card ─────────────────────────────── */
.address-card {
  background: #fff;
  border-radius: 12px;
  border: 0.5px solid rgba(0,0,0,0.09);
  padding: 1.5rem;
}

.address-card h5 {
  font-family: 'Oswald', sans-serif;
  color: #0F6E56;
  margin-bottom: 1rem;
}

.info-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 0.6rem;
  font-size: 14px;
}

.info-row i {
  color: #1D9E75;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-row span, .info-row a {
  color: #555;
  text-decoration: none;
}

.info-row a:hover {
  color: #0F6E56;
}

/* ── Footer ───────────────────────────────────── */
.aef-footer {
  background: #1a1a1a;
  color: #aaa;
  text-align: center;
  padding: 28px 0;
  margin-top: 3rem;
  font-size: 13px;
}

.aef-footer span {
  color: #fff;
  font-weight: 500;
}

/* ── Utility ──────────────────────────────────── */
.abtkk {
  font-family: 'Oswald', sans-serif;
  color: #0F6E56;
}

.main-wrap {
  padding: 2rem 0 3rem;
}

@media (max-width: 768px) {
  .aef-hero h1 { font-size: 1.8rem; }
  .aef-stats .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
}
