/* ============================================
   AZISEH BLESSING KIMASE — CUSTOM STYLES
   Premium Healthcare Portfolio
   ============================================ */

/* === DESIGN TOKENS === */
:root {
  --navy: #0f2137;
  --navy-light: #1a3a5c;
  --emerald: #10b981;
  --emerald-light: #d1fae5;
  --blue-muted: #3b82f6;
  --gray-50: #f8fafb;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --white: #ffffff;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(15, 33, 55, 0.06);
  --shadow-md: 0 4px 20px rgba(15, 33, 55, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 33, 55, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
* { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.2;
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* === UTILITY CLASSES === */
.text-navy { color: var(--navy) !important; }
.text-emerald { color: var(--emerald) !important; }
.text-light { color: var(--gray-300) !important; }
.bg-navy { background-color: var(--navy) !important; }
.bg-light-gray { background-color: var(--gray-50) !important; }
.section-padding { padding: 100px 0; }
.min-vh-85 { min-height: 85vh; }

/* === BUTTONS === */
.btn {
  font-family: var(--font-heading);
  font-weight: 500;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-emerald {
  background: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
}
.btn-emerald:hover {
  background: #059669;
  border-color: #059669;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.875rem; }

/* === SECTION LABELS & TITLES === */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--emerald);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
}

/* === HEADER === */
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92) !important;
  border-bottom: 1px solid var(--gray-200);
}

.navbar { padding: 14px 0 !important; }

.navbar-brand {
  font-family: var(--font-heading) !important;
  font-size: 1.2rem !important;
  color: var(--navy) !important;
}

.brand-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  margin-right: 4px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover {
  color: var(--navy) !important;
  background: var(--gray-100);
}

/* === HERO SECTION === */
.hero-section {
  padding-top: 120px;
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
}

.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--emerald);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-ctas { margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--emerald);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 4px;
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 400px;
}

.hero-portrait {
  width: 100%;
  height: auto;
  display: block;
}

.hero-badge {
  position: absolute;
  padding: 10px 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
}

.badge-1 { top: 20%; right: -10px; }
.badge-2 { bottom: 20%; left: -10px; animation-delay: 1.5s; }

.hero-badge i { color: var(--emerald); font-size: 1.1rem; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* === MARQUEE === */
.marquee-section {
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
}

.marquee-item {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0 32px;
  white-space: nowrap;
  opacity: 0.9;
}

.marquee-item::after {
  content: '•';
  margin-left: 32px;
  opacity: 0.5;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === ABOUT SECTION === */
.about-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-content { padding-left: 20px; }

.about-text {
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: var(--gray-700);
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
}

.highlight-item i { font-size: 1.1rem; }

/* === SERVICE CARDS === */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--emerald);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--emerald-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 1.5rem;
  color: var(--emerald);
}

.service-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-problem,
.service-solution {
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.7;
}

.service-ideal {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 16px;
  margin-top: auto;
}

.service-cta {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--emerald);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-cta:hover {
  color: var(--navy);
  gap: 10px;
}

/* === WHY ME / ADVANTAGES === */
.advantage-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.advantage-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--emerald);
  transform: translateY(-4px);
}

.advantage-card i {
  font-size: 2rem;
  color: var(--emerald);
  margin-bottom: 16px;
  display: block;
}

.advantage-card h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
}

.advantage-card p {
  font-size: 0.85rem;
  color: var(--gray-300);
  margin-bottom: 0;
  line-height: 1.6;
}

/* === TIMELINE === */
.timeline {
  position: relative;
  padding-left: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-marker {
  position: absolute;
  left: -34px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--white);
  border: 3px solid var(--gray-300);
  border-radius: 50%;
  z-index: 1;
}

.timeline-marker.active {
  background: var(--emerald);
  border-color: var(--emerald);
  box-shadow: 0 0 0 4px var(--emerald-light);
}

.timeline-content {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}

.timeline-content:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--emerald);
}

.timeline-date {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--emerald);
  margin-bottom: 6px;
  display: block;
}

