@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;700;800&display=swap');

.minimal-service-page {
  background-color: #f8fafc;
  font-family: 'Inter', sans-serif;
  color: #334155;
  padding-bottom: 40px;
}

/* Container Spacing */
.minimal-service-page .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Elegant Breadcrumb */
.min-breadcrumb {
  padding: 15px 0 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 10px;
}
.min-breadcrumb a {
  color: #008080;
  text-decoration: none;
  transition: color 0.2s ease;
}
.min-breadcrumb a:hover { color: #e15f41; }

/* Premium Hero Banner */
.min-hero {
  min-height: 240px;
  padding: 55px 30px;
  background-image: var(--hero-bg, url('/images/hero.webp'));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 12px;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 77, 77, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.min-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.40) 0%, rgba(15, 23, 42, 0.65) 100%);
  z-index: 1;
  pointer-events: none;
}
.min-hero > * {
  position: relative;
  z-index: 2;
}
.min-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: #ffffff !important;
  background: #e15f41;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  text-shadow: none;
}
.min-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.9);
}
.min-hero h1 b {
  font-weight: 800;
  color: #ffffff !important;
}
.min-hero p {
  font-size: 1.05rem;
  color: #ffffff !important;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.9);
}

/* Single Column Layout */
.min-layout {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}

/* Left Side Content (Now Full Width) */
.min-left {
  width: 100%;
}
.min-overview {
  font-size: 1rem;
  line-height: 1.5;
  color: #475569;
  margin-bottom: 20px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 4px -1px rgba(0,0,0,0.02);
}

/* Features Grid */
.min-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}
.min-feature {
  display: flex;
  flex-direction: column;
  padding: 15px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 2px 4px -1px rgba(0,0,0,0.02);
  transition: all 0.2s ease;
}
.min-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
  border-color: #008080;
}
.min-icon {
  width: 40px;
  height: 40px;
  background: rgba(225, 95, 65, 0.1);
  color: #e15f41;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}
.min-feature:hover .min-icon {
  background: #e15f41;
  color: #ffffff;
  transform: scale(1.05);
}
.min-feature h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #004d4d;
}
.min-feature p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
}

/* Process Steps */
.min-process {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 4px -1px rgba(0,0,0,0.02);
}
.min-process h3, .min-faq-sec h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #004d4d;
  margin-bottom: 20px;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  padding-left: 15px;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: #e2e8f0;
}
.step {
  position: relative;
  padding: 12px 15px 12px 35px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #334155;
  font-size: 0.85rem;
  line-height: 1.4;
}
.step strong {
  color: #008080;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 3px;
}
.step::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-radius: 50%;
  border: 3px solid #008080;
  box-shadow: 0 0 0 2px #f8fafc;
  z-index: 2;
}

/* FAQ Accordion */
.min-faq-sec.mt-5 {
  margin-top: 25px !important;
}
.min-faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 10px;
  background: #ffffff;
  transition: all 0.2s ease;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.min-faq-item:hover {
  border-color: #cbd5e1;
}
.min-faq-item.active {
  border-color: #008080;
  box-shadow: 0 5px 15px rgba(0, 128, 128, 0.08);
}
.min-faq-header {
  padding: 20px 25px;
  color: #004d4d;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: transparent;
  cursor: pointer;
}
.faq-icon {
  color: #e15f41;
  font-size: 1rem;
}
.min-faq-body {
  padding: 0 25px 20px;
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
  display: none;
}

/* Additional Responsive Tweaks */
@media (max-width: 991px) {
  .min-hero { padding: 35px 20px; }
  .min-hero h1 { font-size: 1.8rem; }
  .min-hero p { font-size: 0.9rem; }
  .min-overview { padding: 15px; font-size: 0.95rem; }
  .min-process { padding: 20px 15px; }
  .min-faq-header { padding: 15px 20px; font-size: 1rem; }
  .min-faq-body { padding: 0 20px 15px; font-size: 0.88rem; }
}
@media (max-width: 576px) {
  .min-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .min-feature {
    padding: 10px;
  }
  .min-feature h3 {
    font-size: 0.85rem;
    margin-bottom: 4px;
  }
  .min-feature p {
    font-size: 0.72rem;
    line-height: 1.3;
  }
  .min-icon {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
  .min-hero { padding: 30px 15px; }
  .min-hero h1 { font-size: 1.5rem; }
  .min-hero p { font-size: 0.85rem; }
  .min-tag { font-size: 0.7rem; padding: 3px 10px; margin-bottom: 10px; }
  .step { padding: 10px 12px 10px 30px; font-size: 0.8rem; }
  .step strong { font-size: 0.88rem; }
}

/* ==========================================================================
   GLOBAL MOBILE OVERRIDES & RESPONSIVE DESIGN FOR SERVICE PAGES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

.sea-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  margin-top: 30px;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}

.sea-sidebar {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  position: sticky;
  top: 100px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  box-sizing: border-box;
}

.sea-sidebar h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #004d4d;
  margin-top: 0;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(0, 128, 128, 0.08);
  padding-bottom: 10px;
}

.sea-sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sea-sidebar-item {
  margin-bottom: 10px;
}

.sea-sidebar-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 8px;
  color: #475569;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  box-sizing: border-box;
  text-decoration: none;
}

.sea-sidebar-item a i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.sea-sidebar-item.active a, 
.sea-sidebar-item a:hover {
  background: rgba(0, 128, 128, 0.08);
  color: #008080;
}

.sea-sidebar-cta {
  margin-top: 25px;
  padding: 22px 18px;
  background: linear-gradient(135deg, #004d4d, #008080);
  border-radius: 10px;
  color: #ffffff;
  text-align: center;
  box-sizing: border-box;
}

.sea-sidebar-cta h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 8px;
  color: #ffffff;
}

.sea-sidebar-cta p {
  font-size: 0.85rem;
  margin-bottom: 15px;
  line-height: 1.45;
  color: rgba(255,255,255,0.92);
}

.sea-sidebar-cta .btn-sidebar-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 18px;
  background: #e15f41;
  color: #ffffff;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(225,95,65,0.3);
  box-sizing: border-box;
  transition: background 0.2s, transform 0.2s;
}

.sea-sidebar-cta .btn-sidebar-quote:hover {
  background: #cf4d30;
  transform: translateY(-2px);
}

.sea-content {
  min-width: 0;
  box-sizing: border-box;
}

.sea-content-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  margin-bottom: 25px;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}

.sea-content-card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #004d4d;
  margin-top: 0;
  margin-bottom: 20px;
}

/* African Country Grid & Card Styles */
.african-country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
}

