:root {
  --primary: #b78b4d;
  --primary-100: #a57d45;
  --primary-200: #926f3d;
  --primary-300: #806136;
  --primary--100: #be975d;
  --primary--200: #c6a36d;
  --primary--300: #cdaf7e;
  --primary-rgba-0: rgba(183, 139, 77, 0);
  --primary-rgba-10: rgba(183, 139, 77, 0.1);
  --primary-rgba-20: rgba(183, 139, 77, 0.2);
  --primary-rgba-30: rgba(183, 139, 77, 0.3);
  --primary-rgba-40: rgba(183, 139, 77, 0.4);
  --primary-rgba-50: rgba(183, 139, 77, 0.5);
  --primary-rgba-60: rgba(183, 139, 77, 0.6);
  --primary-rgba-70: rgba(183, 139, 77, 0.7);
  --primary-rgba-80: rgba(183, 139, 77, 0.8);
  --primary-rgba-90: rgba(183, 139, 77, 0.9);
  --navy-dark: #0e152f;
  --whatsapp-green: #25D366;
}

/* Page Speed & Core Web Vitals Optimizations */
@font-face {
  font-display: swap;
}

img {
  content-visibility: auto;
}

iframe {
  content-visibility: auto;
}

/* Pan-African Header & Regional Top Bar */
.regional-topbar {
  background: #0e152f;
  color: #e2e8f0;
  font-size: 13px;
  padding: 6px 0;
}

.regional-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(183, 139, 77, 0.2);
  color: #f6d295;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 12px;
}

/* WhatsApp Floating Button Pulse Effect */
@keyframes wsPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

#ws-trigger-btn {
  animation: wsPulse 2s infinite;
}

/* Quick Telehealth & Mobile Inquiry Form */
.quick-inquiry-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.quick-inquiry-card h3 {
  font-weight: 700;
  color: #0e152f;
}

.form-control-african {
  height: 48px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 14px;
  padding: 10px 14px;
  transition: all 0.2s ease;
}

.form-control-african:focus {
  border-color: #b78b4d;
  box-shadow: 0 0 0 3px rgba(183, 139, 77, 0.2);
  outline: none;
}

/* Multi-Currency & Pricing Card Styles */
.pricing-card-african {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card-african:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(14, 21, 47, 0.1);
  border-color: #b78b4d;
}

.pricing-card-african.featured {
  border: 2px solid #b78b4d;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
}

.pricing-card-african .badge-popular {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #b78b4d;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.pricing-price {
  font-size: 32px;
  font-weight: 800;
  color: #0e152f;
  margin: 15px 0 5px;
}

/* Faith & Science Resonance Banner */
.faith-science-banner {
  background: linear-gradient(135deg, #0e152f 0%, #1e2942 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.faith-science-banner::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  background: radial-gradient(circle, rgba(183, 139, 77, 0.2) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

/* Travel Concierge Steps */
.concierge-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.concierge-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #b78b4d;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

/* Modernized Quick Telehealth Inquiry Box */
.quick-inquiry-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 45px;
  box-shadow: 0 20px 60px rgba(14, 21, 47, 0.12), 0 4px 16px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
}

.quick-inquiry-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #b78b4d 0%, #0e152f 50%, #25D366 100%);
}

.form-label-modern {
  font-size: 13.5px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.input-group-modern {
  position: relative;
  display: flex;
  align-items: center;
}

.input-group-modern .input-icon {
  position: absolute;
  left: 16px;
  color: #94a3b8;
  font-size: 16px;
  z-index: 10;
  pointer-events: none;
  transition: color 0.2s ease;
}

.input-group-modern .form-control-custom,
.input-group-modern .form-select-custom {
  height: 52px;
  padding-left: 46px;
  padding-right: 16px;
  border-radius: 14px;
  border: 1.5px solid #e2e8f0;
  background-color: #f8fafc;
  font-size: 14.5px;
  color: #0f172a;
  font-weight: 500;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
}

.input-group-modern .form-control-custom:focus,
.input-group-modern .form-select-custom:focus {
  background-color: #ffffff;
  border-color: #b78b4d;
  box-shadow: 0 0 0 4px rgba(183, 139, 77, 0.15);
  outline: none;
}

.input-group-modern:focus-within .input-icon {
  color: #b78b4d;
}

.btn-whatsapp-submit {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  cursor: pointer;
}

.btn-whatsapp-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
  color: #ffffff;
}

.btn-whatsapp-submit:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .quick-inquiry-box {
    padding: 28px 20px;
    border-radius: 18px;
  }
}