.timeline-content h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

/* === PROJECT CARDS === */
.project-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  transition: var(--transition);
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.project-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--emerald);
  background: var(--emerald-light);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.project-card h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.project-challenge,
.project-approach,
.project-result {
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.7;
}

/* === ORGANIZATION CARDS === */
.org-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.org-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--emerald);
  transform: translateY(-4px);
}

.org-icon {
  width: 60px;
  height: 60px;
  background: var(--emerald-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.org-icon i {
  font-size: 1.5rem;
  color: var(--emerald);
}

.org-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.org-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--emerald);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 12px;
}

.org-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

/* === SKILLS GRID === */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.skill-category {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}

.skill-category:hover {
  border-color: var(--emerald);
  box-shadow: var(--shadow-sm);
}

.skill-category h4 {
  font-size: 1rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.skill-category h4 i { color: var(--emerald); }

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tags span {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 14px;
  background: var(--gray-100);
  color: var(--gray-700);
  border-radius: 20px;
  transition: var(--transition);
}

.skill-tags span:hover {
  background: var(--emerald-light);
  color: var(--emerald);
}

/* === TESTIMONIALS === */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--emerald);
}

.testimonial-stars {
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: #f59e0b;
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* === FAQ / ACCORDION === */
.accordion-item {
  border: 1px solid var(--gray-200) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-button {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  padding: 20px 24px;
  background: var(--white) !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--emerald);
  background: var(--white) !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230f2137' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
}

.accordion-body {
  font-size: 0.95rem;
  color: var(--gray-500);
  padding: 0 24px 20px;
  line-height: 1.8;
}

/* === BLOG CARDS === */
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.blog-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--emerald);
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.blog-coming {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === CONTACT SECTION === */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-info-item i {
  width: 44px;
  height: 44px;
  background: var(--emerald-light);
  color: var(--emerald);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-item a,
.contact-info-item span {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
}

.contact-info-item a:hover { color: var(--emerald); }

.contact-availability {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--emerald);
}

.availability-dot {
  width: 10px;
  height: 10px;
  background: var(--emerald);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.form-control,
.form-select {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

/* === FOOTER === */
.footer {
  padding-top: 80px;
}

.footer-top {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  font-size: 1.5rem;
  color: var(--white) !important;
  margin-bottom: 12px;
}

.footer-tagline {
  color: var(--gray-300);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.footer-cta-text {
  color: var(--gray-300);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.footer-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-300);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--emerald);
}

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--white);
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
  .section-padding { padding: 70px 0; }
  .hero-section { padding-top: 100px; }
  .hero-stats { gap: 24px; }
  .about-content { padding-left: 0; margin-top: 20px; }
  .about-highlights { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 30px; }
  .timeline::before { left: 8px; }
  .timeline-marker { left: -26px; width: 12px; height: 12px; }
}

@media (max-width: 767px) {
  .section-padding { padding: 50px 0; }
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 20px; }
  .stat-number, .stat-suffix { font-size: 1.8rem; }
  .hero-ctas .btn { display: block; width: 100%; margin: 0 0 12px 0 !important; }
  .hero-badge { display: none; }
  .advantage-card { padding: 20px 14px; }
  .advantage-card p { font-size: 0.8rem; }
  .footer-top .row { gap: 24px; }
}

/* === SMOOTH SCROLL === */
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

/* === SELECTION === */
::selection {
  background: var(--emerald-light);
  color: var(--navy);
}

/* === ACCESSIBILITY === */
:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


/* === ACTIVE NAV STATE === */
.nav-link.active {
  color: var(--emerald) !important;
  font-weight: 600;
}

/* === NAVBAR TOGGLER === */
.navbar-toggler:focus {
  box-shadow: none;
}

/* === LOADING ANIMATION === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === PRINT STYLES === */
@media print {
  .header-fixed, .footer, .marquee-section { display: none; }
  .section-padding { padding: 30px 0; }
  body { color: #000; }
}