.african-country-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 14px;
  box-sizing: border-box;
  min-width: 0;
  gap: 8px;
}

.african-country-card span:first-child {
  font-weight: 700;
  color: #0f172a;
  font-size: 0.88rem;
  min-width: 0;
  overflow-wrap: break-word;
}

.african-country-card span:last-child {
  background: rgba(0, 128, 128, 0.1);
  color: #008080;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 4px 9px;
  border-radius: 20px;
  border: 1px solid rgba(0, 128, 128, 0.2);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Tablet & Mobile Breakpoint (Under 1200px) */
@media (max-width: 1199px) {
  .sea-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .sea-content {
    order: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
  .sea-sidebar {
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    position: static !important;
    top: auto !important;
    margin-top: 20px !important;
    padding: 22px 18px !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03) !important;
    box-sizing: border-box !important;
  }
  .sea-sidebar h3 {
    font-size: 1.15rem !important;
    margin-bottom: 16px !important;
    padding-bottom: 10px !important;
    border-bottom: 2px solid rgba(0, 128, 128, 0.1) !important;
  }
  .sea-sidebar-menu {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
    gap: 8px !important;
    margin-bottom: 18px !important;
  }
  .sea-sidebar-item {
    margin-bottom: 0 !important;
  }
  .sea-sidebar-item a {
    padding: 11px 14px !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    font-size: 0.9rem !important;
    box-sizing: border-box !important;
  }
  .sea-sidebar-item.active a {
    background: rgba(0, 128, 128, 0.08) !important;
    border-color: #008080 !important;
    color: #008080 !important;
    font-weight: 700 !important;
  }
  .sea-sidebar-cta {
    margin-top: 15px !important;
    padding: 22px 18px !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .sea-sidebar-cta h4 {
    font-size: 1.1rem !important;
    margin-bottom: 8px !important;
  }
  .sea-sidebar-cta p {
    font-size: 0.88rem !important;
    margin-bottom: 14px !important;
  }
  .sea-sidebar-cta .btn-sidebar-quote {
    padding: 12px 18px !important;
    font-size: 0.92rem !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
  }
  .sea-content-card {
    padding: 22px 16px !important;
    margin-bottom: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .sea-content-card h2 {
    font-size: 1.3rem !important;
    margin-bottom: 15px !important;
  }
}

/* Phones & Small Screens Breakpoint (Under 640px) */
@media (max-width: 640px) {
  .african-country-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .african-country-card {
    padding: 10px 12px !important;
  }
  .african-country-card span:first-child {
    font-size: 0.83rem !important;
  }
  .african-country-card span:last-child {
    font-size: 0.74rem !important;
    padding: 3px 8px !important;
  }
  .sea-sidebar-menu {
    grid-template-columns: 1fr !important;
  }
  .sea-sidebar {
    padding: 18px 14px !important;
    margin-top: 15px !important;
  }
  .sea-content-card {
    padding: 18px 14px !important;
  }
  .sea-content-card h2 {
    font-size: 1.2rem !important;
  }
  .sea-sidebar-cta {
    padding: 18px 14px !important;
  }
  .sea-sidebar-cta h4 {
    font-size: 1.05rem !important;
  }
  .table-responsive table {
    font-size: 0.8rem !important;
  }
  .table-responsive th, .table-responsive td {
    padding: 8px !important;
  }
  .min-hero {
    padding: 25px 15px !important;
  }
  .min-hero h1 {
    font-size: 1.5rem !important;
  }
  .min-hero p {
    font-size: 0.88rem !important;
  }
}

